From 37c2ba97e60735474bb59b3c0dc9bd786faf50a3 Mon Sep 17 00:00:00 2001 From: StackDoubleFlow Date: Wed, 4 Mar 2026 06:48:32 -0500 Subject: [PATCH 1/7] Do the refactor --- .gitattributes | 2 + Cargo.lock | 73 +- Cargo.toml | 7 +- crates/block_data_gen/Cargo.toml | 20 + crates/block_data_gen/src/main.rs | 962 + crates/blocks/src/block_entities.rs | 4 +- crates/blocks/src/blocks/mod.rs | 1346 +- crates/blocks/src/blocks/props.rs | 427 +- crates/blocks/src/generated.rs | 4566 + crates/blocks/src/items.rs | 419 +- crates/blocks/src/lib.rs | 181 +- crates/core/src/interaction.rs | 327 +- crates/core/src/plot/mod.rs | 8 +- crates/core/src/plot/worldedit/execute.rs | 23 +- crates/proc_macros/Cargo.toml | 6 +- crates/proc_macros/src/block_attribs.rs | 68 + crates/proc_macros/src/lib.rs | 81 +- crates/proc_macros/src/mc_data.rs | 108 + crates/redpiler/src/backend/direct/compile.rs | 2 +- crates/redpiler/src/backend/direct/mod.rs | 6 +- crates/redpiler/src/compile_graph.rs | 2 +- crates/redpiler/src/lib.rs | 8 +- crates/redpiler/src/passes/identify_nodes.rs | 22 +- crates/redpiler/src/passes/input_search.rs | 34 +- crates/redpiler/src/ril.rs | 6 - crates/redstone/src/comparator.rs | 30 +- crates/redstone/src/lib.rs | 169 +- crates/redstone/src/noteblock.rs | 2 +- crates/redstone/src/repeater.rs | 24 +- crates/redstone/src/wire/mod.rs | 10 +- crates/redstone/src/wire/turbo.rs | 8 +- mc_data/blocks.json | 267055 +++++++++++++++ mc_data/gen_info.yaml | 227 + mc_data/registries.json | 13873 + tests/common/mod.rs | 53 +- 35 files changed, 287540 insertions(+), 2619 deletions(-) create mode 100644 .gitattributes create mode 100644 crates/block_data_gen/Cargo.toml create mode 100644 crates/block_data_gen/src/main.rs create mode 100644 crates/blocks/src/generated.rs create mode 100644 crates/proc_macros/src/block_attribs.rs create mode 100644 crates/proc_macros/src/mc_data.rs create mode 100644 mc_data/blocks.json create mode 100644 mc_data/gen_info.yaml create mode 100644 mc_data/registries.json diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..cc1ae9a7 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +mc_data/blocks.json linguist-generated +mc_data/registries.json linguist-generated diff --git a/Cargo.lock b/Cargo.lock index 947cc020..acfdda1b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -291,6 +291,15 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" +[[package]] +name = "convert_case" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49" +dependencies = [ + "unicode-segmentation", +] + [[package]] name = "core-foundation" version = "0.9.4" @@ -687,9 +696,9 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.16.0" +version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" [[package]] name = "hashlink" @@ -991,12 +1000,14 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.11.4" +version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5" +checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" dependencies = [ "equivalent", - "hashbrown 0.16.0", + "hashbrown 0.16.1", + "serde", + "serde_core", ] [[package]] @@ -1148,6 +1159,19 @@ dependencies = [ "tracing-subscriber", ] +[[package]] +name = "mchprs_block_data_gen" +version = "0.4.1" +dependencies = [ + "convert_case", + "indexmap", + "proc-macro2", + "quote", + "serde", + "serde_json", + "serde_yaml_ng", +] + [[package]] name = "mchprs_blocks" version = "0.4.1" @@ -1215,7 +1239,11 @@ dependencies = [ name = "mchprs_proc_macros" version = "0.4.1" dependencies = [ + "nom", "quote", + "rustc-hash", + "serde", + "serde_json", "syn", ] @@ -1443,6 +1471,15 @@ dependencies = [ "libc", ] +[[package]] +name = "nom" +version = "8.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" +dependencies = [ + "memchr", +] + [[package]] name = "nu-ansi-term" version = "0.50.1" @@ -1996,6 +2033,7 @@ version = "1.0.145" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" dependencies = [ + "indexmap", "itoa", "memchr", "ryu", @@ -2024,6 +2062,19 @@ dependencies = [ "serde", ] +[[package]] +name = "serde_yaml_ng" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b4db627b98b36d4203a7b458cf3573730f2bb591b28871d916dfa9efabfd41f" +dependencies = [ + "indexmap", + "itoa", + "ryu", + "serde", + "unsafe-libyaml", +] + [[package]] name = "sha1" version = "0.10.6" @@ -2544,6 +2595,18 @@ version = "1.0.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d" +[[package]] +name = "unicode-segmentation" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" + +[[package]] +name = "unsafe-libyaml" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" + [[package]] name = "untrusted" version = "0.9.0" diff --git a/Cargo.toml b/Cargo.toml index 1527c2ff..90dd4759 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace] -members = ["crates/proc_macros", "crates/redpiler_graph", "crates/world_exporter"] +members = ["crates/block_data_gen","crates/proc_macros", "crates/redpiler_graph", "crates/world_exporter"] [package] name = "mchprs" @@ -85,3 +85,8 @@ tracing-appender = "0.2" paste = "1.0" chrono = "0.4" clap = { version = "4.5", features = ["derive"] } +nom = "8.0" +serde_yaml_ng = "0.10" +proc-macro2 = "1.0" +convert_case = "0.11" +indexmap = { version = "2.13", features = ["serde"] } diff --git a/crates/block_data_gen/Cargo.toml b/crates/block_data_gen/Cargo.toml new file mode 100644 index 00000000..dce4c991 --- /dev/null +++ b/crates/block_data_gen/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "mchprs_block_data_gen" +authors.workspace = true +description.workspace = true +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +readme.workspace = true +version.workspace = true +license.workspace = true +repository.workspace = true + +[dependencies] +quote.workspace = true +serde = { workspace = true, features = ["derive"] } +serde_yaml_ng = { workspace = true } +serde_json = { workspace = true, features = ["preserve_order"] } +proc-macro2 = { workspace = true } +convert_case = { workspace = true } +indexmap = { workspace = true } diff --git a/crates/block_data_gen/src/main.rs b/crates/block_data_gen/src/main.rs new file mode 100644 index 00000000..082b6a15 --- /dev/null +++ b/crates/block_data_gen/src/main.rs @@ -0,0 +1,962 @@ +use convert_case::{Case, Casing}; +use indexmap::IndexMap; +use proc_macro2::{Ident, Literal, Span, TokenStream}; +use quote::{quote, ToTokens}; +use serde::Deserialize; +use std::{collections::HashMap, fs, path::PathBuf, process::Command}; + +#[derive(Deserialize)] +struct BlockState { + properties: Option>, + id: u32, + default: Option, +} + +#[derive(Deserialize)] +struct BlockJson { + properties: Option>>, + states: Vec, +} + +#[derive(Deserialize)] +struct ItemRegistry { + entries: HashMap, +} + +#[derive(Deserialize)] +struct ItemRegistryEntry { + protocol_id: u32, +} + +#[derive(Deserialize)] +struct RegistriesJson { + #[serde(rename = "minecraft:item")] + items: ItemRegistry, +} + +#[derive(Deserialize)] +struct InfoYaml { + blocks: IndexMap, + items: IndexMap, + prop_types: HashMap>, +} + +#[derive(Default, Debug)] +struct BlockAttrs { + solid: bool, + cube: bool, + transparent: bool, + maybe_solid: bool, + maybe_cube: bool, + maybe_transparent: bool, + prop_struct: bool, + item: bool, + simple_item: bool, + complex_transform: bool, + wool: bool, + wood: bool, + stone: bool, + glass: bool, +} + +#[derive(Debug)] +struct Prop { + name: String, + ty: String, + u8_offset: u8, + default: String, + num_values: usize, +} + +#[derive(Debug)] +struct ProcessedBlock { + name: String, + pascal_name: String, + props: Vec, + attrs: BlockAttrs, + base_id: u32, +} + +#[derive(Debug)] +struct ItemAttrs { + max_stack: u32, + block: bool, + simple_placement: bool, +} + +#[derive(Debug)] +struct ProcessedItem { + name: String, + pascal_name: String, + id: u32, + attrs: ItemAttrs, +} + +impl ProcessedItem { + fn new(name: &str, id: u32, attrs: ItemAttrs) -> Self { + let (_, unnamespaced) = name.split_once(':').unwrap(); + Self { + name: name.to_owned(), + pascal_name: unnamespaced.to_case(Case::Pascal), + id, + attrs, + } + } +} + +impl ProcessedBlock { + fn match_ignore(&self) -> TokenStream { + let ident = &ident(&self.pascal_name); + let props = if self.attrs.prop_struct { + Some(quote! { (_) }) + } else if !self.props.is_empty() { + Some(quote! { { .. } }) + } else { + None + }; + quote! { Block::#ident #props } + } + + fn match_props(&self) -> TokenStream { + let props = self.props.iter().map(|prop| { + let name = ident(&prop.name); + quote! { #name } + }); + let name_ident = &ident(&self.pascal_name); + let props = if self.attrs.prop_struct { + Some(quote! { (#name_ident { #( #props ),* }) }) + } else if !self.props.is_empty() { + Some(quote! { { #( #props ),* } }) + } else { + None + }; + quote! { Block::#name_ident #props } + } +} + +fn process_block( + name: String, + attrs_str: String, + blocks_json: &HashMap, + prop_types: &Vec<(String, Vec)>, +) -> ProcessedBlock { + let json = &blocks_json[&name]; + let default = json + .states + .iter() + .find(|state| state.default == Some(true)) + .unwrap(); + let mut props = Vec::new(); + for (prop_name, prop_values) in json.properties.iter().flatten() { + let default_props = default.properties.as_ref().unwrap(); + let prop_type = prop_types + .iter() + .find_map(|(name, values)| (values == prop_values).then(|| (name, values.len()))); + match prop_type { + Some((prop_type, num_values)) => { + props.push(Prop { + name: prop_name.clone(), + ty: prop_type.clone(), + default: default_props[prop_name].clone(), + num_values, + u8_offset: if prop_values[0] == "1" { 1 } else { 0 }, + }); + } + None => panic!( + "could not find prop type with values: {:?}, for block: {}", + prop_values, name + ), + }; + } + let mut attrs = BlockAttrs::default(); + for attr in attrs_str.split(',').filter(|s| !s.is_empty()) { + match attr { + "solid" => attrs.solid = true, + "cube" => attrs.cube = true, + "transparent" => attrs.transparent = true, + "maybe_solid" => attrs.maybe_solid = true, + "maybe_cube" => attrs.maybe_cube = true, + "maybe_transparent" => attrs.maybe_transparent = true, + "prop_struct" => attrs.prop_struct = true, + "simple_item" => attrs.simple_item = true, + "item" => attrs.item = true, + "complex_transform" => attrs.complex_transform = true, + "wool" => attrs.wool = true, + "wood" => attrs.wood = true, + "stone" => attrs.stone = true, + "glass" => attrs.glass = true, + _ => panic!("unknown block attribute: {}", attr), + } + } + + let (_, unnamespaced) = &name.split_once(':').unwrap(); + ProcessedBlock { + pascal_name: unnamespaced.to_case(Case::Pascal), + name, + props, + attrs, + base_id: json.states[0].id, + } +} + +fn ident(str: &str) -> Ident { + let str = match str { + "type" => "ty", + _ => str, + }; + Ident::new(str, Span::call_site()) +} + +fn prop_literal(ty: &str, val: &str) -> TokenStream { + match ty { + "u8" => { + let val = val.parse().unwrap(); + let lit = Literal::u8_unsuffixed(val); + quote! { #lit } + } + "bool" => { + // bools are idents for some reason + let ident = ident(val); + quote! { #ident } + } + _ => { + let ty_ident = ident(ty); + let variant = val.to_case(Case::Pascal); + let variant = ident(&variant); + quote! { #ty_ident::#variant } + } + } +} + +fn generate_block_enum(blocks: &[ProcessedBlock]) -> TokenStream { + let block_variants = blocks.iter().map(|block| { + let name = &block.pascal_name; + let name = Ident::new(&name, Span::call_site()); + let props = if block.attrs.prop_struct { + Some(quote! { (#name) }) + } else if !block.props.is_empty() { + let props = block.props.iter().map(|prop| { + let name = ident(&prop.name); + let ty = ident(&prop.ty); + quote! { #name: #ty } + }); + Some(quote! { { #( #props, )* } }) + } else { + None + }; + + quote! { + #name #props + } + }); + quote! { + #[derive(Clone, Copy, Debug, PartialEq, Eq)] + pub enum Block { + #(#block_variants,)* + } + } +} + +fn generate_get_name(blocks: &[ProcessedBlock]) -> TokenStream { + let match_arms = blocks.iter().map(|block| { + let name = &block.name; + let pat = block.match_ignore(); + quote! { + #pat => #name + } + }); + + quote! { + pub fn get_name(self) -> &'static str { + match self { + #( #match_arms ),* + } + } + } +} + +fn generate_is_attr( + blocks: &[ProcessedBlock], + fn_name: &str, + attr: fn(&ProcessedBlock) -> bool, + dynamic_attr: Option bool>, +) -> TokenStream { + let dynamic_fn = ident(&(fn_name.to_owned() + "_dynamic")); + let match_arms = blocks + .iter() + .map(|block| { + if attr(block) { + let pat = block.match_ignore(); + Some(if dynamic_attr.map_or(false, |f| f(block)) { + quote! { + #pat => #dynamic_fn(self), + } + } else { + quote! { + #pat => true, + } + }) + } else { + None + } + }) + .flatten(); + let fn_ident = ident(fn_name); + quote! { + pub fn #fn_ident(self) -> bool { + match self { + #( #match_arms )* + _ => false, + } + } + } +} + +fn generate_from_name(blocks: &[ProcessedBlock]) -> TokenStream { + let match_arms = blocks.iter().map(|block| { + // dbg!(block); + let name = &block.name; + let pascal_name = ident(&block.pascal_name); + let init = block.props.iter().map(|prop| { + let prop_name = ident(&prop.name); + let literal = prop_literal(&prop.ty, &prop.default); + quote! { + #prop_name: #literal, + } + }); + + let props = if block.attrs.prop_struct { + Some(quote! { + (#pascal_name { #( #init )* }) + }) + } else if !block.props.is_empty() { + Some(quote! { + { #( #init )* } + }) + } else { + None + }; + + quote! { + #name => Block::#pascal_name #props, + } + }); + + quote! { + pub fn from_name(name: &str) -> Option { + Some(match name { + #( #match_arms )* + _ => return None, + }) + } + } +} + +fn generate_set_props(blocks: &[ProcessedBlock]) -> TokenStream { + let match_arms = blocks.iter().map(|block| { + let pat = block.match_props(); + let statements = block.props.iter().map(|prop| { + let name = &prop.name; + let ty_ident = ident(&prop.ty); + let name_ident = ident(&prop.name); + quote! { + <#ty_ident as BlockProperty>::decode(#name_ident, &props, #name); + } + }); + quote! { + #pat => { #( #statements )* } + } + }); + quote! { + pub fn set_properties(&mut self, props: HashMap<&str, &str>) { + match self { + #( #match_arms )* + } + } + } +} + +fn generate_gen_props(blocks: &[ProcessedBlock]) -> TokenStream { + let match_arms = blocks.iter().map(|block| { + let pat = block.match_props(); + let statements = block.props.iter().map(|prop| { + let name = &prop.name; + let ty_ident = ident(&prop.ty); + let name_ident = ident(&prop.name); + quote! { + <#ty_ident as BlockProperty>::encode(*#name_ident, &mut props, #name); + } + }); + quote! { + #pat => { #( #statements )* } + } + }); + quote! { + pub fn properties(&self) -> HashMap<&'static str, String> { + let mut props = HashMap::new(); + match self { + #( #match_arms )* + } + props + } + } +} + +fn generate_rotate(blocks: &[ProcessedBlock]) -> TokenStream { + let match_arms = blocks.iter().map(|block| { + let pat = block.match_props(); + let statements = block.props.iter().map(|prop| { + let ty_ident = ident(&prop.ty); + let name_ident = ident(&prop.name); + quote! { + <#ty_ident as BlockTransform>::rotate(#name_ident, amt); + } + }); + if block.attrs.complex_transform { + quote! { + #pat => self.complex_rotate(amt), + } + } else { + quote! { + #pat => { #( #statements )* } + } + } + }); + quote! { + pub fn rotate(&mut self, amt: RotateAmt) { + match self { + #( #match_arms )* + } + } + } +} + +fn generate_flip(blocks: &[ProcessedBlock]) -> TokenStream { + let match_arms = blocks.iter().map(|block| { + let pat = block.match_props(); + let statements = block.props.iter().map(|prop| { + let ty_ident = ident(&prop.ty); + let name_ident = ident(&prop.name); + quote! { + <#ty_ident as BlockTransform>::flip(#name_ident, dir); + } + }); + if block.attrs.complex_transform { + quote! { + #pat => self.complex_flip(dir), + } + } else { + quote! { + #pat => { #( #statements )* } + } + } + }); + quote! { + pub fn flip(&mut self, dir: FlipDirection) { + match self { + #( #match_arms )* + } + } + } +} + +fn get_prop_id(name: &str, ty: &str, u8_offset: u8) -> TokenStream { + let offset_lit = Literal::u8_unsuffixed(u8_offset); + let name_ident = ident(name); + match ty { + "bool" => quote! { !#name_ident as u32 }, + "u8" => quote! { #name_ident as u32 - #offset_lit }, + _ => quote! { #name_ident.get_id() }, + } +} + +fn from_prop_id(ty: &str, id: TokenStream, u8_offset: u8) -> TokenStream { + let offset_lit = Literal::u8_unsuffixed(u8_offset); + let ty_ident = ident(ty); + match ty { + "bool" => quote! { (#id & 1) == 0 }, + "u8" => quote! { #id as u8 + #offset_lit }, + _ => quote! { #ty_ident::from_id(#id) }, + } +} + +fn generate_get_id(blocks: &[ProcessedBlock]) -> TokenStream { + let match_arms = blocks.iter().map(|block| { + let mut ts = TokenStream::new(); + ts.extend(Literal::u32_unsuffixed(block.base_id).into_token_stream()); + for (idx, prop) in block.props.iter().enumerate() { + let mult = if idx + 1 < block.props.len() { + let factor = block.props[idx + 1..] + .iter() + .fold(1, |a, b| a * b.num_values); + let lit = Literal::usize_unsuffixed(factor); + Some(quote! { * #lit }) + } else { + None + }; + let prop_id = get_prop_id(&prop.name, &prop.ty, prop.u8_offset); + ts.extend(quote! { + (#prop_id) #mult }); + } + let pat = block.match_props(); + quote! { + #pat => #ts, + } + }); + quote! { + pub fn get_id(self) -> u32 { + match self { + #( #match_arms )* + } + } + } +} + +fn generate_from_id(blocks: &[ProcessedBlock]) -> TokenStream { + let match_arms = blocks.iter().map(|block| { + let name_ident = ident(&block.pascal_name); + let num_states = block.props.iter().fold(1, |a, b| a * b.num_values); + let props = block.props.iter().enumerate().map(|(idx, prop)| { + let prop_name_ident = ident(&prop.name); + let div = if idx + 1 < block.props.len() { + let div = block.props[idx + 1..] + .iter() + .fold(1, |a, b| a * b.num_values); + let lit = Literal::usize_unsuffixed(div); + Some(quote! { / #lit }) + } else { + None + }; + let modulo = Literal::usize_unsuffixed(prop.num_values); + let val = from_prop_id( + &prop.ty, + quote! { + ((id #div) % #modulo) + }, + prop.u8_offset, + ); + quote! { #prop_name_ident: #val, } + }); + let props = if block.attrs.prop_struct { + Some(quote! { (#name_ident { #( #props )* })}) + } else if !block.props.is_empty() { + Some(quote! { { #( #props )* } }) + } else { + None + }; + + let min = Literal::u32_unsuffixed(block.base_id); + let max = Literal::u32_unsuffixed(block.base_id + num_states as u32); + quote! { + #min..#max => { + id -= #min; + Block::#name_ident #props + }, + } + }); + quote! { + pub fn from_id(mut id: u32) -> Block { + match id { + #( #match_arms )* + _ => Block::Air, + } + } + } +} + +fn generate_prop_from_str_impls(prop_types: &Vec<(String, Vec)>) -> TokenStream { + let impls = prop_types + .iter() + .filter(|(name, _)| name != "u8" && name != "bool") + .map(|(name, values)| { + let prop_ident = ident(&name.to_case(Case::Pascal)); + let match_arms = values.iter().map(|value| { + let value_ident = ident(&value.to_case(Case::Pascal)); + quote! { #value => #prop_ident::#value_ident, } + }); + quote! { + impl FromStr for #prop_ident { + type Err = (); + + fn from_str(s: &str) -> Result { + Ok(match s { + #( #match_arms )* + _ => return Err(()), + }) + } + } + } + }); + quote! { #( #impls )* } +} + +fn generate_prop_display_impls(prop_types: &Vec<(String, Vec)>) -> TokenStream { + let impls = prop_types + .iter() + .filter(|(name, _)| name != "u8" && name != "bool") + .map(|(name, values)| { + let prop_ident = ident(&name.to_case(Case::Pascal)); + let match_arms = values.iter().map(|value| { + let value_ident = ident(&value.to_case(Case::Pascal)); + quote! { #prop_ident::#value_ident => #value, } + }); + quote! { + impl std::fmt::Display for #prop_ident { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + f.write_str(match self { + #( #match_arms )* + }) + } + } + } + }); + quote! { #( #impls )* } +} + +fn generate_prop_get_from_id(prop_types: &Vec<(String, Vec)>) -> TokenStream { + let impls = prop_types + .iter() + .filter(|(name, _)| name != "u8" && name != "bool") + .map(|(name, values)| { + let prop_ident = ident(&name.to_case(Case::Pascal)); + let match_arms = values.iter().enumerate().map(|(idx, value)| { + let lit = Literal::usize_unsuffixed(idx); + let value_ident = ident(&value.to_case(Case::Pascal)); + quote! { #lit => #prop_ident::#value_ident, } + }); + quote! { + impl #prop_ident { + fn get_id(self) -> u32 { + self as u32 + } + + fn from_id(id: u32) -> Self { + match id { + #( #match_arms )* + id => unreachable!(), + } + } + } + } + }); + + quote! { #( #impls )* } +} + +fn generate_item_enum(items: &[ProcessedItem]) -> TokenStream { + let variants = items.iter().map(|item| { + let name_ident = ident(&item.pascal_name); + quote! { #name_ident, } + }); + quote! { + #[derive(Clone, Copy, Debug, PartialEq, Eq)] + pub enum Item { + #( #variants )* + Unknown(u32) + } + } +} + +fn generate_item_get_id(items: &[ProcessedItem]) -> TokenStream { + let match_arms = items.iter().map(|item| { + let name_ident = ident(&item.pascal_name); + let lit = Literal::u32_unsuffixed(item.id); + quote! { + Item::#name_ident => #lit, + } + }); + quote! { + pub fn get_id(self) -> u32 { + match self { + #( #match_arms )* + Item::Unknown(id) => id, + } + } + } +} + +fn generate_item_from_id(items: &[ProcessedItem]) -> TokenStream { + let match_arms = items.iter().map(|item| { + let name_ident = ident(&item.pascal_name); + let lit = Literal::u32_unsuffixed(item.id); + quote! { + #lit => Item::#name_ident, + } + }); + quote! { + pub fn from_id(id: u32) -> Item { + match id { + #( #match_arms )* + _ => Item::Unknown(id), + } + } + } +} + +fn generate_item_from_name(items: &[ProcessedItem]) -> TokenStream { + let match_arms = items.iter().map(|item| { + let name = &item.name; + let name_ident = ident(&item.pascal_name); + quote! { + #name => Item::#name_ident, + } + }); + quote! { + pub fn from_name(name: &str) -> Option { + Some(match name { + #( #match_arms )* + _ => return None, + }) + } + } +} + +fn generate_item_get_name(items: &[ProcessedItem]) -> TokenStream { + let match_arms = items.iter().map(|item| { + let name = &item.name; + let name_ident = ident(&item.pascal_name); + quote! { + Item::#name_ident => #name, + } + }); + quote! { + pub fn get_name(self) -> &'static str { + match self { + #( #match_arms )* + Item::Unknown(_) => "minecraft:redstone", + } + } + } +} + +fn generate_item_simple_placements(items: &[ProcessedItem]) -> TokenStream { + let match_arms = items + .iter() + .filter(|item| item.attrs.simple_placement) + .map(|item| { + let name_ident = ident(&item.pascal_name); + quote! { + Item::#name_ident => Some(Block::#name_ident), + } + }); + quote! { + pub fn get_simple_placement(self) -> Option { + match self { + #( #match_arms )* + _ => None, + } + } + } +} + +fn generate_item_is_block(items: &[ProcessedItem]) -> TokenStream { + let match_arms = items.iter().map(|item| { + let name_ident = ident(&item.pascal_name); + let is_block = ident(&item.attrs.block.to_string()); + quote! { + Item::#name_ident => #is_block, + } + }); + quote! { + pub fn is_block(self) -> bool { + match self { + #( #match_arms )* + Item::Unknown(_) => false, + } + } + } +} + +fn generate_item_max_stack_size(items: &[ProcessedItem]) -> TokenStream { + let match_arms = items.iter().map(|item| { + let name_ident = ident(&item.pascal_name); + let lit = Literal::u32_unsuffixed(item.attrs.max_stack); + quote! { + Item::#name_ident => #lit, + } + }); + quote! { + pub fn max_stack_size(self) -> u32 { + match self { + #( #match_arms )* + Item::Unknown(_) => 64, + } + } + } +} + +fn generate_module( + blocks: &[ProcessedBlock], + prop_types: &Vec<(String, Vec)>, + items: &[ProcessedItem], +) -> TokenStream { + let block_enum = generate_block_enum(blocks); + + let get_name = generate_get_name(blocks); + let from_name = generate_from_name(blocks); + let is_solid = generate_is_attr( + blocks, + "is_solid", + |block| block.attrs.solid, + Some(|block| block.attrs.maybe_solid), + ); + let is_cube = generate_is_attr( + blocks, + "is_cube", + |block| block.attrs.cube, + Some(|block| block.attrs.maybe_cube), + ); + let is_transparent = generate_is_attr( + blocks, + "is_transparent", + |block| block.attrs.transparent, + Some(|block| block.attrs.maybe_transparent), + ); + let set_props = generate_set_props(blocks); + let gen_props = generate_gen_props(blocks); + let rotate = generate_rotate(blocks); + let flip = generate_flip(blocks); + let get_id = generate_get_id(blocks); + let from_id = generate_from_id(blocks); + let is_wood = generate_is_attr(blocks, "is_wood", |block| block.attrs.wood, None); + let is_wool = generate_is_attr(blocks, "is_wool", |block| block.attrs.wool, None); + let is_stone = generate_is_attr(blocks, "is_stone", |block| block.attrs.stone, None); + let is_glass = generate_is_attr(blocks, "is_glass", |block| block.attrs.glass, None); + + let prop_from_str = generate_prop_from_str_impls(prop_types); + let prop_display = generate_prop_display_impls(prop_types); + let prop_get_from_id = generate_prop_get_from_id(prop_types); + + let item_enum = generate_item_enum(items); + let item_get_id = generate_item_get_id(items); + let item_from_id = generate_item_from_id(items); + let item_get_name = generate_item_get_name(items); + let item_from_name = generate_item_from_name(items); + let item_simple_placements = generate_item_simple_placements(items); + let item_is_block = generate_item_is_block(items); + let item_max_stack_size = generate_item_max_stack_size(items); + + quote! { + #![allow(unused_parens, unused_assignments, non_contiguous_range_endpoints, unused_variables)] + + use crate::{*, blocks::*}; + + #block_enum + + impl Block { + #get_name + #from_name + #is_solid + #is_cube + #is_transparent + #set_props + #gen_props + #rotate + #flip + #get_id + #from_id + #is_wool + #is_wood + #is_stone + #is_glass + } + + #prop_from_str + #prop_display + #prop_get_from_id + + #item_enum + + impl Item { + #item_get_id + #item_from_id + #item_get_name + #item_from_name + #item_simple_placements + #item_is_block + #item_max_stack_size + } + } +} + +fn main() { + let mc_data_path = PathBuf::from("../../mc_data"); + let output_path = PathBuf::from("../blocks/src/generated.rs"); + + let yaml: InfoYaml = + serde_yaml_ng::from_str(&fs::read_to_string(mc_data_path.join("gen_info.yaml")).unwrap()) + .unwrap(); + + let blocks_json: HashMap = + serde_json::from_str(&fs::read_to_string(mc_data_path.join("blocks.json")).unwrap()) + .unwrap(); + let registries_json: RegistriesJson = + serde_json::from_str(&fs::read_to_string(mc_data_path.join("registries.json")).unwrap()) + .unwrap(); + + let mut prop_types = yaml.prop_types.into_iter().collect::>(); + prop_types.push(( + "bool".to_owned(), + vec!["true".to_owned(), "false".to_owned()], + )); + prop_types.push(("u8".to_owned(), (0..25).map(|n| n.to_string()).collect())); + prop_types.push(("u8".to_owned(), (0..16).map(|n| n.to_string()).collect())); + prop_types.push(("u8".to_owned(), (0..9).map(|n| n.to_string()).collect())); + prop_types.push(("u8".to_owned(), (0..7).map(|n| n.to_string()).collect())); + prop_types.push(("u8".to_owned(), (1..=4).map(|n| n.to_string()).collect())); + prop_types.push(("u8".to_owned(), (1..=3).map(|n| n.to_string()).collect())); + + let processed_blocks = yaml + .blocks + .into_iter() + .map(|(name, attrs)| process_block(name, attrs, &blocks_json, &prop_types)) + .collect::>(); + // dbg!(&processed_blocks); + + let mut items = Vec::new(); + for block in &processed_blocks { + if block.attrs.simple_item | block.attrs.item { + let attrs = ItemAttrs { + block: true, + max_stack: 64, + simple_placement: block.attrs.simple_item, + }; + let id = registries_json + .items + .entries + .get(&block.name) + .expect(&block.name) + .protocol_id; + items.push(ProcessedItem::new(&block.name, id, attrs)); + } + } + + for (name, attrs_str) in &yaml.items { + let mut attrs = ItemAttrs { + block: false, + max_stack: 64, + simple_placement: false, + }; + attrs_str + .split(',') + .filter(|s| !s.is_empty()) + .for_each(|attr_str| { + if let Some(num_str) = attr_str.strip_prefix("max_stack:") { + attrs.max_stack = num_str.parse().unwrap(); + } else if attr_str == "block" { + attrs.block = true; + } + }); + items.push(ProcessedItem::new( + name, + registries_json.items.entries[name].protocol_id, + attrs, + )); + } + + let gen_src = generate_module(&processed_blocks, &prop_types, &items).to_string(); + fs::write(&output_path, gen_src).unwrap(); + Command::new("rustfmt") + .arg(&output_path) + .spawn() + .expect("failed to run rustfmt"); +} diff --git a/crates/blocks/src/block_entities.rs b/crates/blocks/src/block_entities.rs index b56e5b9f..56ca071d 100644 --- a/crates/blocks/src/block_entities.rs +++ b/crates/blocks/src/block_entities.rs @@ -110,7 +110,7 @@ impl BlockEntity { .or_else(|| item_compound.get("id"))?, Value::String ); - let item_type = Item::from_name(namespaced_name.split(':').next_back()?); + let item_type = Item::from_name(namespaced_name); let mut blob = nbt::Blob::new(); for (k, v) in item_compound { @@ -135,7 +135,7 @@ impl BlockEntity { inventory.push(InventoryEntry { slot, count, - id: item_type.unwrap_or(Item::Redstone {}).get_id(), + id: item_type.unwrap_or(Item::Redstone).get_id(), nbt: tag, }); diff --git a/crates/blocks/src/blocks/mod.rs b/crates/blocks/src/blocks/mod.rs index 62a4c19d..1e9aef05 100644 --- a/crates/blocks/src/blocks/mod.rs +++ b/crates/blocks/src/blocks/mod.rs @@ -1,10 +1,9 @@ mod props; -use crate::{BlockColorVariant, BlockDirection, BlockFacing, BlockProperty, SignType}; +pub use crate::generated::Block; +use crate::{BlockDirection, BlockFacing, BlockProperty}; use mchprs_proc_macros::BlockTransform; -use mchprs_utils::map; pub use props::*; -use std::collections::HashMap; #[derive(Clone, Copy, Debug)] pub enum FlipDirection { @@ -19,7 +18,7 @@ pub enum RotateAmt { Rotate270, } -trait BlockTransform { +pub(crate) trait BlockTransform { fn rotate(&mut self, amt: crate::blocks::RotateAmt) { match amt { // ez @@ -54,14 +53,12 @@ noop_block_transform!( u8, u32, bool, - BlockColorVariant, BlockFacing, TrapdoorHalf, - SignType, - ButtonFace, LeverFace, ComparatorMode, Instrument, + SlabType, ); impl BlockTransform for BlockDirection { @@ -91,18 +88,46 @@ impl BlockTransform for BlockDirection { } impl Block { - pub fn has_block_entity(self) -> bool { + pub fn is_sign(self) -> bool { + matches!( + self, + Block::OakSign { .. } + | Block::SpruceSign { .. } + | Block::BirchSign { .. } + | Block::AcaciaSign { .. } + | Block::JungleSign { .. } + | Block::DarkOakSign { .. } + | Block::CrimsonSign { .. } + | Block::WarpedSign { .. } + ) + } + + pub fn is_wall_sign(self) -> bool { matches!( self, - Block::RedstoneComparator { .. } - | Block::Barrel { .. } - | Block::Furnace { .. } - | Block::Hopper { .. } - | Block::Sign { .. } - | Block::WallSign { .. } + Block::OakWallSign { .. } + | Block::SpruceWallSign { .. } + | Block::BirchWallSign { .. } + | Block::AcaciaWallSign { .. } + | Block::JungleWallSign { .. } + | Block::DarkOakWallSign { .. } + | Block::CrimsonWallSign { .. } + | Block::WarpedWallSign { .. } ) } + pub fn has_block_entity(self) -> bool { + self.is_sign() + || self.is_wall_sign() + || matches!( + self, + Block::Comparator { .. } + | Block::Barrel { .. } + | Block::Furnace { .. } + | Block::Hopper { .. } + ) + } + pub fn can_place_block_in(self) -> bool { matches!(self.get_id(), 0 // Air @@ -119,21 +144,52 @@ impl Block { ) } - pub fn properties(&self) -> HashMap<&'static str, String> { - if matches!(self, Block::SmoothStoneSlab {} | Block::QuartzSlab {}) { - return map! { - "type" => "top".to_string() - }; + pub(crate) fn complex_rotate(&mut self, amt: RotateAmt) { + match self { + Block::RedstoneWire(wire) => wire.rotate(amt), + _ => unreachable!(), + } + } + + pub(crate) fn complex_flip(&mut self, dir: FlipDirection) { + match self { + Block::RedstoneWire(wire) => wire.flip(dir), + _ => unreachable!(), } - self.gen_properties() + } + + pub fn get_sign_rotation(self) -> Option { + Some(match self { + Block::OakSign { rotation, .. } + | Block::SpruceSign { rotation, .. } + | Block::BirchSign { rotation, .. } + | Block::AcaciaSign { rotation, .. } + | Block::JungleSign { rotation, .. } + | Block::DarkOakSign { rotation, .. } + | Block::CrimsonSign { rotation, .. } + | Block::WarpedSign { rotation, .. } => rotation, + _ => return None + }) + } + + pub fn get_wall_sign_facing(self) -> Option { + Some(match self { + Block::OakWallSign { facing, .. } + | Block::SpruceWallSign { facing, .. } + | Block::BirchWallSign { facing, .. } + | Block::AcaciaWallSign { facing, .. } + | Block::JungleWallSign { facing, .. } + | Block::DarkOakWallSign { facing, .. } + | Block::CrimsonWallSign { facing, .. } + | Block::WarpedWallSign { facing, .. } => facing, + _ => return None + }) } } #[test] fn repeater_id_test() { - let original = Block::RedstoneRepeater { - repeater: RedstoneRepeater::new(3, BlockDirection::West, true, false), - }; + let original = Block::Repeater(Repeater::new(3, BlockDirection::West, true, false)); let id = original.get_id(); assert_eq!(id, 4141); let new = Block::from_id(id); @@ -142,1247 +198,13 @@ fn repeater_id_test() { #[test] fn comparator_id_test() { - let original = Block::RedstoneComparator { - comparator: RedstoneComparator::new(BlockDirection::West, ComparatorMode::Subtract, false), - }; + let original = Block::Comparator(Comparator::new( + BlockDirection::West, + ComparatorMode::Subtract, + false, + )); let id = original.get_id(); assert_eq!(id, 6895); let new = Block::from_id(id); assert_eq!(new, original); } - -macro_rules! blocks { - ( - $( - $name:ident { - props: { - $( - $prop_name:ident : $prop_type:ident - ),* - }, - get_id: $get_id:expr, - $( from_id_offset: $get_id_offset:literal, )? - from_id($id_name:ident): $from_id_pat:pat => { - $( - $from_id_pkey:ident: $from_id_pval:expr - ),* - }, - from_names($name_name:ident): { - $( - $from_name_pat:pat => { - $( - $from_name_pkey:ident: $from_name_pval:expr - ),* - } - ),* - }, - get_name: $get_name:expr, - $( solid: $solid:literal, )? - $( transparent: $transparent:literal, )? - $( cube: $cube:literal, )? - } - ),* - ) => { - #[derive(Clone, Copy, Debug, PartialEq, Eq)] - pub enum Block { - $( - $name { - $( - $prop_name: $prop_type, - )* - } - ),* - } - - #[allow(clippy::redundant_field_names)] - impl Block { - pub fn is_solid(self) -> bool { - match self { - $( - $( Block::$name { .. } => $solid, )? - )* - _ => false - } - } - - pub fn is_transparent(self) -> bool { - match self { - $( - $( Block::$name { .. } => $transparent, )? - )* - _ => false - } - } - - pub fn is_cube(self) -> bool { - match self { - $( - $( Block::$name { .. } => $cube, )? - )* - _ => false - } - } - - pub fn get_id(self) -> u32 { - match self { - $( - Block::$name { - $( - $prop_name, - )* - } => $get_id, - )* - } - } - - pub fn from_id(mut id: u32) -> Block { - match id { - $( - $from_id_pat => { - $( id -= $get_id_offset; )? - let $id_name = id; - Block::$name { - $( - $from_id_pkey: $from_id_pval - ),* - } - }, - )* - } - } - - pub fn from_name(name: &str) -> Option { - match name { - $( - $( - $from_name_pat => { - let $name_name = name; - Some(Block::$name { - $( - $from_name_pkey: $from_name_pval - ),* - }) - }, - )* - )* - _ => None, - } - } - - // Not all props will be part of the name - #[allow(unused_variables)] - pub fn get_name(self) -> &'static str { - match self { - $( - Block::$name { - $( - $prop_name, - )* - } => $get_name, - )* - } - } - - pub fn set_properties(&mut self, props: HashMap<&str, &str>) { - match self { - $( - Block::$name { - $( - $prop_name, - )* - } => { - $( - <$prop_type as BlockProperty>::decode($prop_name, &props, stringify!($prop_name)); - )* - }, - )* - } - } - - pub fn gen_properties(&self) -> HashMap<&'static str, String> { - let mut props = HashMap::new(); - match self { - $( - Block::$name { - $( - $prop_name, - )* - } => { - $( - <$prop_type as BlockProperty>::encode(*$prop_name, &mut props, stringify!($prop_name)); - )* - }, - )* - } - props - } - - pub fn rotate(&mut self, amt: RotateAmt) { - match self { - $( - Block::$name { - $( - $prop_name, - )* - } => { - $( - <$prop_type as BlockTransform>::rotate($prop_name, amt); - )* - }, - )* - } - } - - pub fn flip(&mut self, dir: FlipDirection) { - match self { - $( - Block::$name { - $( - $prop_name, - )* - } => { - $( - <$prop_type as BlockTransform>::flip($prop_name, dir); - )* - }, - )* - } - } - } - } -} - -blocks! { - Air { - props: {}, - get_id: 0, - from_id(_id): 0 => {}, - from_names(_name): { - "air" => {} - }, - get_name: "air", - }, - Stone { - props: {}, - get_id: 1, - from_id(_id): 1 => {}, - from_names(_name): { - "stone" => {} - }, - get_name: "stone", - solid: true, - cube: true, - }, - Glass { - props: {}, - get_id: 519, - from_id(_id): 519 => {}, - from_names(_name): { - "glass" => {} - }, - get_name: "glass", - transparent: true, - cube: true, - }, - Glowstone { - props: {}, - get_id: 5863, - from_id(_id): 5863 => {}, - from_names(_name): { - "glowstone" => {} - }, - get_name: "glowstone", - transparent: true, - cube: true, - }, - RedstoneWire { - props: { - wire: RedstoneWire - }, - get_id: { - wire.east.get_id() * 432 - + wire.north.get_id() * 144 - + wire.power as u32 * 9 - + wire.south.get_id() * 3 - + wire.west.get_id() - + 2978 - }, - from_id_offset: 2978, - from_id(id): 2978..=4273 => { - wire: RedstoneWire::new( - RedstoneWireSide::from_id(id % 432 / 144), - RedstoneWireSide::from_id(id % 9 / 3), - RedstoneWireSide::from_id(id / 432), - RedstoneWireSide::from_id(id % 3), - (id % 144 / 9) as u8, - ) - }, - from_names(_name): { - "redstone_wire" => { - wire: Default::default() - } - }, - get_name: "redstone_wire", - }, - WallSign { - props: { - sign_type: SignType, - facing: BlockDirection - }, - get_id: (sign_type.0 << 3) + (facing.get_id() << 1) + match sign_type.0 { - 0..=5 => 4763, - 6..=7 => 19341 - (6 << 3), - _ => unreachable!(), - }, - from_id_offset: 0, - from_id(id): 4763..=4817 | 19341..=19355 => { - sign_type: SignType(match id { - 4763..=4817 => (id - 4763) >> 3, - 19341..=19355 => ((id - 19341) >> 3) + 6, - _ => unreachable!(), - }), - facing: BlockDirection::from_id((match id { - 4763..=4817 => id - 4763, - 19341..=19355=> id - 19341, - _ => unreachable!(), - } & 0b110) >> 1) - }, - from_names(_name): { - "oak_wall_sign" => { - sign_type: SignType(0), - facing: Default::default() - }, - "spruce_wall_sign" => { - sign_type: SignType(1), - facing: Default::default() - }, - "birch_wall_sign" => { - sign_type: SignType(2), - facing: Default::default() - }, - "acacia_wall_sign" => { - sign_type: SignType(3), - facing: Default::default() - }, - "jungle_wall_sign" => { - sign_type: SignType(4), - facing: Default::default() - }, - "dark_oak_wall_sign" => { - sign_type: SignType(5), - facing: Default::default() - }, - "crimson_wall_sign" => { - sign_type: SignType(6), - facing: Default::default() - }, - "warped_wall_sign" => { - sign_type: SignType(7), - facing: Default::default() - } - }, - get_name: match sign_type.0 { - 0 => "oak_wall_sign", - 1 => "spruce_wall_sign", - 2 => "birch_wall_sign", - 3 => "acacia_wall_sign", - 4 => "jungle_wall_sign", - 5 => "dark_oak_wall_sign", - 6 => "crimson_wall_sign", - 7 => "warped_wall_sign", - _ => "invalid_wall_sign" - }, - }, - Lever { - props: { - lever: Lever - }, - get_id: { - (lever.face.get_id() << 3) - + (lever.facing.get_id() << 1) - + !lever.powered as u32 - + 5626 - }, - from_id_offset: 5626, - from_id(id): 5626..=5649 => { - lever: Lever::new( - LeverFace::from_id(id >> 3), - BlockDirection::from_id((id >> 1) & 0b11), - (id & 1) == 0 - ) - }, - from_names(_name): { - "lever" => { - lever: Default::default() - } - }, - get_name: "lever", - }, - StoneButton { - props: { - button: StoneButton - }, - get_id: { - (button.face.get_id() << 3) - + (button.facing.get_id() << 1) - + !button.powered as u32 - + 5748 - }, - from_id_offset: 5748, - from_id(id): 5748..=5771=> { - button: StoneButton::new(ButtonFace::from_id(id >> 3), BlockDirection::from_id((id >> 1) & 0b11), (id & 1) == 0) - }, - from_names(_name): { - "stone_button" => { - button: Default::default() - } - }, - get_name: "stone_button", - }, - Sign { - props: { - sign_type: SignType, - rotation: u32 - }, - get_id: (sign_type.0 << 5) + (rotation << 1) + match sign_type.0 { - 0..=5 => 4303, - 6..=7 => 19277 - (6 << 5), - _ => unreachable!(), - }, - from_id_offset: 0, - from_id(id): 4303..=4525 | 19277..=19339 => { - sign_type: SignType(match id { - 4303..=4525 => (id - 4303) >> 5, - 19277..=19339 => ((id - 19277) >> 5) + 6, - _ => unreachable!(), - }), - rotation: (match id { - 4303..=4525=> id - 4303, - 19277..=19339 => id - 19277, - _ => unreachable!(), - } & 0b11110) >> 1 - }, - from_names(_name): { - "oak_sign" => { - sign_type: SignType(0), - rotation: 0 - }, - "spruce_sign" => { - sign_type: SignType(1), - rotation: 0 - }, - "birch_sign" => { - sign_type: SignType(2), - rotation: 0 - }, - "acacia_sign" => { - sign_type: SignType(3), - rotation: 0 - }, - "jungle_sign" => { - sign_type: SignType(4), - rotation: 0 - }, - "dark_oak_sign" => { - sign_type: SignType(5), - rotation: 0 - }, - "crimson_sign" => { - sign_type: SignType(6), - rotation: 0 - }, - "warped_sign" => { - sign_type: SignType(7), - rotation: 0 - } - }, - get_name: match sign_type.0 { - 0 => "oak_sign", - 1 => "spruce_sign", - 2 => "birch_sign", - 3 => "acacia_sign", - 4 => "jungle_sign", - 5 => "dark_oak_sign", - 6 => "crimson_sign", - 7 => "warped_sign", - _ => "invalid_sign" - }, - }, - RedstoneTorch { - props: { - lit: bool - }, - get_id: if lit { - 5738 - } else { - 5739 - }, - from_id_offset: 5738, - from_id(id): 5738..=5739 => { - lit: id == 0 - }, - from_names(_name): { - "redstone_torch" => { - lit: true - } - }, - get_name: "redstone_torch", - }, - RedstoneWallTorch { - props: { - lit: bool, - facing: BlockDirection - }, - get_id: (facing.get_id() << 1) + (!lit as u32) + 5740, - from_id_offset: 5740, - from_id(id): 5740..=5747 => { - lit: (id & 1) == 0, - facing: BlockDirection::from_id(id >> 1) - }, - from_names(_name): { - "redstone_wall_torch" => { - lit: true, - facing: Default::default() - } - }, - get_name: "redstone_wall_torch", - }, - RedstoneRepeater { - props: { - repeater: RedstoneRepeater - }, - get_id: { - (repeater.delay as u32 - 1) * 16 - + repeater.facing.get_id() * 4 - + !repeater.locked as u32 * 2 - + !repeater.powered as u32 - + 5881 - }, - from_id_offset: 5881, - from_id(id): 5881..=5944 => { - repeater: RedstoneRepeater::new( - (id >> 4) as u8 + 1, - BlockDirection::from_id((id >> 2) & 3), - ((id >> 1) & 1) == 0, - (id & 1) == 0 - ) - }, - from_names(_name): { - "repeater" => { - repeater: Default::default() - } - }, - get_name: "repeater", - }, - RedstoneLamp { - props: { - lit: bool - }, - get_id: if lit { - 7417 - } else { - 7418 - }, - from_id_offset: 7417, - from_id(id): 7417..=7418 => { - lit: id == 0 - }, - from_names(_name): { - "redstone_lamp" => { - lit: false - } - }, - get_name: "redstone_lamp", - solid: true, - cube: true, - }, - TripwireHook { - props: { - direction: BlockDirection - }, - get_id: match direction { - BlockDirection::North => 7530, - BlockDirection::South => 7532, - BlockDirection::West => 7534, - BlockDirection::East => 7536, - }, - from_id_offset: 7530, - from_id(id): 7530..=7536 => { - direction: BlockDirection::from_id(id / 2) - }, - from_names(_name): { - "tripwire_hook" => { - direction: Default::default() - } - }, - get_name: "tripwire_hook", - }, - RedstoneComparator { - props: { - comparator: RedstoneComparator - }, - get_id: { - comparator.facing.get_id() * 4 - + comparator.mode.get_id() * 2 - + !comparator.powered as u32 - + 9175 - }, - from_id_offset: 9175, - from_id(id): 9175..=9190 => { - comparator: RedstoneComparator::new( - BlockDirection::from_id(id >> 2), - ComparatorMode::from_id((id >> 1) & 1), - (id & 1) == 0 - ) - }, - from_names(_name): { - "comparator" => { - comparator: Default::default() - } - }, - get_name: "comparator", - }, - RedstoneBlock { - props: {}, - get_id: 9223, - from_id(_id): 9223 => {}, - from_names(_name): { - "redstone_block" => {} - }, - get_name: "redstone_block", - transparent: true, - cube: true, - }, - Observer { - props: { - facing: BlockFacing - }, - get_id: (facing.get_id() << 1) + 12551, - from_id_offset: 12551, - from_id(id): 12551..=12561 => { - facing: BlockFacing::from_id(id >> 1) - }, - from_names(_name): { - "observer" => { - facing: Default::default() - } - }, - get_name: "observer", - solid: true, - cube: true, - }, - SeaPickle { - props: { - pickles: u8 - }, - get_id: ((pickles - 1) << 1) as u32 + 12934, - from_id_offset: 12934, - from_id(id): 12934..=12940 => { - pickles: (id >> 1) as u8 + 1 - }, - from_names(_name): { - "sea_pickle" => { - pickles: 1 - } - }, - get_name: "sea_pickle", - }, - Target { - props: {}, - get_id: 19381, - from_id(_id): 19381 => {}, - from_names(_name): { - "target" => {} - }, - get_name: "target", - solid: true, - cube: true, - }, - StonePressurePlate { - props: { - powered: bool - }, - get_id: 5650 + !powered as u32, - from_id_offset: 5650, - from_id(id): 5650..=5651 => { - powered: id == 0 - }, - from_names(_name): { - "stone_pressure_plate" => { - powered: false - } - }, - get_name: "stone_pressure_plate", - }, - Cake { - props: { - bites: u8 - }, - get_id: 5874 + bites as u32, - from_id_offset: 5874, - from_id(id): 5874..=5880 => { - bites: id as u8 - }, - from_names(_name): { - "cake" => { - bites: 0 - } - }, - get_name: "cake", - }, - Barrel { - props: {}, - get_id: 18409, - from_id(_id): 18409 => {}, - from_names(_name): { - "barrel" => {} - }, - get_name: "barrel", - solid: true, - cube: true, - }, - Hopper { - props: {}, - get_id: 9230, - from_id(_id): 9230 => {}, - from_names(_name): { - "hopper" => {} - }, - get_name: "hopper", - transparent: true, - cube: true, - }, - Sandstone { - props: {}, - get_id: 535, - from_id(_id): 535 => {}, - from_names(_name): { - "sandstone" => {} - }, - get_name: "sandstone", - solid: true, - cube: true, - }, - CoalBlock { - props: {}, - get_id: 10745, - from_id(_id): 10745 => {}, - from_names(_name): { - "coal_block" => {} - }, - get_name: "coal_block", - solid: true, - cube: true, - }, - Furnace { - props: {}, - get_id: 4295, - from_id(_id): 4295 => {}, - from_names(_name): { - "furnace" => {} - }, - get_name: "furnace", - solid: true, - cube: true, - }, - Quartz { - props: {}, - get_id: 9235, - from_id(_id): 9235 => {}, - from_names(_name): { - "quartz_block" => {} - }, - get_name: "quartz_block", - solid: true, - cube: true, - }, - SmoothQuartz { - props: {}, - get_id: 11308, - from_id(_id): 11308 => {}, - from_names(_name): { - "smooth_quartz" => {} - }, - get_name: "smooth_quartz", - solid: true, - cube: true, - }, - SmoothStoneSlab { - props: {}, - get_id: 11229, - from_id(_id): 11229 => {}, - from_names(_name): { - "smooth_stone_slab" => {} - }, - get_name: "smooth_stone_slab", - transparent: true, - cube: true, - }, - QuartzSlab { - props: {}, - get_id: 11283, - from_id(_id): 11283 => {}, - from_names(_name): { - "quartz_slab" => {} - }, - get_name: "quartz_slab", - transparent: true, - cube: true, - }, - Cauldron { - props: { - level: u8 - }, - get_id: level as u32 + 7398, - from_id_offset: 7398, - from_id(id): 7398..=7401 => { - level: id as u8 - }, - from_names(_name): { - "cauldron" => { - level: 0 - }, - "water_cauldron" => { - level: 3 - } - }, - get_name: match level { - 0 => "cauldron", - _ => "water_cauldron" - }, - transparent: true, - cube: false, - }, - Composter { - props: { - level: u8 - }, - get_id: level as u32 + 19372, - from_id_offset: 19372, - from_id(id): 19372..=19380 => { - level: id as u8 - }, - from_names(_name): { - "composter" => { - level: 0 - } - }, - get_name: "composter", - transparent: true, - // FIXME: You can place repeaters and comparators on it, but not wires? - cube: true, - }, - Concrete { - props: { - color: BlockColorVariant - }, - get_id: color.get_id() + 12728, - from_id_offset: 12728, - from_id(id): 12728..=12743 => { - color: BlockColorVariant::from_id(id) - }, - from_names(_name): { - "white_concrete" => { color: BlockColorVariant::White }, - "orange_concrete" => { color: BlockColorVariant::Orange }, - "magenta_concrete" => { color: BlockColorVariant::Magenta }, - "light_blue_concrete" => { color: BlockColorVariant::LightBlue }, - "yellow_concrete" => { color: BlockColorVariant::Yellow }, - "lime_concrete" => { color: BlockColorVariant::Lime }, - "pink_concrete" => { color: BlockColorVariant::Pink }, - "gray_concrete" => { color: BlockColorVariant::Gray }, - "light_gray_concrete" => { color: BlockColorVariant::LightGray }, - "cyan_concrete" => { color: BlockColorVariant::Cyan }, - "purple_concrete" => { color: BlockColorVariant::Purple }, - "blue_concrete" => { color: BlockColorVariant::Blue }, - "brown_concrete" => { color: BlockColorVariant::Brown }, - "green_concrete" => { color: BlockColorVariant::Green }, - "red_concrete" => { color: BlockColorVariant::Red }, - "black_concrete" => { color: BlockColorVariant::Black } - }, - get_name: match color { - BlockColorVariant::White => "white_concrete", - BlockColorVariant::Orange => "orange_concrete", - BlockColorVariant::Magenta => "magenta_concrete", - BlockColorVariant::LightBlue => "light_blue_concrete", - BlockColorVariant::Yellow => "yellow_concrete", - BlockColorVariant::Lime => "lime_concrete", - BlockColorVariant::Pink => "pink_concrete", - BlockColorVariant::Gray => "gray_concrete", - BlockColorVariant::LightGray => "light_gray_concrete", - BlockColorVariant::Cyan => "cyan_concrete", - BlockColorVariant::Purple => "purple_concrete", - BlockColorVariant::Blue => "blue_concrete", - BlockColorVariant::Brown => "brown_concrete", - BlockColorVariant::Green => "green_concrete", - BlockColorVariant::Red => "red_concrete", - BlockColorVariant::Black => "black_concrete", - }, - solid: true, - cube: true, - }, - StainedGlass { - props: { - color: BlockColorVariant - }, - get_id: color.get_id() + 5945, - from_id_offset: 5945, - from_id(id): 5945..=5960 => { - color: BlockColorVariant::from_id(id) - }, - from_names(_name): { - "white_stained_glass" => { color: BlockColorVariant::White }, - "orange_stained_glass" => { color: BlockColorVariant::Orange }, - "magenta_stained_glass" => { color: BlockColorVariant::Magenta }, - "light_blue_stained_glass" => { color: BlockColorVariant::LightBlue }, - "yellow_stained_glass" => { color: BlockColorVariant::Yellow }, - "lime_stained_glass" => { color: BlockColorVariant::Lime }, - "pink_stained_glass" => { color: BlockColorVariant::Pink }, - "gray_stained_glass" => { color: BlockColorVariant::Gray }, - "light_gray_stained_glass" => { color: BlockColorVariant::LightGray }, - "cyan_stained_glass" => { color: BlockColorVariant::Cyan }, - "purple_stained_glass" => { color: BlockColorVariant::Purple }, - "blue_stained_glass" => { color: BlockColorVariant::Blue }, - "brown_stained_glass" => { color: BlockColorVariant::Brown }, - "green_stained_glass" => { color: BlockColorVariant::Green }, - "red_stained_glass" => { color: BlockColorVariant::Red }, - "black_stained_glass" => { color: BlockColorVariant::Black } - }, - get_name: match color { - BlockColorVariant::White => "white_stained_glass", - BlockColorVariant::Orange => "orange_stained_glass", - BlockColorVariant::Magenta => "magenta_stained_glass", - BlockColorVariant::LightBlue => "light_blue_stained_glass", - BlockColorVariant::Yellow => "yellow_stained_glass", - BlockColorVariant::Lime => "lime_stained_glass", - BlockColorVariant::Pink => "pink_stained_glass", - BlockColorVariant::Gray => "gray_stained_glass", - BlockColorVariant::LightGray => "light_gray_stained_glass", - BlockColorVariant::Cyan => "cyan_stained_glass", - BlockColorVariant::Purple => "purple_stained_glass", - BlockColorVariant::Blue => "blue_stained_glass", - BlockColorVariant::Brown => "brown_stained_glass", - BlockColorVariant::Green => "green_stained_glass", - BlockColorVariant::Red => "red_stained_glass", - BlockColorVariant::Black => "black_stained_glass", - }, - transparent: true, - cube: true, - }, - Terracotta { - props: {}, - get_id: 10744, - from_id(_id): 10744 => {}, - from_names(_name): { - "terracotta" => {} - }, - get_name: "terracotta", - solid: true, - cube: true, - }, - ColoredTerracotta { - props: { - color: BlockColorVariant - }, - get_id: color.get_id() + 9356, - from_id_offset: 9356, - from_id(id): 9356..=9371 => { - color: BlockColorVariant::from_id(id) - }, - from_names(_name): { - "white_terracotta" => { color: BlockColorVariant::White }, - "orange_terracotta" => { color: BlockColorVariant::Orange }, - "magenta_terracotta" => { color: BlockColorVariant::Magenta }, - "light_blue_terracotta" => { color: BlockColorVariant::LightBlue }, - "yellow_terracotta" => { color: BlockColorVariant::Yellow }, - "lime_terracotta" => { color: BlockColorVariant::Lime }, - "pink_terracotta" => { color: BlockColorVariant::Pink }, - "gray_terracotta" => { color: BlockColorVariant::Gray }, - "light_gray_terracotta" => { color: BlockColorVariant::LightGray }, - "cyan_terracotta" => { color: BlockColorVariant::Cyan }, - "purple_terracotta" => { color: BlockColorVariant::Purple }, - "blue_terracotta" => { color: BlockColorVariant::Blue }, - "brown_terracotta" => { color: BlockColorVariant::Brown }, - "green_terracotta" => { color: BlockColorVariant::Green }, - "red_terracotta" => { color: BlockColorVariant::Red }, - "black_terracotta" => { color: BlockColorVariant::Black } - }, - get_name: match color { - BlockColorVariant::White => "white_terracotta", - BlockColorVariant::Orange => "orange_terracotta", - BlockColorVariant::Magenta => "magenta_terracotta", - BlockColorVariant::LightBlue => "light_blue_terracotta", - BlockColorVariant::Yellow => "yellow_terracotta", - BlockColorVariant::Lime => "lime_terracotta", - BlockColorVariant::Pink => "pink_terracotta", - BlockColorVariant::Gray => "gray_terracotta", - BlockColorVariant::LightGray => "light_gray_terracotta", - BlockColorVariant::Cyan => "cyan_terracotta", - BlockColorVariant::Purple => "purple_terracotta", - BlockColorVariant::Blue => "blue_terracotta", - BlockColorVariant::Brown => "brown_terracotta", - BlockColorVariant::Green => "green_terracotta", - BlockColorVariant::Red => "red_terracotta", - BlockColorVariant::Black => "black_terracotta", - }, - solid: true, - cube: true, - }, - Wool { - props: { - color: BlockColorVariant - }, - get_id: color.get_id() + 2047, - from_id_offset: 2047, - from_id(id): 2047..=2062 => { - color: BlockColorVariant::from_id(id) - }, - from_names(_name): { - "white_wool" => { color: BlockColorVariant::White }, - "orange_wool" => { color: BlockColorVariant::Orange }, - "magenta_wool" => { color: BlockColorVariant::Magenta }, - "light_blue_wool" => { color: BlockColorVariant::LightBlue }, - "yellow_wool" => { color: BlockColorVariant::Yellow }, - "lime_wool" => { color: BlockColorVariant::Lime }, - "pink_wool" => { color: BlockColorVariant::Pink }, - "gray_wool" => { color: BlockColorVariant::Gray }, - "light_gray_wool" => { color: BlockColorVariant::LightGray }, - "cyan_wool" => { color: BlockColorVariant::Cyan }, - "purple_wool" => { color: BlockColorVariant::Purple }, - "blue_wool" => { color: BlockColorVariant::Blue }, - "brown_wool" => { color: BlockColorVariant::Brown }, - "green_wool" => { color: BlockColorVariant::Green }, - "red_wool" => { color: BlockColorVariant::Red }, - "black_wool" => { color: BlockColorVariant::Black } - }, - get_name: match color { - BlockColorVariant::White => "white_wool", - BlockColorVariant::Orange => "orange_wool", - BlockColorVariant::Magenta => "magenta_wool", - BlockColorVariant::LightBlue => "light_blue_wool", - BlockColorVariant::Yellow => "yellow_wool", - BlockColorVariant::Lime => "lime_wool", - BlockColorVariant::Pink => "pink_wool", - BlockColorVariant::Gray => "gray_wool", - BlockColorVariant::LightGray => "light_gray_wool", - BlockColorVariant::Cyan => "cyan_wool", - BlockColorVariant::Purple => "purple_wool", - BlockColorVariant::Blue => "blue_wool", - BlockColorVariant::Brown => "brown_wool", - BlockColorVariant::Green => "green_wool", - BlockColorVariant::Red => "red_wool", - BlockColorVariant::Black => "black_wool", - }, - solid: true, - cube: true, - }, - IronTrapdoor { - props: { - facing: BlockDirection, - half: TrapdoorHalf, - powered: bool - }, - get_id: { - facing.get_id() * 16 - + half.get_id() * 8 - + !powered as u32 * 6 - + 10400 - }, - from_id_offset: 10400, - from_id(id): 10400..=10462 => { - facing: BlockDirection::from_id(id >> 4), - half: TrapdoorHalf::from_id((id >> 3) & 1), - powered: ((id >> 1) & 1) == 0 - }, - from_names(_name): { - "iron_trapdoor" => { - facing: Default::default(), - half: TrapdoorHalf::Top, - powered: false - } - }, - get_name: "iron_trapdoor", - }, - NoteBlock { - props: { - instrument: Instrument, - note: u32, - powered: bool - }, - get_id: { - instrument.get_id() * 50 - + note * 2 - + !powered as u32 - + 538 - }, - from_id_offset: 538, - from_id(id): 538..=1637 => { - instrument: Instrument::from_id((id >> 1) / 25), - note: (id >> 1) % 25, - powered: (id & 1) == 0 - }, - from_names(_name): { - "note_block" => { - instrument: Instrument::Harp, - note: 0, - powered: false - } - }, - get_name: "note_block", - solid: true, - cube: true, - }, - Clay { - props: {}, - get_id: 5798, - from_id(_id): 5798 => {}, - from_names(_name): { - "clay" => {} - }, - get_name: "clay", - solid: true, - cube: true, - }, - GoldBlock { - props: {}, - get_id: 2091, - from_id(_id): 2091 => {}, - from_names(_name): { - "gold_block" => {} - }, - get_name: "gold_block", - solid: true, - cube: true, - }, - PackedIce { - props: {}, - get_id: 10746, - from_id(_id): 10746 => {}, - from_names(_name): { - "packed_ice" => {} - }, - get_name: "packed_ice", - solid: true, - cube: true, - }, - BoneBlock { - props: {}, - get_id: 12546, - from_id(_id): 12546..=12548 => {}, - from_names(_name): { - "bone_block" => {} - }, - get_name: "bone_block", - solid: true, - cube: true, - }, - IronBlock { - props: {}, - get_id: 2092, - from_id(_id): 2092 => {}, - from_names(_name): { - "iron_block" => {} - }, - get_name: "iron_block", - solid: true, - cube: true, - }, - SoulSand { - props: {}, - get_id: 5850, - from_id(_id): 5850 => {}, - from_names(_name): { - "soul_sand" => {} - }, - get_name: "soul_sand", - solid: true, - cube: true, - }, - Pumpkin { - props: {}, - get_id: 6813, - from_id(_id): 6813 => {}, - from_names(_name): { - "pumpkin" => {} - }, - get_name: "pumpkin", - solid: true, - cube: true, - }, - EmeraldBlock { - props: {}, - get_id: 7665, - from_id(_id): 7665 => {}, - from_names(_name): { - "emerald_block" => {} - }, - get_name: "emerald_block", - solid: true, - cube: true, - }, - HayBlock { - props: {}, - get_id: 10725, - from_id(_id): 10725..=10727 => {}, - from_names(_name): { - "hay_block" => {} - }, - get_name: "hay_block", - solid: true, - cube: true, - }, - Sand { - props: {}, - get_id: 112, - from_id(_id): 112 => {}, - from_names(_name): { - "sand" => {} - }, - get_name: "sand", - solid: true, - cube: true, - }, - StoneBricks { - props: {}, - get_id: 6537, - from_id(_id): 6537 => {}, - from_names(_name): { - "stone_bricks" => {} - }, - get_name: "stone_bricks", - solid: true, - cube: true, - }, - EndPortalFrame { - props: { - eye: bool, - facing: BlockDirection - }, - get_id: (!eye as u32) * 4 - + facing.get_id() - + 7407, - from_id_offset: 7407, - from_id(id): 7407..=7414 => { - eye: (id >> 2) == 0, - facing: BlockDirection::from_id(id % 4) - }, - from_names(_name): { - "end_portal_frame" => { - eye: false, - facing: BlockDirection::West - } - }, - get_name: "end_portal_frame", - transparent: true, - }, - Unknown { - props: { - id: u32 - }, - get_id: id, - from_id(id): _ => { id: id }, - from_names(name): {}, - get_name: "unknown", - solid: true, - cube: true, - } -} diff --git a/crates/blocks/src/blocks/props.rs b/crates/blocks/src/blocks/props.rs index 2a8c28c2..69d6a474 100644 --- a/crates/blocks/src/blocks/props.rs +++ b/crates/blocks/src/blocks/props.rs @@ -1,17 +1,16 @@ use super::{Block, BlockDirection, BlockProperty, BlockTransform, FlipDirection}; -use std::str::FromStr; #[derive(Copy, Clone, Debug, PartialEq, Eq, BlockProperty, BlockTransform)] -pub struct RedstoneRepeater { +pub struct Repeater { pub delay: u8, pub facing: BlockDirection, pub locked: bool, pub powered: bool, } -impl Default for RedstoneRepeater { +impl Default for Repeater { fn default() -> Self { - RedstoneRepeater { + Repeater { delay: 1, facing: Default::default(), locked: false, @@ -20,14 +19,9 @@ impl Default for RedstoneRepeater { } } -impl RedstoneRepeater { - pub(super) fn new( - delay: u8, - facing: BlockDirection, - locked: bool, - powered: bool, - ) -> RedstoneRepeater { - RedstoneRepeater { +impl Repeater { + pub(super) fn new(delay: u8, facing: BlockDirection, locked: bool, powered: bool) -> Repeater { + Repeater { delay, facing, locked, @@ -44,21 +38,6 @@ pub enum ComparatorMode { } impl ComparatorMode { - pub(super) fn from_id(id: u32) -> ComparatorMode { - match id { - 0 => ComparatorMode::Compare, - 1 => ComparatorMode::Subtract, - _ => panic!("Invalid ComparatorMode"), - } - } - - pub(super) fn get_id(self) -> u32 { - match self { - ComparatorMode::Compare => 0, - ComparatorMode::Subtract => 1, - } - } - pub fn toggle(self) -> ComparatorMode { match self { ComparatorMode::Subtract => ComparatorMode::Compare, @@ -67,37 +46,16 @@ impl ComparatorMode { } } -impl FromStr for ComparatorMode { - type Err = (); - - fn from_str(s: &str) -> Result { - Ok(match s { - "subtract" => ComparatorMode::Subtract, - "compare" => ComparatorMode::Compare, - _ => return Err(()), - }) - } -} - -impl std::fmt::Display for ComparatorMode { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_str(match self { - ComparatorMode::Subtract => "subtract", - ComparatorMode::Compare => "compare", - }) - } -} - #[derive(Copy, Clone, Debug, PartialEq, Eq, Default, BlockProperty, BlockTransform)] -pub struct RedstoneComparator { +pub struct Comparator { pub facing: BlockDirection, pub mode: ComparatorMode, pub powered: bool, } -impl RedstoneComparator { - pub fn new(facing: BlockDirection, mode: ComparatorMode, powered: bool) -> RedstoneComparator { - RedstoneComparator { +impl Comparator { + pub fn new(facing: BlockDirection, mode: ComparatorMode, powered: bool) -> Comparator { + Comparator { facing, mode, powered, @@ -113,48 +71,6 @@ pub enum LeverFace { Ceiling, } -impl LeverFace { - pub(super) fn from_id(id: u32) -> LeverFace { - match id { - 0 => LeverFace::Floor, - 1 => LeverFace::Wall, - 2 => LeverFace::Ceiling, - _ => panic!("Invalid LeverFace"), - } - } - - pub(super) fn get_id(self) -> u32 { - match self { - LeverFace::Floor => 0, - LeverFace::Wall => 1, - LeverFace::Ceiling => 2, - } - } -} - -impl FromStr for LeverFace { - type Err = (); - - fn from_str(s: &str) -> Result { - Ok(match s { - "floor" => LeverFace::Floor, - "ceiling" => LeverFace::Ceiling, - "wall" => LeverFace::Wall, - _ => return Err(()), - }) - } -} - -impl std::fmt::Display for LeverFace { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_str(match self { - LeverFace::Floor => "floor", - LeverFace::Ceiling => "ceiling", - LeverFace::Wall => "wall", - }) - } -} - #[derive(Copy, Clone, Debug, PartialEq, Eq, Default, BlockProperty, BlockTransform)] pub struct Lever { pub face: LeverFace, @@ -172,73 +88,6 @@ impl Lever { } } -#[derive(Copy, Clone, Default, Debug, PartialEq, Eq)] -pub enum ButtonFace { - Floor, - #[default] - Wall, - Ceiling, -} - -impl ButtonFace { - pub(super) fn from_id(id: u32) -> ButtonFace { - match id { - 0 => ButtonFace::Floor, - 1 => ButtonFace::Wall, - 2 => ButtonFace::Ceiling, - _ => panic!("Invalid ButtonFace"), - } - } - - pub(super) fn get_id(self) -> u32 { - match self { - ButtonFace::Floor => 0, - ButtonFace::Wall => 1, - ButtonFace::Ceiling => 2, - } - } -} - -impl FromStr for ButtonFace { - type Err = (); - - fn from_str(s: &str) -> Result { - Ok(match s { - "floor" => ButtonFace::Floor, - "ceiling" => ButtonFace::Ceiling, - "wall" => ButtonFace::Wall, - _ => return Err(()), - }) - } -} - -impl std::fmt::Display for ButtonFace { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_str(match self { - ButtonFace::Floor => "floor", - ButtonFace::Ceiling => "ceiling", - ButtonFace::Wall => "wall", - }) - } -} - -#[derive(Copy, Clone, Debug, PartialEq, Eq, Default, BlockProperty, BlockTransform)] -pub struct StoneButton { - pub face: ButtonFace, - pub facing: BlockDirection, - pub powered: bool, -} - -impl StoneButton { - pub fn new(face: ButtonFace, facing: BlockDirection, powered: bool) -> StoneButton { - StoneButton { - face, - facing, - powered, - } - } -} - #[derive(Copy, Clone, Debug, PartialEq, Eq, Default)] pub enum RedstoneWireSide { Up, @@ -253,48 +102,6 @@ impl RedstoneWireSide { } } -impl FromStr for RedstoneWireSide { - type Err = (); - - fn from_str(s: &str) -> Result { - Ok(match s { - "up" => RedstoneWireSide::Up, - "side" => RedstoneWireSide::Side, - "none" => RedstoneWireSide::None, - _ => return Err(()), - }) - } -} - -impl std::fmt::Display for RedstoneWireSide { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_str(match self { - RedstoneWireSide::Up => "up", - RedstoneWireSide::Side => "side", - RedstoneWireSide::None => "none", - }) - } -} - -impl RedstoneWireSide { - pub fn from_id(id: u32) -> RedstoneWireSide { - match id { - 0 => RedstoneWireSide::Up, - 1 => RedstoneWireSide::Side, - 2 => RedstoneWireSide::None, - _ => panic!("Invalid RedstoneWireSide"), - } - } - - pub fn get_id(self) -> u32 { - match self { - RedstoneWireSide::Up => 0, - RedstoneWireSide::Side => 1, - RedstoneWireSide::None => 2, - } - } -} - #[derive(Copy, Clone, Debug, PartialEq, Eq, Default, BlockProperty)] pub struct RedstoneWire { pub north: RedstoneWireSide, @@ -356,42 +163,6 @@ pub enum TrapdoorHalf { Bottom, } -impl TrapdoorHalf { - pub fn get_id(self) -> u32 { - self as u32 - } - - pub fn from_id(id: u32) -> TrapdoorHalf { - use TrapdoorHalf::*; - match id { - 0 => Top, - 1 => Bottom, - _ => unreachable!(), - } - } -} - -impl std::fmt::Display for TrapdoorHalf { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_str(match self { - TrapdoorHalf::Top => "top", - TrapdoorHalf::Bottom => "bottom", - }) - } -} - -impl FromStr for TrapdoorHalf { - type Err = (); - - fn from_str(s: &str) -> Result { - Ok(match s { - "top" => TrapdoorHalf::Top, - "bottom" => TrapdoorHalf::Bottom, - _ => return Err(()), - }) - } -} - #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)] pub enum Instrument { Harp, @@ -416,70 +187,30 @@ pub enum Instrument { Dragon, WitherSkeleton, Piglin, + CustomHead, } impl Instrument { - pub fn get_id(self) -> u32 { - self as u32 - } - - pub fn from_id(id: u32) -> Self { - match id { - 0 => Instrument::Harp, - 1 => Instrument::Basedrum, - 2 => Instrument::Snare, - 3 => Instrument::Hat, - 4 => Instrument::Bass, - 5 => Instrument::Flute, - 6 => Instrument::Bell, - 7 => Instrument::Guitar, - 8 => Instrument::Chime, - 9 => Instrument::Xylophone, - 10 => Instrument::IronXylophone, - 11 => Instrument::CowBell, - 12 => Instrument::Didgeridoo, - 13 => Instrument::Bit, - 14 => Instrument::Banjo, - 15 => Instrument::Pling, - 16 => Instrument::Zombie, - 17 => Instrument::Skeleton, - 18 => Instrument::Creeper, - 19 => Instrument::Dragon, - 20 => Instrument::WitherSkeleton, - 21 => Instrument::Piglin, - _ => unreachable!(), - } - } - pub fn from_block_below(block: Block) -> Instrument { match block { // All stone materials - Block::Stone {} - | Block::CoalBlock {} - | Block::Quartz {} - | Block::Sandstone {} - | Block::Concrete { .. } - | Block::Terracotta {} - | Block::ColoredTerracotta { .. } => Instrument::Basedrum, + _ if block.is_stone() => Instrument::Basedrum, // All sand/aggregate materials: ConcretePowder Block::Sand {} => Instrument::Snare, // All glass materials: GlassPane - Block::Glass {} | Block::StainedGlass { .. } => Instrument::Hat, + _ if block.is_glass() => Instrument::Hat, // All wood materials: Log, Plank - Block::Sign { .. } - | Block::NoteBlock { .. } - | Block::Barrel {} - | Block::Composter { .. } => Instrument::Bass, + _ if block.is_wood() => Instrument::Bass, Block::Clay {} => Instrument::Flute, - Block::GoldBlock {} => Instrument::Bell, - Block::Wool { .. } => Instrument::Guitar, - Block::PackedIce {} => Instrument::Chime, - Block::BoneBlock {} => Instrument::Xylophone, - Block::IronBlock {} => Instrument::IronXylophone, - Block::SoulSand {} => Instrument::CowBell, - Block::Pumpkin {} => Instrument::Didgeridoo, - Block::EmeraldBlock {} => Instrument::Bit, - Block::HayBlock {} => Instrument::Banjo, + Block::GoldBlock => Instrument::Bell, + _ if block.is_wool() => Instrument::Guitar, + Block::PackedIce => Instrument::Chime, + Block::BoneBlock { .. } => Instrument::Xylophone, + Block::IronBlock => Instrument::IronXylophone, + Block::SoulSand => Instrument::CowBell, + Block::Pumpkin => Instrument::Didgeridoo, + Block::EmeraldBlock => Instrument::Bit, + Block::HayBlock { .. } => Instrument::Banjo, Block::Glowstone { .. } => Instrument::Pling, _ => Instrument::Harp, } @@ -509,67 +240,71 @@ impl Instrument { Instrument::Dragon => 958, Instrument::WitherSkeleton => 959, Instrument::Piglin => 960, + _ => 0, } } } -impl std::fmt::Display for Instrument { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_str(match self { - Instrument::Harp => "harp", - Instrument::Basedrum => "basedrum", - Instrument::Snare => "snare", - Instrument::Hat => "hat", - Instrument::Bass => "bass", - Instrument::Flute => "flute", - Instrument::Bell => "bell", - Instrument::Guitar => "guitar", - Instrument::Chime => "chime", - Instrument::Xylophone => "xylophone", - Instrument::IronXylophone => "iron_xylophone", - Instrument::CowBell => "cow_bell", - Instrument::Didgeridoo => "didgeridoo", - Instrument::Bit => "bit", - Instrument::Banjo => "banjo", - Instrument::Pling => "pling", - Instrument::Zombie => "zombie", - Instrument::Skeleton => "skeleton", - Instrument::Creeper => "creeper", - Instrument::Dragon => "dragon", - Instrument::WitherSkeleton => "wither_skeleton", - Instrument::Piglin => "piglin", - }) +#[derive(Clone, Copy, Debug, PartialEq, Eq, Default)] +pub enum HopperFacing { + #[default] + Down, + North, + South, + West, + East, +} + +impl BlockTransform for HopperFacing { + fn flip(&mut self, dir: FlipDirection) { + match dir { + FlipDirection::FlipX => match self { + Self::East => *self = Self::West, + Self::West => *self = Self::East, + _ => {} + }, + FlipDirection::FlipZ => match self { + Self::North => *self = Self::South, + Self::South => *self = Self::North, + _ => {} + }, + } + } + + fn rotate90(&mut self) { + *self = match *self { + Self::North => Self::East, + Self::East => Self::South, + Self::South => Self::West, + Self::West => Self::North, + x => x, + } } } -impl FromStr for Instrument { - type Err = (); +#[derive(Clone, Copy, Debug, PartialEq, Eq, Default)] +pub enum SlabType { + Top, + #[default] + Bottom, + Double, +} - fn from_str(s: &str) -> Result { - Ok(match s { - "harp" => Instrument::Harp, - "basedrum" => Instrument::Basedrum, - "snare" => Instrument::Snare, - "hat" => Instrument::Hat, - "bass" => Instrument::Bass, - "flute" => Instrument::Flute, - "bell" => Instrument::Bell, - "guitar" => Instrument::Guitar, - "chime" => Instrument::Chime, - "xylophone" => Instrument::Xylophone, - "iron_xylophone" => Instrument::IronXylophone, - "cow_bell" => Instrument::CowBell, - "didgeridoo" => Instrument::Didgeridoo, - "bit" => Instrument::Bit, - "banjo" => Instrument::Banjo, - "pling" => Instrument::Pling, - "zombie" => Instrument::Zombie, - "skeleton" => Instrument::Skeleton, - "creeper" => Instrument::Creeper, - "dragon" => Instrument::Dragon, - "wither_skeleton" => Instrument::WitherSkeleton, - "piglin" => Instrument::Piglin, - _ => return Err(()), - }) +#[derive(Clone, Copy, Debug, PartialEq, Eq, Default)] +pub enum BlockAxis { + X, + #[default] + Y, + Z, +} + +impl BlockTransform for BlockAxis { + fn rotate90(&mut self) { + *self = match *self { + Self::X => Self::Z, + Self::Z => Self::X, + x => x, + } } + fn flip(&mut self, _dir: FlipDirection) {} } diff --git a/crates/blocks/src/generated.rs b/crates/blocks/src/generated.rs new file mode 100644 index 00000000..c26392f0 --- /dev/null +++ b/crates/blocks/src/generated.rs @@ -0,0 +1,4566 @@ +#![allow( + unused_parens, + unused_assignments, + non_contiguous_range_endpoints, + unused_variables +)] +use crate::{blocks::*, *}; +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub enum Block { + Air, + Stone, + Glass, + Glowstone, + RedstoneWire(RedstoneWire), + OakWallSign { + facing: BlockDirection, + waterlogged: bool, + }, + SpruceWallSign { + facing: BlockDirection, + waterlogged: bool, + }, + BirchWallSign { + facing: BlockDirection, + waterlogged: bool, + }, + AcaciaWallSign { + facing: BlockDirection, + waterlogged: bool, + }, + JungleWallSign { + facing: BlockDirection, + waterlogged: bool, + }, + DarkOakWallSign { + facing: BlockDirection, + waterlogged: bool, + }, + CrimsonWallSign { + facing: BlockDirection, + waterlogged: bool, + }, + WarpedWallSign { + facing: BlockDirection, + waterlogged: bool, + }, + OakSign { + rotation: u8, + waterlogged: bool, + }, + SpruceSign { + rotation: u8, + waterlogged: bool, + }, + BirchSign { + rotation: u8, + waterlogged: bool, + }, + AcaciaSign { + rotation: u8, + waterlogged: bool, + }, + JungleSign { + rotation: u8, + waterlogged: bool, + }, + DarkOakSign { + rotation: u8, + waterlogged: bool, + }, + CrimsonSign { + rotation: u8, + waterlogged: bool, + }, + WarpedSign { + rotation: u8, + waterlogged: bool, + }, + Lever { + face: LeverFace, + facing: BlockDirection, + powered: bool, + }, + StoneButton { + face: LeverFace, + facing: BlockDirection, + powered: bool, + }, + RedstoneTorch { + lit: bool, + }, + RedstoneWallTorch { + facing: BlockDirection, + lit: bool, + }, + Repeater(Repeater), + RedstoneLamp { + lit: bool, + }, + TripwireHook { + attached: bool, + facing: BlockDirection, + powered: bool, + }, + Comparator(Comparator), + RedstoneBlock, + Observer { + facing: BlockFacing, + powered: bool, + }, + SeaPickle { + pickles: u8, + waterlogged: bool, + }, + Target { + power: u8, + }, + StonePressurePlate { + powered: bool, + }, + Cake { + bites: u8, + }, + Barrel { + facing: BlockFacing, + open: bool, + }, + Hopper { + enabled: bool, + facing: HopperFacing, + }, + Sandstone, + CoalBlock, + Furnace { + facing: BlockDirection, + lit: bool, + }, + QuartzBlock, + SmoothQuartz, + SmoothStoneSlab { + ty: SlabType, + waterlogged: bool, + }, + QuartzSlab { + ty: SlabType, + waterlogged: bool, + }, + Cauldron, + WaterCauldron { + level: u8, + }, + Composter { + level: u8, + }, + WhiteConcrete, + OrangeConcrete, + MagentaConcrete, + LightBlueConcrete, + YellowConcrete, + LimeConcrete, + PinkConcrete, + GrayConcrete, + LightGrayConcrete, + CyanConcrete, + PurpleConcrete, + BlueConcrete, + BrownConcrete, + GreenConcrete, + RedConcrete, + BlackConcrete, + WhiteStainedGlass, + OrangeStainedGlass, + MagentaStainedGlass, + LightBlueStainedGlass, + YellowStainedGlass, + LimeStainedGlass, + PinkStainedGlass, + GrayStainedGlass, + LightGrayStainedGlass, + CyanStainedGlass, + PurpleStainedGlass, + BlueStainedGlass, + BrownStainedGlass, + GreenStainedGlass, + RedStainedGlass, + BlackStainedGlass, + Terracotta, + WhiteTerracotta, + OrangeTerracotta, + MagentaTerracotta, + LightBlueTerracotta, + YellowTerracotta, + LimeTerracotta, + PinkTerracotta, + GrayTerracotta, + LightGrayTerracotta, + CyanTerracotta, + PurpleTerracotta, + BlueTerracotta, + BrownTerracotta, + GreenTerracotta, + RedTerracotta, + BlackTerracotta, + WhiteWool, + OrangeWool, + MagentaWool, + LightBlueWool, + YellowWool, + LimeWool, + PinkWool, + GrayWool, + LightGrayWool, + CyanWool, + PurpleWool, + BlueWool, + BrownWool, + GreenWool, + RedWool, + BlackWool, + IronTrapdoor { + facing: BlockDirection, + half: TrapdoorHalf, + open: bool, + powered: bool, + waterlogged: bool, + }, + NoteBlock { + instrument: Instrument, + note: u8, + powered: bool, + }, + Clay, + GoldBlock, + PackedIce, + BoneBlock { + axis: BlockAxis, + }, + IronBlock, + SoulSand, + Pumpkin, + EmeraldBlock, + HayBlock { + axis: BlockAxis, + }, + Sand, + StoneBricks, + EndPortalFrame { + eye: bool, + facing: BlockDirection, + }, +} +impl Block { + pub fn get_name(self) -> &'static str { + match self { + Block::Air => "minecraft:air", + Block::Stone => "minecraft:stone", + Block::Glass => "minecraft:glass", + Block::Glowstone => "minecraft:glowstone", + Block::RedstoneWire(_) => "minecraft:redstone_wire", + Block::OakWallSign { .. } => "minecraft:oak_wall_sign", + Block::SpruceWallSign { .. } => "minecraft:spruce_wall_sign", + Block::BirchWallSign { .. } => "minecraft:birch_wall_sign", + Block::AcaciaWallSign { .. } => "minecraft:acacia_wall_sign", + Block::JungleWallSign { .. } => "minecraft:jungle_wall_sign", + Block::DarkOakWallSign { .. } => "minecraft:dark_oak_wall_sign", + Block::CrimsonWallSign { .. } => "minecraft:crimson_wall_sign", + Block::WarpedWallSign { .. } => "minecraft:warped_wall_sign", + Block::OakSign { .. } => "minecraft:oak_sign", + Block::SpruceSign { .. } => "minecraft:spruce_sign", + Block::BirchSign { .. } => "minecraft:birch_sign", + Block::AcaciaSign { .. } => "minecraft:acacia_sign", + Block::JungleSign { .. } => "minecraft:jungle_sign", + Block::DarkOakSign { .. } => "minecraft:dark_oak_sign", + Block::CrimsonSign { .. } => "minecraft:crimson_sign", + Block::WarpedSign { .. } => "minecraft:warped_sign", + Block::Lever { .. } => "minecraft:lever", + Block::StoneButton { .. } => "minecraft:stone_button", + Block::RedstoneTorch { .. } => "minecraft:redstone_torch", + Block::RedstoneWallTorch { .. } => "minecraft:redstone_wall_torch", + Block::Repeater(_) => "minecraft:repeater", + Block::RedstoneLamp { .. } => "minecraft:redstone_lamp", + Block::TripwireHook { .. } => "minecraft:tripwire_hook", + Block::Comparator(_) => "minecraft:comparator", + Block::RedstoneBlock => "minecraft:redstone_block", + Block::Observer { .. } => "minecraft:observer", + Block::SeaPickle { .. } => "minecraft:sea_pickle", + Block::Target { .. } => "minecraft:target", + Block::StonePressurePlate { .. } => "minecraft:stone_pressure_plate", + Block::Cake { .. } => "minecraft:cake", + Block::Barrel { .. } => "minecraft:barrel", + Block::Hopper { .. } => "minecraft:hopper", + Block::Sandstone => "minecraft:sandstone", + Block::CoalBlock => "minecraft:coal_block", + Block::Furnace { .. } => "minecraft:furnace", + Block::QuartzBlock => "minecraft:quartz_block", + Block::SmoothQuartz => "minecraft:smooth_quartz", + Block::SmoothStoneSlab { .. } => "minecraft:smooth_stone_slab", + Block::QuartzSlab { .. } => "minecraft:quartz_slab", + Block::Cauldron => "minecraft:cauldron", + Block::WaterCauldron { .. } => "minecraft:water_cauldron", + Block::Composter { .. } => "minecraft:composter", + Block::WhiteConcrete => "minecraft:white_concrete", + Block::OrangeConcrete => "minecraft:orange_concrete", + Block::MagentaConcrete => "minecraft:magenta_concrete", + Block::LightBlueConcrete => "minecraft:light_blue_concrete", + Block::YellowConcrete => "minecraft:yellow_concrete", + Block::LimeConcrete => "minecraft:lime_concrete", + Block::PinkConcrete => "minecraft:pink_concrete", + Block::GrayConcrete => "minecraft:gray_concrete", + Block::LightGrayConcrete => "minecraft:light_gray_concrete", + Block::CyanConcrete => "minecraft:cyan_concrete", + Block::PurpleConcrete => "minecraft:purple_concrete", + Block::BlueConcrete => "minecraft:blue_concrete", + Block::BrownConcrete => "minecraft:brown_concrete", + Block::GreenConcrete => "minecraft:green_concrete", + Block::RedConcrete => "minecraft:red_concrete", + Block::BlackConcrete => "minecraft:black_concrete", + Block::WhiteStainedGlass => "minecraft:white_stained_glass", + Block::OrangeStainedGlass => "minecraft:orange_stained_glass", + Block::MagentaStainedGlass => "minecraft:magenta_stained_glass", + Block::LightBlueStainedGlass => "minecraft:light_blue_stained_glass", + Block::YellowStainedGlass => "minecraft:yellow_stained_glass", + Block::LimeStainedGlass => "minecraft:lime_stained_glass", + Block::PinkStainedGlass => "minecraft:pink_stained_glass", + Block::GrayStainedGlass => "minecraft:gray_stained_glass", + Block::LightGrayStainedGlass => "minecraft:light_gray_stained_glass", + Block::CyanStainedGlass => "minecraft:cyan_stained_glass", + Block::PurpleStainedGlass => "minecraft:purple_stained_glass", + Block::BlueStainedGlass => "minecraft:blue_stained_glass", + Block::BrownStainedGlass => "minecraft:brown_stained_glass", + Block::GreenStainedGlass => "minecraft:green_stained_glass", + Block::RedStainedGlass => "minecraft:red_stained_glass", + Block::BlackStainedGlass => "minecraft:black_stained_glass", + Block::Terracotta => "minecraft:terracotta", + Block::WhiteTerracotta => "minecraft:white_terracotta", + Block::OrangeTerracotta => "minecraft:orange_terracotta", + Block::MagentaTerracotta => "minecraft:magenta_terracotta", + Block::LightBlueTerracotta => "minecraft:light_blue_terracotta", + Block::YellowTerracotta => "minecraft:yellow_terracotta", + Block::LimeTerracotta => "minecraft:lime_terracotta", + Block::PinkTerracotta => "minecraft:pink_terracotta", + Block::GrayTerracotta => "minecraft:gray_terracotta", + Block::LightGrayTerracotta => "minecraft:light_gray_terracotta", + Block::CyanTerracotta => "minecraft:cyan_terracotta", + Block::PurpleTerracotta => "minecraft:purple_terracotta", + Block::BlueTerracotta => "minecraft:blue_terracotta", + Block::BrownTerracotta => "minecraft:brown_terracotta", + Block::GreenTerracotta => "minecraft:green_terracotta", + Block::RedTerracotta => "minecraft:red_terracotta", + Block::BlackTerracotta => "minecraft:black_terracotta", + Block::WhiteWool => "minecraft:white_wool", + Block::OrangeWool => "minecraft:orange_wool", + Block::MagentaWool => "minecraft:magenta_wool", + Block::LightBlueWool => "minecraft:light_blue_wool", + Block::YellowWool => "minecraft:yellow_wool", + Block::LimeWool => "minecraft:lime_wool", + Block::PinkWool => "minecraft:pink_wool", + Block::GrayWool => "minecraft:gray_wool", + Block::LightGrayWool => "minecraft:light_gray_wool", + Block::CyanWool => "minecraft:cyan_wool", + Block::PurpleWool => "minecraft:purple_wool", + Block::BlueWool => "minecraft:blue_wool", + Block::BrownWool => "minecraft:brown_wool", + Block::GreenWool => "minecraft:green_wool", + Block::RedWool => "minecraft:red_wool", + Block::BlackWool => "minecraft:black_wool", + Block::IronTrapdoor { .. } => "minecraft:iron_trapdoor", + Block::NoteBlock { .. } => "minecraft:note_block", + Block::Clay => "minecraft:clay", + Block::GoldBlock => "minecraft:gold_block", + Block::PackedIce => "minecraft:packed_ice", + Block::BoneBlock { .. } => "minecraft:bone_block", + Block::IronBlock => "minecraft:iron_block", + Block::SoulSand => "minecraft:soul_sand", + Block::Pumpkin => "minecraft:pumpkin", + Block::EmeraldBlock => "minecraft:emerald_block", + Block::HayBlock { .. } => "minecraft:hay_block", + Block::Sand => "minecraft:sand", + Block::StoneBricks => "minecraft:stone_bricks", + Block::EndPortalFrame { .. } => "minecraft:end_portal_frame", + } + } + pub fn from_name(name: &str) -> Option { + Some(match name { + "minecraft:air" => Block::Air, + "minecraft:stone" => Block::Stone, + "minecraft:glass" => Block::Glass, + "minecraft:glowstone" => Block::Glowstone, + "minecraft:redstone_wire" => Block::RedstoneWire(RedstoneWire { + east: RedstoneWireSide::None, + north: RedstoneWireSide::None, + power: 0, + south: RedstoneWireSide::None, + west: RedstoneWireSide::None, + }), + "minecraft:oak_wall_sign" => Block::OakWallSign { + facing: BlockDirection::North, + waterlogged: false, + }, + "minecraft:spruce_wall_sign" => Block::SpruceWallSign { + facing: BlockDirection::North, + waterlogged: false, + }, + "minecraft:birch_wall_sign" => Block::BirchWallSign { + facing: BlockDirection::North, + waterlogged: false, + }, + "minecraft:acacia_wall_sign" => Block::AcaciaWallSign { + facing: BlockDirection::North, + waterlogged: false, + }, + "minecraft:jungle_wall_sign" => Block::JungleWallSign { + facing: BlockDirection::North, + waterlogged: false, + }, + "minecraft:dark_oak_wall_sign" => Block::DarkOakWallSign { + facing: BlockDirection::North, + waterlogged: false, + }, + "minecraft:crimson_wall_sign" => Block::CrimsonWallSign { + facing: BlockDirection::North, + waterlogged: false, + }, + "minecraft:warped_wall_sign" => Block::WarpedWallSign { + facing: BlockDirection::North, + waterlogged: false, + }, + "minecraft:oak_sign" => Block::OakSign { + rotation: 0, + waterlogged: false, + }, + "minecraft:spruce_sign" => Block::SpruceSign { + rotation: 0, + waterlogged: false, + }, + "minecraft:birch_sign" => Block::BirchSign { + rotation: 0, + waterlogged: false, + }, + "minecraft:acacia_sign" => Block::AcaciaSign { + rotation: 0, + waterlogged: false, + }, + "minecraft:jungle_sign" => Block::JungleSign { + rotation: 0, + waterlogged: false, + }, + "minecraft:dark_oak_sign" => Block::DarkOakSign { + rotation: 0, + waterlogged: false, + }, + "minecraft:crimson_sign" => Block::CrimsonSign { + rotation: 0, + waterlogged: false, + }, + "minecraft:warped_sign" => Block::WarpedSign { + rotation: 0, + waterlogged: false, + }, + "minecraft:lever" => Block::Lever { + face: LeverFace::Wall, + facing: BlockDirection::North, + powered: false, + }, + "minecraft:stone_button" => Block::StoneButton { + face: LeverFace::Wall, + facing: BlockDirection::North, + powered: false, + }, + "minecraft:redstone_torch" => Block::RedstoneTorch { lit: true }, + "minecraft:redstone_wall_torch" => Block::RedstoneWallTorch { + facing: BlockDirection::North, + lit: true, + }, + "minecraft:repeater" => Block::Repeater(Repeater { + delay: 1, + facing: BlockDirection::North, + locked: false, + powered: false, + }), + "minecraft:redstone_lamp" => Block::RedstoneLamp { lit: false }, + "minecraft:tripwire_hook" => Block::TripwireHook { + attached: false, + facing: BlockDirection::North, + powered: false, + }, + "minecraft:comparator" => Block::Comparator(Comparator { + facing: BlockDirection::North, + mode: ComparatorMode::Compare, + powered: false, + }), + "minecraft:redstone_block" => Block::RedstoneBlock, + "minecraft:observer" => Block::Observer { + facing: BlockFacing::South, + powered: false, + }, + "minecraft:sea_pickle" => Block::SeaPickle { + pickles: 1, + waterlogged: true, + }, + "minecraft:target" => Block::Target { power: 0 }, + "minecraft:stone_pressure_plate" => Block::StonePressurePlate { powered: false }, + "minecraft:cake" => Block::Cake { bites: 0 }, + "minecraft:barrel" => Block::Barrel { + facing: BlockFacing::North, + open: false, + }, + "minecraft:hopper" => Block::Hopper { + enabled: true, + facing: HopperFacing::Down, + }, + "minecraft:sandstone" => Block::Sandstone, + "minecraft:coal_block" => Block::CoalBlock, + "minecraft:furnace" => Block::Furnace { + facing: BlockDirection::North, + lit: false, + }, + "minecraft:quartz_block" => Block::QuartzBlock, + "minecraft:smooth_quartz" => Block::SmoothQuartz, + "minecraft:smooth_stone_slab" => Block::SmoothStoneSlab { + ty: SlabType::Bottom, + waterlogged: false, + }, + "minecraft:quartz_slab" => Block::QuartzSlab { + ty: SlabType::Bottom, + waterlogged: false, + }, + "minecraft:cauldron" => Block::Cauldron, + "minecraft:water_cauldron" => Block::WaterCauldron { level: 1 }, + "minecraft:composter" => Block::Composter { level: 0 }, + "minecraft:white_concrete" => Block::WhiteConcrete, + "minecraft:orange_concrete" => Block::OrangeConcrete, + "minecraft:magenta_concrete" => Block::MagentaConcrete, + "minecraft:light_blue_concrete" => Block::LightBlueConcrete, + "minecraft:yellow_concrete" => Block::YellowConcrete, + "minecraft:lime_concrete" => Block::LimeConcrete, + "minecraft:pink_concrete" => Block::PinkConcrete, + "minecraft:gray_concrete" => Block::GrayConcrete, + "minecraft:light_gray_concrete" => Block::LightGrayConcrete, + "minecraft:cyan_concrete" => Block::CyanConcrete, + "minecraft:purple_concrete" => Block::PurpleConcrete, + "minecraft:blue_concrete" => Block::BlueConcrete, + "minecraft:brown_concrete" => Block::BrownConcrete, + "minecraft:green_concrete" => Block::GreenConcrete, + "minecraft:red_concrete" => Block::RedConcrete, + "minecraft:black_concrete" => Block::BlackConcrete, + "minecraft:white_stained_glass" => Block::WhiteStainedGlass, + "minecraft:orange_stained_glass" => Block::OrangeStainedGlass, + "minecraft:magenta_stained_glass" => Block::MagentaStainedGlass, + "minecraft:light_blue_stained_glass" => Block::LightBlueStainedGlass, + "minecraft:yellow_stained_glass" => Block::YellowStainedGlass, + "minecraft:lime_stained_glass" => Block::LimeStainedGlass, + "minecraft:pink_stained_glass" => Block::PinkStainedGlass, + "minecraft:gray_stained_glass" => Block::GrayStainedGlass, + "minecraft:light_gray_stained_glass" => Block::LightGrayStainedGlass, + "minecraft:cyan_stained_glass" => Block::CyanStainedGlass, + "minecraft:purple_stained_glass" => Block::PurpleStainedGlass, + "minecraft:blue_stained_glass" => Block::BlueStainedGlass, + "minecraft:brown_stained_glass" => Block::BrownStainedGlass, + "minecraft:green_stained_glass" => Block::GreenStainedGlass, + "minecraft:red_stained_glass" => Block::RedStainedGlass, + "minecraft:black_stained_glass" => Block::BlackStainedGlass, + "minecraft:terracotta" => Block::Terracotta, + "minecraft:white_terracotta" => Block::WhiteTerracotta, + "minecraft:orange_terracotta" => Block::OrangeTerracotta, + "minecraft:magenta_terracotta" => Block::MagentaTerracotta, + "minecraft:light_blue_terracotta" => Block::LightBlueTerracotta, + "minecraft:yellow_terracotta" => Block::YellowTerracotta, + "minecraft:lime_terracotta" => Block::LimeTerracotta, + "minecraft:pink_terracotta" => Block::PinkTerracotta, + "minecraft:gray_terracotta" => Block::GrayTerracotta, + "minecraft:light_gray_terracotta" => Block::LightGrayTerracotta, + "minecraft:cyan_terracotta" => Block::CyanTerracotta, + "minecraft:purple_terracotta" => Block::PurpleTerracotta, + "minecraft:blue_terracotta" => Block::BlueTerracotta, + "minecraft:brown_terracotta" => Block::BrownTerracotta, + "minecraft:green_terracotta" => Block::GreenTerracotta, + "minecraft:red_terracotta" => Block::RedTerracotta, + "minecraft:black_terracotta" => Block::BlackTerracotta, + "minecraft:white_wool" => Block::WhiteWool, + "minecraft:orange_wool" => Block::OrangeWool, + "minecraft:magenta_wool" => Block::MagentaWool, + "minecraft:light_blue_wool" => Block::LightBlueWool, + "minecraft:yellow_wool" => Block::YellowWool, + "minecraft:lime_wool" => Block::LimeWool, + "minecraft:pink_wool" => Block::PinkWool, + "minecraft:gray_wool" => Block::GrayWool, + "minecraft:light_gray_wool" => Block::LightGrayWool, + "minecraft:cyan_wool" => Block::CyanWool, + "minecraft:purple_wool" => Block::PurpleWool, + "minecraft:blue_wool" => Block::BlueWool, + "minecraft:brown_wool" => Block::BrownWool, + "minecraft:green_wool" => Block::GreenWool, + "minecraft:red_wool" => Block::RedWool, + "minecraft:black_wool" => Block::BlackWool, + "minecraft:iron_trapdoor" => Block::IronTrapdoor { + facing: BlockDirection::North, + half: TrapdoorHalf::Bottom, + open: false, + powered: false, + waterlogged: false, + }, + "minecraft:note_block" => Block::NoteBlock { + instrument: Instrument::Harp, + note: 0, + powered: false, + }, + "minecraft:clay" => Block::Clay, + "minecraft:gold_block" => Block::GoldBlock, + "minecraft:packed_ice" => Block::PackedIce, + "minecraft:bone_block" => Block::BoneBlock { axis: BlockAxis::Y }, + "minecraft:iron_block" => Block::IronBlock, + "minecraft:soul_sand" => Block::SoulSand, + "minecraft:pumpkin" => Block::Pumpkin, + "minecraft:emerald_block" => Block::EmeraldBlock, + "minecraft:hay_block" => Block::HayBlock { axis: BlockAxis::Y }, + "minecraft:sand" => Block::Sand, + "minecraft:stone_bricks" => Block::StoneBricks, + "minecraft:end_portal_frame" => Block::EndPortalFrame { + eye: false, + facing: BlockDirection::North, + }, + _ => return None, + }) + } + pub fn is_solid(self) -> bool { + match self { + Block::Stone => true, + Block::RedstoneLamp { .. } => true, + Block::Target { .. } => true, + Block::Barrel { .. } => true, + Block::Sandstone => true, + Block::CoalBlock => true, + Block::Furnace { .. } => true, + Block::QuartzBlock => true, + Block::SmoothQuartz => true, + Block::WhiteConcrete => true, + Block::OrangeConcrete => true, + Block::MagentaConcrete => true, + Block::LightBlueConcrete => true, + Block::YellowConcrete => true, + Block::LimeConcrete => true, + Block::PinkConcrete => true, + Block::GrayConcrete => true, + Block::LightGrayConcrete => true, + Block::CyanConcrete => true, + Block::PurpleConcrete => true, + Block::BlueConcrete => true, + Block::BrownConcrete => true, + Block::GreenConcrete => true, + Block::RedConcrete => true, + Block::BlackConcrete => true, + Block::Terracotta => true, + Block::WhiteTerracotta => true, + Block::OrangeTerracotta => true, + Block::MagentaTerracotta => true, + Block::LightBlueTerracotta => true, + Block::YellowTerracotta => true, + Block::LimeTerracotta => true, + Block::PinkTerracotta => true, + Block::GrayTerracotta => true, + Block::LightGrayTerracotta => true, + Block::CyanTerracotta => true, + Block::PurpleTerracotta => true, + Block::BlueTerracotta => true, + Block::BrownTerracotta => true, + Block::GreenTerracotta => true, + Block::RedTerracotta => true, + Block::BlackTerracotta => true, + Block::WhiteWool => true, + Block::OrangeWool => true, + Block::MagentaWool => true, + Block::LightBlueWool => true, + Block::YellowWool => true, + Block::LimeWool => true, + Block::PinkWool => true, + Block::GrayWool => true, + Block::LightGrayWool => true, + Block::CyanWool => true, + Block::PurpleWool => true, + Block::BlueWool => true, + Block::BrownWool => true, + Block::GreenWool => true, + Block::RedWool => true, + Block::BlackWool => true, + Block::IronTrapdoor { .. } => true, + Block::NoteBlock { .. } => true, + Block::Clay => true, + Block::GoldBlock => true, + Block::PackedIce => true, + Block::BoneBlock { .. } => true, + Block::IronBlock => true, + Block::SoulSand => true, + Block::Pumpkin => true, + Block::EmeraldBlock => true, + Block::HayBlock { .. } => true, + Block::Sand => true, + Block::StoneBricks => true, + Block::EndPortalFrame { .. } => true, + _ => false, + } + } + pub fn is_cube(self) -> bool { + match self { + Block::Stone => true, + Block::Glass => true, + Block::Glowstone => true, + Block::RedstoneLamp { .. } => true, + Block::RedstoneBlock => true, + Block::Target { .. } => true, + Block::Barrel { .. } => true, + Block::Hopper { .. } => true, + Block::Sandstone => true, + Block::CoalBlock => true, + Block::Furnace { .. } => true, + Block::QuartzBlock => true, + Block::SmoothQuartz => true, + Block::Composter { .. } => true, + Block::WhiteConcrete => true, + Block::OrangeConcrete => true, + Block::MagentaConcrete => true, + Block::LightBlueConcrete => true, + Block::YellowConcrete => true, + Block::LimeConcrete => true, + Block::PinkConcrete => true, + Block::GrayConcrete => true, + Block::LightGrayConcrete => true, + Block::CyanConcrete => true, + Block::PurpleConcrete => true, + Block::BlueConcrete => true, + Block::BrownConcrete => true, + Block::GreenConcrete => true, + Block::RedConcrete => true, + Block::BlackConcrete => true, + Block::WhiteStainedGlass => true, + Block::OrangeStainedGlass => true, + Block::MagentaStainedGlass => true, + Block::LightBlueStainedGlass => true, + Block::YellowStainedGlass => true, + Block::LimeStainedGlass => true, + Block::PinkStainedGlass => true, + Block::GrayStainedGlass => true, + Block::LightGrayStainedGlass => true, + Block::CyanStainedGlass => true, + Block::PurpleStainedGlass => true, + Block::BlueStainedGlass => true, + Block::BrownStainedGlass => true, + Block::GreenStainedGlass => true, + Block::RedStainedGlass => true, + Block::BlackStainedGlass => true, + Block::Terracotta => true, + Block::WhiteTerracotta => true, + Block::OrangeTerracotta => true, + Block::MagentaTerracotta => true, + Block::LightBlueTerracotta => true, + Block::YellowTerracotta => true, + Block::LimeTerracotta => true, + Block::PinkTerracotta => true, + Block::GrayTerracotta => true, + Block::LightGrayTerracotta => true, + Block::CyanTerracotta => true, + Block::PurpleTerracotta => true, + Block::BlueTerracotta => true, + Block::BrownTerracotta => true, + Block::GreenTerracotta => true, + Block::RedTerracotta => true, + Block::BlackTerracotta => true, + Block::WhiteWool => true, + Block::OrangeWool => true, + Block::MagentaWool => true, + Block::LightBlueWool => true, + Block::YellowWool => true, + Block::LimeWool => true, + Block::PinkWool => true, + Block::GrayWool => true, + Block::LightGrayWool => true, + Block::CyanWool => true, + Block::PurpleWool => true, + Block::BlueWool => true, + Block::BrownWool => true, + Block::GreenWool => true, + Block::RedWool => true, + Block::BlackWool => true, + Block::IronTrapdoor { .. } => true, + Block::NoteBlock { .. } => true, + Block::Clay => true, + Block::GoldBlock => true, + Block::PackedIce => true, + Block::BoneBlock { .. } => true, + Block::IronBlock => true, + Block::SoulSand => true, + Block::Pumpkin => true, + Block::EmeraldBlock => true, + Block::HayBlock { .. } => true, + Block::Sand => true, + Block::StoneBricks => true, + Block::EndPortalFrame { .. } => true, + _ => false, + } + } + pub fn is_transparent(self) -> bool { + match self { + Block::Glass => true, + Block::Glowstone => true, + Block::RedstoneBlock => true, + Block::Hopper { .. } => true, + Block::Cauldron => true, + Block::WaterCauldron { .. } => true, + Block::Composter { .. } => true, + Block::WhiteStainedGlass => true, + Block::OrangeStainedGlass => true, + Block::MagentaStainedGlass => true, + Block::LightBlueStainedGlass => true, + Block::YellowStainedGlass => true, + Block::LimeStainedGlass => true, + Block::PinkStainedGlass => true, + Block::GrayStainedGlass => true, + Block::LightGrayStainedGlass => true, + Block::CyanStainedGlass => true, + Block::PurpleStainedGlass => true, + Block::BlueStainedGlass => true, + Block::BrownStainedGlass => true, + Block::GreenStainedGlass => true, + Block::RedStainedGlass => true, + Block::BlackStainedGlass => true, + _ => false, + } + } + pub fn set_properties(&mut self, props: HashMap<&str, &str>) { + match self { + Block::Air => {} + Block::Stone => {} + Block::Glass => {} + Block::Glowstone => {} + Block::RedstoneWire(RedstoneWire { + east, + north, + power, + south, + west, + }) => { + ::decode(east, &props, "east"); + ::decode(north, &props, "north"); + ::decode(power, &props, "power"); + ::decode(south, &props, "south"); + ::decode(west, &props, "west"); + } + Block::OakWallSign { + facing, + waterlogged, + } => { + ::decode(facing, &props, "facing"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::SpruceWallSign { + facing, + waterlogged, + } => { + ::decode(facing, &props, "facing"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::BirchWallSign { + facing, + waterlogged, + } => { + ::decode(facing, &props, "facing"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::AcaciaWallSign { + facing, + waterlogged, + } => { + ::decode(facing, &props, "facing"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::JungleWallSign { + facing, + waterlogged, + } => { + ::decode(facing, &props, "facing"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::DarkOakWallSign { + facing, + waterlogged, + } => { + ::decode(facing, &props, "facing"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::CrimsonWallSign { + facing, + waterlogged, + } => { + ::decode(facing, &props, "facing"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::WarpedWallSign { + facing, + waterlogged, + } => { + ::decode(facing, &props, "facing"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::OakSign { + rotation, + waterlogged, + } => { + ::decode(rotation, &props, "rotation"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::SpruceSign { + rotation, + waterlogged, + } => { + ::decode(rotation, &props, "rotation"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::BirchSign { + rotation, + waterlogged, + } => { + ::decode(rotation, &props, "rotation"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::AcaciaSign { + rotation, + waterlogged, + } => { + ::decode(rotation, &props, "rotation"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::JungleSign { + rotation, + waterlogged, + } => { + ::decode(rotation, &props, "rotation"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::DarkOakSign { + rotation, + waterlogged, + } => { + ::decode(rotation, &props, "rotation"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::CrimsonSign { + rotation, + waterlogged, + } => { + ::decode(rotation, &props, "rotation"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::WarpedSign { + rotation, + waterlogged, + } => { + ::decode(rotation, &props, "rotation"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::Lever { + face, + facing, + powered, + } => { + ::decode(face, &props, "face"); + ::decode(facing, &props, "facing"); + ::decode(powered, &props, "powered"); + } + Block::StoneButton { + face, + facing, + powered, + } => { + ::decode(face, &props, "face"); + ::decode(facing, &props, "facing"); + ::decode(powered, &props, "powered"); + } + Block::RedstoneTorch { lit } => { + ::decode(lit, &props, "lit"); + } + Block::RedstoneWallTorch { facing, lit } => { + ::decode(facing, &props, "facing"); + ::decode(lit, &props, "lit"); + } + Block::Repeater(Repeater { + delay, + facing, + locked, + powered, + }) => { + ::decode(delay, &props, "delay"); + ::decode(facing, &props, "facing"); + ::decode(locked, &props, "locked"); + ::decode(powered, &props, "powered"); + } + Block::RedstoneLamp { lit } => { + ::decode(lit, &props, "lit"); + } + Block::TripwireHook { + attached, + facing, + powered, + } => { + ::decode(attached, &props, "attached"); + ::decode(facing, &props, "facing"); + ::decode(powered, &props, "powered"); + } + Block::Comparator(Comparator { + facing, + mode, + powered, + }) => { + ::decode(facing, &props, "facing"); + ::decode(mode, &props, "mode"); + ::decode(powered, &props, "powered"); + } + Block::RedstoneBlock => {} + Block::Observer { facing, powered } => { + ::decode(facing, &props, "facing"); + ::decode(powered, &props, "powered"); + } + Block::SeaPickle { + pickles, + waterlogged, + } => { + ::decode(pickles, &props, "pickles"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::Target { power } => { + ::decode(power, &props, "power"); + } + Block::StonePressurePlate { powered } => { + ::decode(powered, &props, "powered"); + } + Block::Cake { bites } => { + ::decode(bites, &props, "bites"); + } + Block::Barrel { facing, open } => { + ::decode(facing, &props, "facing"); + ::decode(open, &props, "open"); + } + Block::Hopper { enabled, facing } => { + ::decode(enabled, &props, "enabled"); + ::decode(facing, &props, "facing"); + } + Block::Sandstone => {} + Block::CoalBlock => {} + Block::Furnace { facing, lit } => { + ::decode(facing, &props, "facing"); + ::decode(lit, &props, "lit"); + } + Block::QuartzBlock => {} + Block::SmoothQuartz => {} + Block::SmoothStoneSlab { ty, waterlogged } => { + ::decode(ty, &props, "type"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::QuartzSlab { ty, waterlogged } => { + ::decode(ty, &props, "type"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::Cauldron => {} + Block::WaterCauldron { level } => { + ::decode(level, &props, "level"); + } + Block::Composter { level } => { + ::decode(level, &props, "level"); + } + Block::WhiteConcrete => {} + Block::OrangeConcrete => {} + Block::MagentaConcrete => {} + Block::LightBlueConcrete => {} + Block::YellowConcrete => {} + Block::LimeConcrete => {} + Block::PinkConcrete => {} + Block::GrayConcrete => {} + Block::LightGrayConcrete => {} + Block::CyanConcrete => {} + Block::PurpleConcrete => {} + Block::BlueConcrete => {} + Block::BrownConcrete => {} + Block::GreenConcrete => {} + Block::RedConcrete => {} + Block::BlackConcrete => {} + Block::WhiteStainedGlass => {} + Block::OrangeStainedGlass => {} + Block::MagentaStainedGlass => {} + Block::LightBlueStainedGlass => {} + Block::YellowStainedGlass => {} + Block::LimeStainedGlass => {} + Block::PinkStainedGlass => {} + Block::GrayStainedGlass => {} + Block::LightGrayStainedGlass => {} + Block::CyanStainedGlass => {} + Block::PurpleStainedGlass => {} + Block::BlueStainedGlass => {} + Block::BrownStainedGlass => {} + Block::GreenStainedGlass => {} + Block::RedStainedGlass => {} + Block::BlackStainedGlass => {} + Block::Terracotta => {} + Block::WhiteTerracotta => {} + Block::OrangeTerracotta => {} + Block::MagentaTerracotta => {} + Block::LightBlueTerracotta => {} + Block::YellowTerracotta => {} + Block::LimeTerracotta => {} + Block::PinkTerracotta => {} + Block::GrayTerracotta => {} + Block::LightGrayTerracotta => {} + Block::CyanTerracotta => {} + Block::PurpleTerracotta => {} + Block::BlueTerracotta => {} + Block::BrownTerracotta => {} + Block::GreenTerracotta => {} + Block::RedTerracotta => {} + Block::BlackTerracotta => {} + Block::WhiteWool => {} + Block::OrangeWool => {} + Block::MagentaWool => {} + Block::LightBlueWool => {} + Block::YellowWool => {} + Block::LimeWool => {} + Block::PinkWool => {} + Block::GrayWool => {} + Block::LightGrayWool => {} + Block::CyanWool => {} + Block::PurpleWool => {} + Block::BlueWool => {} + Block::BrownWool => {} + Block::GreenWool => {} + Block::RedWool => {} + Block::BlackWool => {} + Block::IronTrapdoor { + facing, + half, + open, + powered, + waterlogged, + } => { + ::decode(facing, &props, "facing"); + ::decode(half, &props, "half"); + ::decode(open, &props, "open"); + ::decode(powered, &props, "powered"); + ::decode(waterlogged, &props, "waterlogged"); + } + Block::NoteBlock { + instrument, + note, + powered, + } => { + ::decode(instrument, &props, "instrument"); + ::decode(note, &props, "note"); + ::decode(powered, &props, "powered"); + } + Block::Clay => {} + Block::GoldBlock => {} + Block::PackedIce => {} + Block::BoneBlock { axis } => { + ::decode(axis, &props, "axis"); + } + Block::IronBlock => {} + Block::SoulSand => {} + Block::Pumpkin => {} + Block::EmeraldBlock => {} + Block::HayBlock { axis } => { + ::decode(axis, &props, "axis"); + } + Block::Sand => {} + Block::StoneBricks => {} + Block::EndPortalFrame { eye, facing } => { + ::decode(eye, &props, "eye"); + ::decode(facing, &props, "facing"); + } + } + } + pub fn properties(&self) -> HashMap<&'static str, String> { + let mut props = HashMap::new(); + match self { + Block::Air => {} + Block::Stone => {} + Block::Glass => {} + Block::Glowstone => {} + Block::RedstoneWire(RedstoneWire { + east, + north, + power, + south, + west, + }) => { + ::encode(*east, &mut props, "east"); + ::encode(*north, &mut props, "north"); + ::encode(*power, &mut props, "power"); + ::encode(*south, &mut props, "south"); + ::encode(*west, &mut props, "west"); + } + Block::OakWallSign { + facing, + waterlogged, + } => { + ::encode(*facing, &mut props, "facing"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::SpruceWallSign { + facing, + waterlogged, + } => { + ::encode(*facing, &mut props, "facing"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::BirchWallSign { + facing, + waterlogged, + } => { + ::encode(*facing, &mut props, "facing"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::AcaciaWallSign { + facing, + waterlogged, + } => { + ::encode(*facing, &mut props, "facing"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::JungleWallSign { + facing, + waterlogged, + } => { + ::encode(*facing, &mut props, "facing"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::DarkOakWallSign { + facing, + waterlogged, + } => { + ::encode(*facing, &mut props, "facing"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::CrimsonWallSign { + facing, + waterlogged, + } => { + ::encode(*facing, &mut props, "facing"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::WarpedWallSign { + facing, + waterlogged, + } => { + ::encode(*facing, &mut props, "facing"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::OakSign { + rotation, + waterlogged, + } => { + ::encode(*rotation, &mut props, "rotation"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::SpruceSign { + rotation, + waterlogged, + } => { + ::encode(*rotation, &mut props, "rotation"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::BirchSign { + rotation, + waterlogged, + } => { + ::encode(*rotation, &mut props, "rotation"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::AcaciaSign { + rotation, + waterlogged, + } => { + ::encode(*rotation, &mut props, "rotation"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::JungleSign { + rotation, + waterlogged, + } => { + ::encode(*rotation, &mut props, "rotation"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::DarkOakSign { + rotation, + waterlogged, + } => { + ::encode(*rotation, &mut props, "rotation"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::CrimsonSign { + rotation, + waterlogged, + } => { + ::encode(*rotation, &mut props, "rotation"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::WarpedSign { + rotation, + waterlogged, + } => { + ::encode(*rotation, &mut props, "rotation"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::Lever { + face, + facing, + powered, + } => { + ::encode(*face, &mut props, "face"); + ::encode(*facing, &mut props, "facing"); + ::encode(*powered, &mut props, "powered"); + } + Block::StoneButton { + face, + facing, + powered, + } => { + ::encode(*face, &mut props, "face"); + ::encode(*facing, &mut props, "facing"); + ::encode(*powered, &mut props, "powered"); + } + Block::RedstoneTorch { lit } => { + ::encode(*lit, &mut props, "lit"); + } + Block::RedstoneWallTorch { facing, lit } => { + ::encode(*facing, &mut props, "facing"); + ::encode(*lit, &mut props, "lit"); + } + Block::Repeater(Repeater { + delay, + facing, + locked, + powered, + }) => { + ::encode(*delay, &mut props, "delay"); + ::encode(*facing, &mut props, "facing"); + ::encode(*locked, &mut props, "locked"); + ::encode(*powered, &mut props, "powered"); + } + Block::RedstoneLamp { lit } => { + ::encode(*lit, &mut props, "lit"); + } + Block::TripwireHook { + attached, + facing, + powered, + } => { + ::encode(*attached, &mut props, "attached"); + ::encode(*facing, &mut props, "facing"); + ::encode(*powered, &mut props, "powered"); + } + Block::Comparator(Comparator { + facing, + mode, + powered, + }) => { + ::encode(*facing, &mut props, "facing"); + ::encode(*mode, &mut props, "mode"); + ::encode(*powered, &mut props, "powered"); + } + Block::RedstoneBlock => {} + Block::Observer { facing, powered } => { + ::encode(*facing, &mut props, "facing"); + ::encode(*powered, &mut props, "powered"); + } + Block::SeaPickle { + pickles, + waterlogged, + } => { + ::encode(*pickles, &mut props, "pickles"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::Target { power } => { + ::encode(*power, &mut props, "power"); + } + Block::StonePressurePlate { powered } => { + ::encode(*powered, &mut props, "powered"); + } + Block::Cake { bites } => { + ::encode(*bites, &mut props, "bites"); + } + Block::Barrel { facing, open } => { + ::encode(*facing, &mut props, "facing"); + ::encode(*open, &mut props, "open"); + } + Block::Hopper { enabled, facing } => { + ::encode(*enabled, &mut props, "enabled"); + ::encode(*facing, &mut props, "facing"); + } + Block::Sandstone => {} + Block::CoalBlock => {} + Block::Furnace { facing, lit } => { + ::encode(*facing, &mut props, "facing"); + ::encode(*lit, &mut props, "lit"); + } + Block::QuartzBlock => {} + Block::SmoothQuartz => {} + Block::SmoothStoneSlab { ty, waterlogged } => { + ::encode(*ty, &mut props, "type"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::QuartzSlab { ty, waterlogged } => { + ::encode(*ty, &mut props, "type"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::Cauldron => {} + Block::WaterCauldron { level } => { + ::encode(*level, &mut props, "level"); + } + Block::Composter { level } => { + ::encode(*level, &mut props, "level"); + } + Block::WhiteConcrete => {} + Block::OrangeConcrete => {} + Block::MagentaConcrete => {} + Block::LightBlueConcrete => {} + Block::YellowConcrete => {} + Block::LimeConcrete => {} + Block::PinkConcrete => {} + Block::GrayConcrete => {} + Block::LightGrayConcrete => {} + Block::CyanConcrete => {} + Block::PurpleConcrete => {} + Block::BlueConcrete => {} + Block::BrownConcrete => {} + Block::GreenConcrete => {} + Block::RedConcrete => {} + Block::BlackConcrete => {} + Block::WhiteStainedGlass => {} + Block::OrangeStainedGlass => {} + Block::MagentaStainedGlass => {} + Block::LightBlueStainedGlass => {} + Block::YellowStainedGlass => {} + Block::LimeStainedGlass => {} + Block::PinkStainedGlass => {} + Block::GrayStainedGlass => {} + Block::LightGrayStainedGlass => {} + Block::CyanStainedGlass => {} + Block::PurpleStainedGlass => {} + Block::BlueStainedGlass => {} + Block::BrownStainedGlass => {} + Block::GreenStainedGlass => {} + Block::RedStainedGlass => {} + Block::BlackStainedGlass => {} + Block::Terracotta => {} + Block::WhiteTerracotta => {} + Block::OrangeTerracotta => {} + Block::MagentaTerracotta => {} + Block::LightBlueTerracotta => {} + Block::YellowTerracotta => {} + Block::LimeTerracotta => {} + Block::PinkTerracotta => {} + Block::GrayTerracotta => {} + Block::LightGrayTerracotta => {} + Block::CyanTerracotta => {} + Block::PurpleTerracotta => {} + Block::BlueTerracotta => {} + Block::BrownTerracotta => {} + Block::GreenTerracotta => {} + Block::RedTerracotta => {} + Block::BlackTerracotta => {} + Block::WhiteWool => {} + Block::OrangeWool => {} + Block::MagentaWool => {} + Block::LightBlueWool => {} + Block::YellowWool => {} + Block::LimeWool => {} + Block::PinkWool => {} + Block::GrayWool => {} + Block::LightGrayWool => {} + Block::CyanWool => {} + Block::PurpleWool => {} + Block::BlueWool => {} + Block::BrownWool => {} + Block::GreenWool => {} + Block::RedWool => {} + Block::BlackWool => {} + Block::IronTrapdoor { + facing, + half, + open, + powered, + waterlogged, + } => { + ::encode(*facing, &mut props, "facing"); + ::encode(*half, &mut props, "half"); + ::encode(*open, &mut props, "open"); + ::encode(*powered, &mut props, "powered"); + ::encode(*waterlogged, &mut props, "waterlogged"); + } + Block::NoteBlock { + instrument, + note, + powered, + } => { + ::encode(*instrument, &mut props, "instrument"); + ::encode(*note, &mut props, "note"); + ::encode(*powered, &mut props, "powered"); + } + Block::Clay => {} + Block::GoldBlock => {} + Block::PackedIce => {} + Block::BoneBlock { axis } => { + ::encode(*axis, &mut props, "axis"); + } + Block::IronBlock => {} + Block::SoulSand => {} + Block::Pumpkin => {} + Block::EmeraldBlock => {} + Block::HayBlock { axis } => { + ::encode(*axis, &mut props, "axis"); + } + Block::Sand => {} + Block::StoneBricks => {} + Block::EndPortalFrame { eye, facing } => { + ::encode(*eye, &mut props, "eye"); + ::encode(*facing, &mut props, "facing"); + } + } + props + } + pub fn rotate(&mut self, amt: RotateAmt) { + match self { + Block::Air => {} + Block::Stone => {} + Block::Glass => {} + Block::Glowstone => {} + Block::RedstoneWire(RedstoneWire { + east, + north, + power, + south, + west, + }) => self.complex_rotate(amt), + Block::OakWallSign { + facing, + waterlogged, + } => { + ::rotate(facing, amt); + ::rotate(waterlogged, amt); + } + Block::SpruceWallSign { + facing, + waterlogged, + } => { + ::rotate(facing, amt); + ::rotate(waterlogged, amt); + } + Block::BirchWallSign { + facing, + waterlogged, + } => { + ::rotate(facing, amt); + ::rotate(waterlogged, amt); + } + Block::AcaciaWallSign { + facing, + waterlogged, + } => { + ::rotate(facing, amt); + ::rotate(waterlogged, amt); + } + Block::JungleWallSign { + facing, + waterlogged, + } => { + ::rotate(facing, amt); + ::rotate(waterlogged, amt); + } + Block::DarkOakWallSign { + facing, + waterlogged, + } => { + ::rotate(facing, amt); + ::rotate(waterlogged, amt); + } + Block::CrimsonWallSign { + facing, + waterlogged, + } => { + ::rotate(facing, amt); + ::rotate(waterlogged, amt); + } + Block::WarpedWallSign { + facing, + waterlogged, + } => { + ::rotate(facing, amt); + ::rotate(waterlogged, amt); + } + Block::OakSign { + rotation, + waterlogged, + } => { + ::rotate(rotation, amt); + ::rotate(waterlogged, amt); + } + Block::SpruceSign { + rotation, + waterlogged, + } => { + ::rotate(rotation, amt); + ::rotate(waterlogged, amt); + } + Block::BirchSign { + rotation, + waterlogged, + } => { + ::rotate(rotation, amt); + ::rotate(waterlogged, amt); + } + Block::AcaciaSign { + rotation, + waterlogged, + } => { + ::rotate(rotation, amt); + ::rotate(waterlogged, amt); + } + Block::JungleSign { + rotation, + waterlogged, + } => { + ::rotate(rotation, amt); + ::rotate(waterlogged, amt); + } + Block::DarkOakSign { + rotation, + waterlogged, + } => { + ::rotate(rotation, amt); + ::rotate(waterlogged, amt); + } + Block::CrimsonSign { + rotation, + waterlogged, + } => { + ::rotate(rotation, amt); + ::rotate(waterlogged, amt); + } + Block::WarpedSign { + rotation, + waterlogged, + } => { + ::rotate(rotation, amt); + ::rotate(waterlogged, amt); + } + Block::Lever { + face, + facing, + powered, + } => { + ::rotate(face, amt); + ::rotate(facing, amt); + ::rotate(powered, amt); + } + Block::StoneButton { + face, + facing, + powered, + } => { + ::rotate(face, amt); + ::rotate(facing, amt); + ::rotate(powered, amt); + } + Block::RedstoneTorch { lit } => { + ::rotate(lit, amt); + } + Block::RedstoneWallTorch { facing, lit } => { + ::rotate(facing, amt); + ::rotate(lit, amt); + } + Block::Repeater(Repeater { + delay, + facing, + locked, + powered, + }) => { + ::rotate(delay, amt); + ::rotate(facing, amt); + ::rotate(locked, amt); + ::rotate(powered, amt); + } + Block::RedstoneLamp { lit } => { + ::rotate(lit, amt); + } + Block::TripwireHook { + attached, + facing, + powered, + } => { + ::rotate(attached, amt); + ::rotate(facing, amt); + ::rotate(powered, amt); + } + Block::Comparator(Comparator { + facing, + mode, + powered, + }) => { + ::rotate(facing, amt); + ::rotate(mode, amt); + ::rotate(powered, amt); + } + Block::RedstoneBlock => {} + Block::Observer { facing, powered } => { + ::rotate(facing, amt); + ::rotate(powered, amt); + } + Block::SeaPickle { + pickles, + waterlogged, + } => { + ::rotate(pickles, amt); + ::rotate(waterlogged, amt); + } + Block::Target { power } => { + ::rotate(power, amt); + } + Block::StonePressurePlate { powered } => { + ::rotate(powered, amt); + } + Block::Cake { bites } => { + ::rotate(bites, amt); + } + Block::Barrel { facing, open } => { + ::rotate(facing, amt); + ::rotate(open, amt); + } + Block::Hopper { enabled, facing } => { + ::rotate(enabled, amt); + ::rotate(facing, amt); + } + Block::Sandstone => {} + Block::CoalBlock => {} + Block::Furnace { facing, lit } => { + ::rotate(facing, amt); + ::rotate(lit, amt); + } + Block::QuartzBlock => {} + Block::SmoothQuartz => {} + Block::SmoothStoneSlab { ty, waterlogged } => { + ::rotate(ty, amt); + ::rotate(waterlogged, amt); + } + Block::QuartzSlab { ty, waterlogged } => { + ::rotate(ty, amt); + ::rotate(waterlogged, amt); + } + Block::Cauldron => {} + Block::WaterCauldron { level } => { + ::rotate(level, amt); + } + Block::Composter { level } => { + ::rotate(level, amt); + } + Block::WhiteConcrete => {} + Block::OrangeConcrete => {} + Block::MagentaConcrete => {} + Block::LightBlueConcrete => {} + Block::YellowConcrete => {} + Block::LimeConcrete => {} + Block::PinkConcrete => {} + Block::GrayConcrete => {} + Block::LightGrayConcrete => {} + Block::CyanConcrete => {} + Block::PurpleConcrete => {} + Block::BlueConcrete => {} + Block::BrownConcrete => {} + Block::GreenConcrete => {} + Block::RedConcrete => {} + Block::BlackConcrete => {} + Block::WhiteStainedGlass => {} + Block::OrangeStainedGlass => {} + Block::MagentaStainedGlass => {} + Block::LightBlueStainedGlass => {} + Block::YellowStainedGlass => {} + Block::LimeStainedGlass => {} + Block::PinkStainedGlass => {} + Block::GrayStainedGlass => {} + Block::LightGrayStainedGlass => {} + Block::CyanStainedGlass => {} + Block::PurpleStainedGlass => {} + Block::BlueStainedGlass => {} + Block::BrownStainedGlass => {} + Block::GreenStainedGlass => {} + Block::RedStainedGlass => {} + Block::BlackStainedGlass => {} + Block::Terracotta => {} + Block::WhiteTerracotta => {} + Block::OrangeTerracotta => {} + Block::MagentaTerracotta => {} + Block::LightBlueTerracotta => {} + Block::YellowTerracotta => {} + Block::LimeTerracotta => {} + Block::PinkTerracotta => {} + Block::GrayTerracotta => {} + Block::LightGrayTerracotta => {} + Block::CyanTerracotta => {} + Block::PurpleTerracotta => {} + Block::BlueTerracotta => {} + Block::BrownTerracotta => {} + Block::GreenTerracotta => {} + Block::RedTerracotta => {} + Block::BlackTerracotta => {} + Block::WhiteWool => {} + Block::OrangeWool => {} + Block::MagentaWool => {} + Block::LightBlueWool => {} + Block::YellowWool => {} + Block::LimeWool => {} + Block::PinkWool => {} + Block::GrayWool => {} + Block::LightGrayWool => {} + Block::CyanWool => {} + Block::PurpleWool => {} + Block::BlueWool => {} + Block::BrownWool => {} + Block::GreenWool => {} + Block::RedWool => {} + Block::BlackWool => {} + Block::IronTrapdoor { + facing, + half, + open, + powered, + waterlogged, + } => { + ::rotate(facing, amt); + ::rotate(half, amt); + ::rotate(open, amt); + ::rotate(powered, amt); + ::rotate(waterlogged, amt); + } + Block::NoteBlock { + instrument, + note, + powered, + } => { + ::rotate(instrument, amt); + ::rotate(note, amt); + ::rotate(powered, amt); + } + Block::Clay => {} + Block::GoldBlock => {} + Block::PackedIce => {} + Block::BoneBlock { axis } => { + ::rotate(axis, amt); + } + Block::IronBlock => {} + Block::SoulSand => {} + Block::Pumpkin => {} + Block::EmeraldBlock => {} + Block::HayBlock { axis } => { + ::rotate(axis, amt); + } + Block::Sand => {} + Block::StoneBricks => {} + Block::EndPortalFrame { eye, facing } => { + ::rotate(eye, amt); + ::rotate(facing, amt); + } + } + } + pub fn flip(&mut self, dir: FlipDirection) { + match self { + Block::Air => {} + Block::Stone => {} + Block::Glass => {} + Block::Glowstone => {} + Block::RedstoneWire(RedstoneWire { + east, + north, + power, + south, + west, + }) => self.complex_flip(dir), + Block::OakWallSign { + facing, + waterlogged, + } => { + ::flip(facing, dir); + ::flip(waterlogged, dir); + } + Block::SpruceWallSign { + facing, + waterlogged, + } => { + ::flip(facing, dir); + ::flip(waterlogged, dir); + } + Block::BirchWallSign { + facing, + waterlogged, + } => { + ::flip(facing, dir); + ::flip(waterlogged, dir); + } + Block::AcaciaWallSign { + facing, + waterlogged, + } => { + ::flip(facing, dir); + ::flip(waterlogged, dir); + } + Block::JungleWallSign { + facing, + waterlogged, + } => { + ::flip(facing, dir); + ::flip(waterlogged, dir); + } + Block::DarkOakWallSign { + facing, + waterlogged, + } => { + ::flip(facing, dir); + ::flip(waterlogged, dir); + } + Block::CrimsonWallSign { + facing, + waterlogged, + } => { + ::flip(facing, dir); + ::flip(waterlogged, dir); + } + Block::WarpedWallSign { + facing, + waterlogged, + } => { + ::flip(facing, dir); + ::flip(waterlogged, dir); + } + Block::OakSign { + rotation, + waterlogged, + } => { + ::flip(rotation, dir); + ::flip(waterlogged, dir); + } + Block::SpruceSign { + rotation, + waterlogged, + } => { + ::flip(rotation, dir); + ::flip(waterlogged, dir); + } + Block::BirchSign { + rotation, + waterlogged, + } => { + ::flip(rotation, dir); + ::flip(waterlogged, dir); + } + Block::AcaciaSign { + rotation, + waterlogged, + } => { + ::flip(rotation, dir); + ::flip(waterlogged, dir); + } + Block::JungleSign { + rotation, + waterlogged, + } => { + ::flip(rotation, dir); + ::flip(waterlogged, dir); + } + Block::DarkOakSign { + rotation, + waterlogged, + } => { + ::flip(rotation, dir); + ::flip(waterlogged, dir); + } + Block::CrimsonSign { + rotation, + waterlogged, + } => { + ::flip(rotation, dir); + ::flip(waterlogged, dir); + } + Block::WarpedSign { + rotation, + waterlogged, + } => { + ::flip(rotation, dir); + ::flip(waterlogged, dir); + } + Block::Lever { + face, + facing, + powered, + } => { + ::flip(face, dir); + ::flip(facing, dir); + ::flip(powered, dir); + } + Block::StoneButton { + face, + facing, + powered, + } => { + ::flip(face, dir); + ::flip(facing, dir); + ::flip(powered, dir); + } + Block::RedstoneTorch { lit } => { + ::flip(lit, dir); + } + Block::RedstoneWallTorch { facing, lit } => { + ::flip(facing, dir); + ::flip(lit, dir); + } + Block::Repeater(Repeater { + delay, + facing, + locked, + powered, + }) => { + ::flip(delay, dir); + ::flip(facing, dir); + ::flip(locked, dir); + ::flip(powered, dir); + } + Block::RedstoneLamp { lit } => { + ::flip(lit, dir); + } + Block::TripwireHook { + attached, + facing, + powered, + } => { + ::flip(attached, dir); + ::flip(facing, dir); + ::flip(powered, dir); + } + Block::Comparator(Comparator { + facing, + mode, + powered, + }) => { + ::flip(facing, dir); + ::flip(mode, dir); + ::flip(powered, dir); + } + Block::RedstoneBlock => {} + Block::Observer { facing, powered } => { + ::flip(facing, dir); + ::flip(powered, dir); + } + Block::SeaPickle { + pickles, + waterlogged, + } => { + ::flip(pickles, dir); + ::flip(waterlogged, dir); + } + Block::Target { power } => { + ::flip(power, dir); + } + Block::StonePressurePlate { powered } => { + ::flip(powered, dir); + } + Block::Cake { bites } => { + ::flip(bites, dir); + } + Block::Barrel { facing, open } => { + ::flip(facing, dir); + ::flip(open, dir); + } + Block::Hopper { enabled, facing } => { + ::flip(enabled, dir); + ::flip(facing, dir); + } + Block::Sandstone => {} + Block::CoalBlock => {} + Block::Furnace { facing, lit } => { + ::flip(facing, dir); + ::flip(lit, dir); + } + Block::QuartzBlock => {} + Block::SmoothQuartz => {} + Block::SmoothStoneSlab { ty, waterlogged } => { + ::flip(ty, dir); + ::flip(waterlogged, dir); + } + Block::QuartzSlab { ty, waterlogged } => { + ::flip(ty, dir); + ::flip(waterlogged, dir); + } + Block::Cauldron => {} + Block::WaterCauldron { level } => { + ::flip(level, dir); + } + Block::Composter { level } => { + ::flip(level, dir); + } + Block::WhiteConcrete => {} + Block::OrangeConcrete => {} + Block::MagentaConcrete => {} + Block::LightBlueConcrete => {} + Block::YellowConcrete => {} + Block::LimeConcrete => {} + Block::PinkConcrete => {} + Block::GrayConcrete => {} + Block::LightGrayConcrete => {} + Block::CyanConcrete => {} + Block::PurpleConcrete => {} + Block::BlueConcrete => {} + Block::BrownConcrete => {} + Block::GreenConcrete => {} + Block::RedConcrete => {} + Block::BlackConcrete => {} + Block::WhiteStainedGlass => {} + Block::OrangeStainedGlass => {} + Block::MagentaStainedGlass => {} + Block::LightBlueStainedGlass => {} + Block::YellowStainedGlass => {} + Block::LimeStainedGlass => {} + Block::PinkStainedGlass => {} + Block::GrayStainedGlass => {} + Block::LightGrayStainedGlass => {} + Block::CyanStainedGlass => {} + Block::PurpleStainedGlass => {} + Block::BlueStainedGlass => {} + Block::BrownStainedGlass => {} + Block::GreenStainedGlass => {} + Block::RedStainedGlass => {} + Block::BlackStainedGlass => {} + Block::Terracotta => {} + Block::WhiteTerracotta => {} + Block::OrangeTerracotta => {} + Block::MagentaTerracotta => {} + Block::LightBlueTerracotta => {} + Block::YellowTerracotta => {} + Block::LimeTerracotta => {} + Block::PinkTerracotta => {} + Block::GrayTerracotta => {} + Block::LightGrayTerracotta => {} + Block::CyanTerracotta => {} + Block::PurpleTerracotta => {} + Block::BlueTerracotta => {} + Block::BrownTerracotta => {} + Block::GreenTerracotta => {} + Block::RedTerracotta => {} + Block::BlackTerracotta => {} + Block::WhiteWool => {} + Block::OrangeWool => {} + Block::MagentaWool => {} + Block::LightBlueWool => {} + Block::YellowWool => {} + Block::LimeWool => {} + Block::PinkWool => {} + Block::GrayWool => {} + Block::LightGrayWool => {} + Block::CyanWool => {} + Block::PurpleWool => {} + Block::BlueWool => {} + Block::BrownWool => {} + Block::GreenWool => {} + Block::RedWool => {} + Block::BlackWool => {} + Block::IronTrapdoor { + facing, + half, + open, + powered, + waterlogged, + } => { + ::flip(facing, dir); + ::flip(half, dir); + ::flip(open, dir); + ::flip(powered, dir); + ::flip(waterlogged, dir); + } + Block::NoteBlock { + instrument, + note, + powered, + } => { + ::flip(instrument, dir); + ::flip(note, dir); + ::flip(powered, dir); + } + Block::Clay => {} + Block::GoldBlock => {} + Block::PackedIce => {} + Block::BoneBlock { axis } => { + ::flip(axis, dir); + } + Block::IronBlock => {} + Block::SoulSand => {} + Block::Pumpkin => {} + Block::EmeraldBlock => {} + Block::HayBlock { axis } => { + ::flip(axis, dir); + } + Block::Sand => {} + Block::StoneBricks => {} + Block::EndPortalFrame { eye, facing } => { + ::flip(eye, dir); + ::flip(facing, dir); + } + } + } + pub fn get_id(self) -> u32 { + match self { + Block::Air => 0, + Block::Stone => 1, + Block::Glass => 519, + Block::Glowstone => 5863, + Block::RedstoneWire(RedstoneWire { + east, + north, + power, + south, + west, + }) => { + 2978 + (east.get_id()) * 432 + + (north.get_id()) * 144 + + (power as u32 - 0) * 9 + + (south.get_id()) * 3 + + (west.get_id()) + } + Block::OakWallSign { + facing, + waterlogged, + } => 4762 + (facing.get_id()) * 2 + (!waterlogged as u32), + Block::SpruceWallSign { + facing, + waterlogged, + } => 4770 + (facing.get_id()) * 2 + (!waterlogged as u32), + Block::BirchWallSign { + facing, + waterlogged, + } => 4778 + (facing.get_id()) * 2 + (!waterlogged as u32), + Block::AcaciaWallSign { + facing, + waterlogged, + } => 4786 + (facing.get_id()) * 2 + (!waterlogged as u32), + Block::JungleWallSign { + facing, + waterlogged, + } => 4802 + (facing.get_id()) * 2 + (!waterlogged as u32), + Block::DarkOakWallSign { + facing, + waterlogged, + } => 4810 + (facing.get_id()) * 2 + (!waterlogged as u32), + Block::CrimsonWallSign { + facing, + waterlogged, + } => 19340 + (facing.get_id()) * 2 + (!waterlogged as u32), + Block::WarpedWallSign { + facing, + waterlogged, + } => 19348 + (facing.get_id()) * 2 + (!waterlogged as u32), + Block::OakSign { + rotation, + waterlogged, + } => 4302 + (rotation as u32 - 0) * 2 + (!waterlogged as u32), + Block::SpruceSign { + rotation, + waterlogged, + } => 4334 + (rotation as u32 - 0) * 2 + (!waterlogged as u32), + Block::BirchSign { + rotation, + waterlogged, + } => 4366 + (rotation as u32 - 0) * 2 + (!waterlogged as u32), + Block::AcaciaSign { + rotation, + waterlogged, + } => 4398 + (rotation as u32 - 0) * 2 + (!waterlogged as u32), + Block::JungleSign { + rotation, + waterlogged, + } => 4462 + (rotation as u32 - 0) * 2 + (!waterlogged as u32), + Block::DarkOakSign { + rotation, + waterlogged, + } => 4494 + (rotation as u32 - 0) * 2 + (!waterlogged as u32), + Block::CrimsonSign { + rotation, + waterlogged, + } => 19276 + (rotation as u32 - 0) * 2 + (!waterlogged as u32), + Block::WarpedSign { + rotation, + waterlogged, + } => 19308 + (rotation as u32 - 0) * 2 + (!waterlogged as u32), + Block::Lever { + face, + facing, + powered, + } => 5626 + (face.get_id()) * 8 + (facing.get_id()) * 2 + (!powered as u32), + Block::StoneButton { + face, + facing, + powered, + } => 5748 + (face.get_id()) * 8 + (facing.get_id()) * 2 + (!powered as u32), + Block::RedstoneTorch { lit } => 5738 + (!lit as u32), + Block::RedstoneWallTorch { facing, lit } => { + 5740 + (facing.get_id()) * 2 + (!lit as u32) + } + Block::Repeater(Repeater { + delay, + facing, + locked, + powered, + }) => { + 5881 + (delay as u32 - 1) * 16 + + (facing.get_id()) * 4 + + (!locked as u32) * 2 + + (!powered as u32) + } + Block::RedstoneLamp { lit } => 7417 + (!lit as u32), + Block::TripwireHook { + attached, + facing, + powered, + } => 7521 + (!attached as u32) * 8 + (facing.get_id()) * 2 + (!powered as u32), + Block::Comparator(Comparator { + facing, + mode, + powered, + }) => 9175 + (facing.get_id()) * 4 + (mode.get_id()) * 2 + (!powered as u32), + Block::RedstoneBlock => 9223, + Block::Observer { facing, powered } => { + 12550 + (facing.get_id()) * 2 + (!powered as u32) + } + Block::SeaPickle { + pickles, + waterlogged, + } => 12933 + (pickles as u32 - 1) * 2 + (!waterlogged as u32), + Block::Target { power } => 19381 + (power as u32 - 0), + Block::StonePressurePlate { powered } => 5650 + (!powered as u32), + Block::Cake { bites } => 5874 + (bites as u32 - 0), + Block::Barrel { facing, open } => 18408 + (facing.get_id()) * 2 + (!open as u32), + Block::Hopper { enabled, facing } => 9225 + (!enabled as u32) * 5 + (facing.get_id()), + Block::Sandstone => 535, + Block::CoalBlock => 10745, + Block::Furnace { facing, lit } => 4294 + (facing.get_id()) * 2 + (!lit as u32), + Block::QuartzBlock => 9235, + Block::SmoothQuartz => 11308, + Block::SmoothStoneSlab { ty, waterlogged } => { + 11228 + (ty.get_id()) * 2 + (!waterlogged as u32) + } + Block::QuartzSlab { ty, waterlogged } => { + 11282 + (ty.get_id()) * 2 + (!waterlogged as u32) + } + Block::Cauldron => 7398, + Block::WaterCauldron { level } => 7399 + (level as u32 - 1), + Block::Composter { level } => 19372 + (level as u32 - 0), + Block::WhiteConcrete => 12728, + Block::OrangeConcrete => 12729, + Block::MagentaConcrete => 12730, + Block::LightBlueConcrete => 12731, + Block::YellowConcrete => 12732, + Block::LimeConcrete => 12733, + Block::PinkConcrete => 12734, + Block::GrayConcrete => 12735, + Block::LightGrayConcrete => 12736, + Block::CyanConcrete => 12737, + Block::PurpleConcrete => 12738, + Block::BlueConcrete => 12739, + Block::BrownConcrete => 12740, + Block::GreenConcrete => 12741, + Block::RedConcrete => 12742, + Block::BlackConcrete => 12743, + Block::WhiteStainedGlass => 5945, + Block::OrangeStainedGlass => 5946, + Block::MagentaStainedGlass => 5947, + Block::LightBlueStainedGlass => 5948, + Block::YellowStainedGlass => 5949, + Block::LimeStainedGlass => 5950, + Block::PinkStainedGlass => 5951, + Block::GrayStainedGlass => 5952, + Block::LightGrayStainedGlass => 5953, + Block::CyanStainedGlass => 5954, + Block::PurpleStainedGlass => 5955, + Block::BlueStainedGlass => 5956, + Block::BrownStainedGlass => 5957, + Block::GreenStainedGlass => 5958, + Block::RedStainedGlass => 5959, + Block::BlackStainedGlass => 5960, + Block::Terracotta => 10744, + Block::WhiteTerracotta => 9356, + Block::OrangeTerracotta => 9357, + Block::MagentaTerracotta => 9358, + Block::LightBlueTerracotta => 9359, + Block::YellowTerracotta => 9360, + Block::LimeTerracotta => 9361, + Block::PinkTerracotta => 9362, + Block::GrayTerracotta => 9363, + Block::LightGrayTerracotta => 9364, + Block::CyanTerracotta => 9365, + Block::PurpleTerracotta => 9366, + Block::BlueTerracotta => 9367, + Block::BrownTerracotta => 9368, + Block::GreenTerracotta => 9369, + Block::RedTerracotta => 9370, + Block::BlackTerracotta => 9371, + Block::WhiteWool => 2047, + Block::OrangeWool => 2048, + Block::MagentaWool => 2049, + Block::LightBlueWool => 2050, + Block::YellowWool => 2051, + Block::LimeWool => 2052, + Block::PinkWool => 2053, + Block::GrayWool => 2054, + Block::LightGrayWool => 2055, + Block::CyanWool => 2056, + Block::PurpleWool => 2057, + Block::BlueWool => 2058, + Block::BrownWool => 2059, + Block::GreenWool => 2060, + Block::RedWool => 2061, + Block::BlackWool => 2062, + Block::IronTrapdoor { + facing, + half, + open, + powered, + waterlogged, + } => { + 10399 + + (facing.get_id()) * 16 + + (half.get_id()) * 8 + + (!open as u32) * 4 + + (!powered as u32) * 2 + + (!waterlogged as u32) + } + Block::NoteBlock { + instrument, + note, + powered, + } => 538 + (instrument.get_id()) * 50 + (note as u32 - 0) * 2 + (!powered as u32), + Block::Clay => 5798, + Block::GoldBlock => 2091, + Block::PackedIce => 10746, + Block::BoneBlock { axis } => 12546 + (axis.get_id()), + Block::IronBlock => 2092, + Block::SoulSand => 5850, + Block::Pumpkin => 6811, + Block::EmeraldBlock => 7665, + Block::HayBlock { axis } => 10725 + (axis.get_id()), + Block::Sand => 112, + Block::StoneBricks => 6537, + Block::EndPortalFrame { eye, facing } => 7407 + (!eye as u32) * 4 + (facing.get_id()), + } + } + pub fn from_id(mut id: u32) -> Block { + match id { + 0..1 => { + id -= 0; + Block::Air + } + 1..2 => { + id -= 1; + Block::Stone + } + 519..520 => { + id -= 519; + Block::Glass + } + 5863..5864 => { + id -= 5863; + Block::Glowstone + } + 2978..4274 => { + id -= 2978; + Block::RedstoneWire(RedstoneWire { + east: RedstoneWireSide::from_id(((id / 432) % 3)), + north: RedstoneWireSide::from_id(((id / 144) % 3)), + power: ((id / 9) % 16) as u8 + 0, + south: RedstoneWireSide::from_id(((id / 3) % 3)), + west: RedstoneWireSide::from_id(((id) % 3)), + }) + } + 4762..4770 => { + id -= 4762; + Block::OakWallSign { + facing: BlockDirection::from_id(((id / 2) % 4)), + waterlogged: (((id) % 2) & 1) == 0, + } + } + 4770..4778 => { + id -= 4770; + Block::SpruceWallSign { + facing: BlockDirection::from_id(((id / 2) % 4)), + waterlogged: (((id) % 2) & 1) == 0, + } + } + 4778..4786 => { + id -= 4778; + Block::BirchWallSign { + facing: BlockDirection::from_id(((id / 2) % 4)), + waterlogged: (((id) % 2) & 1) == 0, + } + } + 4786..4794 => { + id -= 4786; + Block::AcaciaWallSign { + facing: BlockDirection::from_id(((id / 2) % 4)), + waterlogged: (((id) % 2) & 1) == 0, + } + } + 4802..4810 => { + id -= 4802; + Block::JungleWallSign { + facing: BlockDirection::from_id(((id / 2) % 4)), + waterlogged: (((id) % 2) & 1) == 0, + } + } + 4810..4818 => { + id -= 4810; + Block::DarkOakWallSign { + facing: BlockDirection::from_id(((id / 2) % 4)), + waterlogged: (((id) % 2) & 1) == 0, + } + } + 19340..19348 => { + id -= 19340; + Block::CrimsonWallSign { + facing: BlockDirection::from_id(((id / 2) % 4)), + waterlogged: (((id) % 2) & 1) == 0, + } + } + 19348..19356 => { + id -= 19348; + Block::WarpedWallSign { + facing: BlockDirection::from_id(((id / 2) % 4)), + waterlogged: (((id) % 2) & 1) == 0, + } + } + 4302..4334 => { + id -= 4302; + Block::OakSign { + rotation: ((id / 2) % 16) as u8 + 0, + waterlogged: (((id) % 2) & 1) == 0, + } + } + 4334..4366 => { + id -= 4334; + Block::SpruceSign { + rotation: ((id / 2) % 16) as u8 + 0, + waterlogged: (((id) % 2) & 1) == 0, + } + } + 4366..4398 => { + id -= 4366; + Block::BirchSign { + rotation: ((id / 2) % 16) as u8 + 0, + waterlogged: (((id) % 2) & 1) == 0, + } + } + 4398..4430 => { + id -= 4398; + Block::AcaciaSign { + rotation: ((id / 2) % 16) as u8 + 0, + waterlogged: (((id) % 2) & 1) == 0, + } + } + 4462..4494 => { + id -= 4462; + Block::JungleSign { + rotation: ((id / 2) % 16) as u8 + 0, + waterlogged: (((id) % 2) & 1) == 0, + } + } + 4494..4526 => { + id -= 4494; + Block::DarkOakSign { + rotation: ((id / 2) % 16) as u8 + 0, + waterlogged: (((id) % 2) & 1) == 0, + } + } + 19276..19308 => { + id -= 19276; + Block::CrimsonSign { + rotation: ((id / 2) % 16) as u8 + 0, + waterlogged: (((id) % 2) & 1) == 0, + } + } + 19308..19340 => { + id -= 19308; + Block::WarpedSign { + rotation: ((id / 2) % 16) as u8 + 0, + waterlogged: (((id) % 2) & 1) == 0, + } + } + 5626..5650 => { + id -= 5626; + Block::Lever { + face: LeverFace::from_id(((id / 8) % 3)), + facing: BlockDirection::from_id(((id / 2) % 4)), + powered: (((id) % 2) & 1) == 0, + } + } + 5748..5772 => { + id -= 5748; + Block::StoneButton { + face: LeverFace::from_id(((id / 8) % 3)), + facing: BlockDirection::from_id(((id / 2) % 4)), + powered: (((id) % 2) & 1) == 0, + } + } + 5738..5740 => { + id -= 5738; + Block::RedstoneTorch { + lit: (((id) % 2) & 1) == 0, + } + } + 5740..5748 => { + id -= 5740; + Block::RedstoneWallTorch { + facing: BlockDirection::from_id(((id / 2) % 4)), + lit: (((id) % 2) & 1) == 0, + } + } + 5881..5945 => { + id -= 5881; + Block::Repeater(Repeater { + delay: ((id / 16) % 4) as u8 + 1, + facing: BlockDirection::from_id(((id / 4) % 4)), + locked: (((id / 2) % 2) & 1) == 0, + powered: (((id) % 2) & 1) == 0, + }) + } + 7417..7419 => { + id -= 7417; + Block::RedstoneLamp { + lit: (((id) % 2) & 1) == 0, + } + } + 7521..7537 => { + id -= 7521; + Block::TripwireHook { + attached: (((id / 8) % 2) & 1) == 0, + facing: BlockDirection::from_id(((id / 2) % 4)), + powered: (((id) % 2) & 1) == 0, + } + } + 9175..9191 => { + id -= 9175; + Block::Comparator(Comparator { + facing: BlockDirection::from_id(((id / 4) % 4)), + mode: ComparatorMode::from_id(((id / 2) % 2)), + powered: (((id) % 2) & 1) == 0, + }) + } + 9223..9224 => { + id -= 9223; + Block::RedstoneBlock + } + 12550..12562 => { + id -= 12550; + Block::Observer { + facing: BlockFacing::from_id(((id / 2) % 6)), + powered: (((id) % 2) & 1) == 0, + } + } + 12933..12941 => { + id -= 12933; + Block::SeaPickle { + pickles: ((id / 2) % 4) as u8 + 1, + waterlogged: (((id) % 2) & 1) == 0, + } + } + 19381..19397 => { + id -= 19381; + Block::Target { + power: ((id) % 16) as u8 + 0, + } + } + 5650..5652 => { + id -= 5650; + Block::StonePressurePlate { + powered: (((id) % 2) & 1) == 0, + } + } + 5874..5881 => { + id -= 5874; + Block::Cake { + bites: ((id) % 7) as u8 + 0, + } + } + 18408..18420 => { + id -= 18408; + Block::Barrel { + facing: BlockFacing::from_id(((id / 2) % 6)), + open: (((id) % 2) & 1) == 0, + } + } + 9225..9235 => { + id -= 9225; + Block::Hopper { + enabled: (((id / 5) % 2) & 1) == 0, + facing: HopperFacing::from_id(((id) % 5)), + } + } + 535..536 => { + id -= 535; + Block::Sandstone + } + 10745..10746 => { + id -= 10745; + Block::CoalBlock + } + 4294..4302 => { + id -= 4294; + Block::Furnace { + facing: BlockDirection::from_id(((id / 2) % 4)), + lit: (((id) % 2) & 1) == 0, + } + } + 9235..9236 => { + id -= 9235; + Block::QuartzBlock + } + 11308..11309 => { + id -= 11308; + Block::SmoothQuartz + } + 11228..11234 => { + id -= 11228; + Block::SmoothStoneSlab { + ty: SlabType::from_id(((id / 2) % 3)), + waterlogged: (((id) % 2) & 1) == 0, + } + } + 11282..11288 => { + id -= 11282; + Block::QuartzSlab { + ty: SlabType::from_id(((id / 2) % 3)), + waterlogged: (((id) % 2) & 1) == 0, + } + } + 7398..7399 => { + id -= 7398; + Block::Cauldron + } + 7399..7402 => { + id -= 7399; + Block::WaterCauldron { + level: ((id) % 3) as u8 + 1, + } + } + 19372..19381 => { + id -= 19372; + Block::Composter { + level: ((id) % 9) as u8 + 0, + } + } + 12728..12729 => { + id -= 12728; + Block::WhiteConcrete + } + 12729..12730 => { + id -= 12729; + Block::OrangeConcrete + } + 12730..12731 => { + id -= 12730; + Block::MagentaConcrete + } + 12731..12732 => { + id -= 12731; + Block::LightBlueConcrete + } + 12732..12733 => { + id -= 12732; + Block::YellowConcrete + } + 12733..12734 => { + id -= 12733; + Block::LimeConcrete + } + 12734..12735 => { + id -= 12734; + Block::PinkConcrete + } + 12735..12736 => { + id -= 12735; + Block::GrayConcrete + } + 12736..12737 => { + id -= 12736; + Block::LightGrayConcrete + } + 12737..12738 => { + id -= 12737; + Block::CyanConcrete + } + 12738..12739 => { + id -= 12738; + Block::PurpleConcrete + } + 12739..12740 => { + id -= 12739; + Block::BlueConcrete + } + 12740..12741 => { + id -= 12740; + Block::BrownConcrete + } + 12741..12742 => { + id -= 12741; + Block::GreenConcrete + } + 12742..12743 => { + id -= 12742; + Block::RedConcrete + } + 12743..12744 => { + id -= 12743; + Block::BlackConcrete + } + 5945..5946 => { + id -= 5945; + Block::WhiteStainedGlass + } + 5946..5947 => { + id -= 5946; + Block::OrangeStainedGlass + } + 5947..5948 => { + id -= 5947; + Block::MagentaStainedGlass + } + 5948..5949 => { + id -= 5948; + Block::LightBlueStainedGlass + } + 5949..5950 => { + id -= 5949; + Block::YellowStainedGlass + } + 5950..5951 => { + id -= 5950; + Block::LimeStainedGlass + } + 5951..5952 => { + id -= 5951; + Block::PinkStainedGlass + } + 5952..5953 => { + id -= 5952; + Block::GrayStainedGlass + } + 5953..5954 => { + id -= 5953; + Block::LightGrayStainedGlass + } + 5954..5955 => { + id -= 5954; + Block::CyanStainedGlass + } + 5955..5956 => { + id -= 5955; + Block::PurpleStainedGlass + } + 5956..5957 => { + id -= 5956; + Block::BlueStainedGlass + } + 5957..5958 => { + id -= 5957; + Block::BrownStainedGlass + } + 5958..5959 => { + id -= 5958; + Block::GreenStainedGlass + } + 5959..5960 => { + id -= 5959; + Block::RedStainedGlass + } + 5960..5961 => { + id -= 5960; + Block::BlackStainedGlass + } + 10744..10745 => { + id -= 10744; + Block::Terracotta + } + 9356..9357 => { + id -= 9356; + Block::WhiteTerracotta + } + 9357..9358 => { + id -= 9357; + Block::OrangeTerracotta + } + 9358..9359 => { + id -= 9358; + Block::MagentaTerracotta + } + 9359..9360 => { + id -= 9359; + Block::LightBlueTerracotta + } + 9360..9361 => { + id -= 9360; + Block::YellowTerracotta + } + 9361..9362 => { + id -= 9361; + Block::LimeTerracotta + } + 9362..9363 => { + id -= 9362; + Block::PinkTerracotta + } + 9363..9364 => { + id -= 9363; + Block::GrayTerracotta + } + 9364..9365 => { + id -= 9364; + Block::LightGrayTerracotta + } + 9365..9366 => { + id -= 9365; + Block::CyanTerracotta + } + 9366..9367 => { + id -= 9366; + Block::PurpleTerracotta + } + 9367..9368 => { + id -= 9367; + Block::BlueTerracotta + } + 9368..9369 => { + id -= 9368; + Block::BrownTerracotta + } + 9369..9370 => { + id -= 9369; + Block::GreenTerracotta + } + 9370..9371 => { + id -= 9370; + Block::RedTerracotta + } + 9371..9372 => { + id -= 9371; + Block::BlackTerracotta + } + 2047..2048 => { + id -= 2047; + Block::WhiteWool + } + 2048..2049 => { + id -= 2048; + Block::OrangeWool + } + 2049..2050 => { + id -= 2049; + Block::MagentaWool + } + 2050..2051 => { + id -= 2050; + Block::LightBlueWool + } + 2051..2052 => { + id -= 2051; + Block::YellowWool + } + 2052..2053 => { + id -= 2052; + Block::LimeWool + } + 2053..2054 => { + id -= 2053; + Block::PinkWool + } + 2054..2055 => { + id -= 2054; + Block::GrayWool + } + 2055..2056 => { + id -= 2055; + Block::LightGrayWool + } + 2056..2057 => { + id -= 2056; + Block::CyanWool + } + 2057..2058 => { + id -= 2057; + Block::PurpleWool + } + 2058..2059 => { + id -= 2058; + Block::BlueWool + } + 2059..2060 => { + id -= 2059; + Block::BrownWool + } + 2060..2061 => { + id -= 2060; + Block::GreenWool + } + 2061..2062 => { + id -= 2061; + Block::RedWool + } + 2062..2063 => { + id -= 2062; + Block::BlackWool + } + 10399..10463 => { + id -= 10399; + Block::IronTrapdoor { + facing: BlockDirection::from_id(((id / 16) % 4)), + half: TrapdoorHalf::from_id(((id / 8) % 2)), + open: (((id / 4) % 2) & 1) == 0, + powered: (((id / 2) % 2) & 1) == 0, + waterlogged: (((id) % 2) & 1) == 0, + } + } + 538..1688 => { + id -= 538; + Block::NoteBlock { + instrument: Instrument::from_id(((id / 50) % 23)), + note: ((id / 2) % 25) as u8 + 0, + powered: (((id) % 2) & 1) == 0, + } + } + 5798..5799 => { + id -= 5798; + Block::Clay + } + 2091..2092 => { + id -= 2091; + Block::GoldBlock + } + 10746..10747 => { + id -= 10746; + Block::PackedIce + } + 12546..12549 => { + id -= 12546; + Block::BoneBlock { + axis: BlockAxis::from_id(((id) % 3)), + } + } + 2092..2093 => { + id -= 2092; + Block::IronBlock + } + 5850..5851 => { + id -= 5850; + Block::SoulSand + } + 6811..6812 => { + id -= 6811; + Block::Pumpkin + } + 7665..7666 => { + id -= 7665; + Block::EmeraldBlock + } + 10725..10728 => { + id -= 10725; + Block::HayBlock { + axis: BlockAxis::from_id(((id) % 3)), + } + } + 112..113 => { + id -= 112; + Block::Sand + } + 6537..6538 => { + id -= 6537; + Block::StoneBricks + } + 7407..7415 => { + id -= 7407; + Block::EndPortalFrame { + eye: (((id / 4) % 2) & 1) == 0, + facing: BlockDirection::from_id(((id) % 4)), + } + } + _ => Block::Air, + } + } + pub fn is_wool(self) -> bool { + match self { + Block::WhiteWool => true, + Block::OrangeWool => true, + Block::MagentaWool => true, + Block::LightBlueWool => true, + Block::YellowWool => true, + Block::LimeWool => true, + Block::PinkWool => true, + Block::GrayWool => true, + Block::LightGrayWool => true, + Block::CyanWool => true, + Block::PurpleWool => true, + Block::BlueWool => true, + Block::BrownWool => true, + Block::GreenWool => true, + Block::RedWool => true, + Block::BlackWool => true, + _ => false, + } + } + pub fn is_wood(self) -> bool { + match self { + Block::OakWallSign { .. } => true, + Block::SpruceWallSign { .. } => true, + Block::BirchWallSign { .. } => true, + Block::AcaciaWallSign { .. } => true, + Block::JungleWallSign { .. } => true, + Block::DarkOakWallSign { .. } => true, + Block::CrimsonWallSign { .. } => true, + Block::WarpedWallSign { .. } => true, + Block::OakSign { .. } => true, + Block::SpruceSign { .. } => true, + Block::BirchSign { .. } => true, + Block::AcaciaSign { .. } => true, + Block::JungleSign { .. } => true, + Block::DarkOakSign { .. } => true, + Block::CrimsonSign { .. } => true, + Block::WarpedSign { .. } => true, + Block::Barrel { .. } => true, + Block::Composter { .. } => true, + Block::NoteBlock { .. } => true, + _ => false, + } + } + pub fn is_stone(self) -> bool { + match self { + Block::Stone => true, + Block::Sandstone => true, + Block::CoalBlock => true, + Block::WhiteConcrete => true, + Block::OrangeConcrete => true, + Block::MagentaConcrete => true, + Block::LightBlueConcrete => true, + Block::YellowConcrete => true, + Block::LimeConcrete => true, + Block::PinkConcrete => true, + Block::GrayConcrete => true, + Block::LightGrayConcrete => true, + Block::CyanConcrete => true, + Block::PurpleConcrete => true, + Block::BlueConcrete => true, + Block::BrownConcrete => true, + Block::GreenConcrete => true, + Block::RedConcrete => true, + Block::BlackConcrete => true, + Block::Terracotta => true, + Block::WhiteTerracotta => true, + Block::OrangeTerracotta => true, + Block::MagentaTerracotta => true, + Block::LightBlueTerracotta => true, + Block::YellowTerracotta => true, + Block::LimeTerracotta => true, + Block::PinkTerracotta => true, + Block::GrayTerracotta => true, + Block::LightGrayTerracotta => true, + Block::CyanTerracotta => true, + Block::PurpleTerracotta => true, + Block::BlueTerracotta => true, + Block::BrownTerracotta => true, + Block::GreenTerracotta => true, + Block::RedTerracotta => true, + Block::BlackTerracotta => true, + _ => false, + } + } + pub fn is_glass(self) -> bool { + match self { + Block::Glass => true, + Block::WhiteStainedGlass => true, + Block::OrangeStainedGlass => true, + Block::MagentaStainedGlass => true, + Block::LightBlueStainedGlass => true, + Block::YellowStainedGlass => true, + Block::LimeStainedGlass => true, + Block::PinkStainedGlass => true, + Block::GrayStainedGlass => true, + Block::LightGrayStainedGlass => true, + Block::CyanStainedGlass => true, + Block::PurpleStainedGlass => true, + Block::BlueStainedGlass => true, + Block::BrownStainedGlass => true, + Block::GreenStainedGlass => true, + Block::RedStainedGlass => true, + Block::BlackStainedGlass => true, + _ => false, + } + } +} +impl FromStr for SlabType { + type Err = (); + fn from_str(s: &str) -> Result { + Ok(match s { + "top" => SlabType::Top, + "bottom" => SlabType::Bottom, + "double" => SlabType::Double, + _ => return Err(()), + }) + } +} +impl FromStr for BlockDirection { + type Err = (); + fn from_str(s: &str) -> Result { + Ok(match s { + "north" => BlockDirection::North, + "south" => BlockDirection::South, + "west" => BlockDirection::West, + "east" => BlockDirection::East, + _ => return Err(()), + }) + } +} +impl FromStr for LeverFace { + type Err = (); + fn from_str(s: &str) -> Result { + Ok(match s { + "floor" => LeverFace::Floor, + "wall" => LeverFace::Wall, + "ceiling" => LeverFace::Ceiling, + _ => return Err(()), + }) + } +} +impl FromStr for BlockAxis { + type Err = (); + fn from_str(s: &str) -> Result { + Ok(match s { + "x" => BlockAxis::X, + "y" => BlockAxis::Y, + "z" => BlockAxis::Z, + _ => return Err(()), + }) + } +} +impl FromStr for RedstoneWireSide { + type Err = (); + fn from_str(s: &str) -> Result { + Ok(match s { + "up" => RedstoneWireSide::Up, + "side" => RedstoneWireSide::Side, + "none" => RedstoneWireSide::None, + _ => return Err(()), + }) + } +} +impl FromStr for HopperFacing { + type Err = (); + fn from_str(s: &str) -> Result { + Ok(match s { + "down" => HopperFacing::Down, + "north" => HopperFacing::North, + "south" => HopperFacing::South, + "west" => HopperFacing::West, + "east" => HopperFacing::East, + _ => return Err(()), + }) + } +} +impl FromStr for ComparatorMode { + type Err = (); + fn from_str(s: &str) -> Result { + Ok(match s { + "compare" => ComparatorMode::Compare, + "subtract" => ComparatorMode::Subtract, + _ => return Err(()), + }) + } +} +impl FromStr for BlockFacing { + type Err = (); + fn from_str(s: &str) -> Result { + Ok(match s { + "north" => BlockFacing::North, + "east" => BlockFacing::East, + "south" => BlockFacing::South, + "west" => BlockFacing::West, + "up" => BlockFacing::Up, + "down" => BlockFacing::Down, + _ => return Err(()), + }) + } +} +impl FromStr for TrapdoorHalf { + type Err = (); + fn from_str(s: &str) -> Result { + Ok(match s { + "top" => TrapdoorHalf::Top, + "bottom" => TrapdoorHalf::Bottom, + _ => return Err(()), + }) + } +} +impl FromStr for Instrument { + type Err = (); + fn from_str(s: &str) -> Result { + Ok(match s { + "harp" => Instrument::Harp, + "basedrum" => Instrument::Basedrum, + "snare" => Instrument::Snare, + "hat" => Instrument::Hat, + "bass" => Instrument::Bass, + "flute" => Instrument::Flute, + "bell" => Instrument::Bell, + "guitar" => Instrument::Guitar, + "chime" => Instrument::Chime, + "xylophone" => Instrument::Xylophone, + "iron_xylophone" => Instrument::IronXylophone, + "cow_bell" => Instrument::CowBell, + "didgeridoo" => Instrument::Didgeridoo, + "bit" => Instrument::Bit, + "banjo" => Instrument::Banjo, + "pling" => Instrument::Pling, + "zombie" => Instrument::Zombie, + "skeleton" => Instrument::Skeleton, + "creeper" => Instrument::Creeper, + "dragon" => Instrument::Dragon, + "wither_skeleton" => Instrument::WitherSkeleton, + "piglin" => Instrument::Piglin, + "custom_head" => Instrument::CustomHead, + _ => return Err(()), + }) + } +} +impl std::fmt::Display for SlabType { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + f.write_str(match self { + SlabType::Top => "top", + SlabType::Bottom => "bottom", + SlabType::Double => "double", + }) + } +} +impl std::fmt::Display for BlockDirection { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + f.write_str(match self { + BlockDirection::North => "north", + BlockDirection::South => "south", + BlockDirection::West => "west", + BlockDirection::East => "east", + }) + } +} +impl std::fmt::Display for LeverFace { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + f.write_str(match self { + LeverFace::Floor => "floor", + LeverFace::Wall => "wall", + LeverFace::Ceiling => "ceiling", + }) + } +} +impl std::fmt::Display for BlockAxis { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + f.write_str(match self { + BlockAxis::X => "x", + BlockAxis::Y => "y", + BlockAxis::Z => "z", + }) + } +} +impl std::fmt::Display for RedstoneWireSide { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + f.write_str(match self { + RedstoneWireSide::Up => "up", + RedstoneWireSide::Side => "side", + RedstoneWireSide::None => "none", + }) + } +} +impl std::fmt::Display for HopperFacing { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + f.write_str(match self { + HopperFacing::Down => "down", + HopperFacing::North => "north", + HopperFacing::South => "south", + HopperFacing::West => "west", + HopperFacing::East => "east", + }) + } +} +impl std::fmt::Display for ComparatorMode { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + f.write_str(match self { + ComparatorMode::Compare => "compare", + ComparatorMode::Subtract => "subtract", + }) + } +} +impl std::fmt::Display for BlockFacing { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + f.write_str(match self { + BlockFacing::North => "north", + BlockFacing::East => "east", + BlockFacing::South => "south", + BlockFacing::West => "west", + BlockFacing::Up => "up", + BlockFacing::Down => "down", + }) + } +} +impl std::fmt::Display for TrapdoorHalf { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + f.write_str(match self { + TrapdoorHalf::Top => "top", + TrapdoorHalf::Bottom => "bottom", + }) + } +} +impl std::fmt::Display for Instrument { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + f.write_str(match self { + Instrument::Harp => "harp", + Instrument::Basedrum => "basedrum", + Instrument::Snare => "snare", + Instrument::Hat => "hat", + Instrument::Bass => "bass", + Instrument::Flute => "flute", + Instrument::Bell => "bell", + Instrument::Guitar => "guitar", + Instrument::Chime => "chime", + Instrument::Xylophone => "xylophone", + Instrument::IronXylophone => "iron_xylophone", + Instrument::CowBell => "cow_bell", + Instrument::Didgeridoo => "didgeridoo", + Instrument::Bit => "bit", + Instrument::Banjo => "banjo", + Instrument::Pling => "pling", + Instrument::Zombie => "zombie", + Instrument::Skeleton => "skeleton", + Instrument::Creeper => "creeper", + Instrument::Dragon => "dragon", + Instrument::WitherSkeleton => "wither_skeleton", + Instrument::Piglin => "piglin", + Instrument::CustomHead => "custom_head", + }) + } +} +impl SlabType { + fn get_id(self) -> u32 { + self as u32 + } + fn from_id(id: u32) -> Self { + match id { + 0 => SlabType::Top, + 1 => SlabType::Bottom, + 2 => SlabType::Double, + id => unreachable!(), + } + } +} +impl BlockDirection { + fn get_id(self) -> u32 { + self as u32 + } + fn from_id(id: u32) -> Self { + match id { + 0 => BlockDirection::North, + 1 => BlockDirection::South, + 2 => BlockDirection::West, + 3 => BlockDirection::East, + id => unreachable!(), + } + } +} +impl LeverFace { + fn get_id(self) -> u32 { + self as u32 + } + fn from_id(id: u32) -> Self { + match id { + 0 => LeverFace::Floor, + 1 => LeverFace::Wall, + 2 => LeverFace::Ceiling, + id => unreachable!(), + } + } +} +impl BlockAxis { + fn get_id(self) -> u32 { + self as u32 + } + fn from_id(id: u32) -> Self { + match id { + 0 => BlockAxis::X, + 1 => BlockAxis::Y, + 2 => BlockAxis::Z, + id => unreachable!(), + } + } +} +impl RedstoneWireSide { + fn get_id(self) -> u32 { + self as u32 + } + fn from_id(id: u32) -> Self { + match id { + 0 => RedstoneWireSide::Up, + 1 => RedstoneWireSide::Side, + 2 => RedstoneWireSide::None, + id => unreachable!(), + } + } +} +impl HopperFacing { + fn get_id(self) -> u32 { + self as u32 + } + fn from_id(id: u32) -> Self { + match id { + 0 => HopperFacing::Down, + 1 => HopperFacing::North, + 2 => HopperFacing::South, + 3 => HopperFacing::West, + 4 => HopperFacing::East, + id => unreachable!(), + } + } +} +impl ComparatorMode { + fn get_id(self) -> u32 { + self as u32 + } + fn from_id(id: u32) -> Self { + match id { + 0 => ComparatorMode::Compare, + 1 => ComparatorMode::Subtract, + id => unreachable!(), + } + } +} +impl BlockFacing { + fn get_id(self) -> u32 { + self as u32 + } + fn from_id(id: u32) -> Self { + match id { + 0 => BlockFacing::North, + 1 => BlockFacing::East, + 2 => BlockFacing::South, + 3 => BlockFacing::West, + 4 => BlockFacing::Up, + 5 => BlockFacing::Down, + id => unreachable!(), + } + } +} +impl TrapdoorHalf { + fn get_id(self) -> u32 { + self as u32 + } + fn from_id(id: u32) -> Self { + match id { + 0 => TrapdoorHalf::Top, + 1 => TrapdoorHalf::Bottom, + id => unreachable!(), + } + } +} +impl Instrument { + fn get_id(self) -> u32 { + self as u32 + } + fn from_id(id: u32) -> Self { + match id { + 0 => Instrument::Harp, + 1 => Instrument::Basedrum, + 2 => Instrument::Snare, + 3 => Instrument::Hat, + 4 => Instrument::Bass, + 5 => Instrument::Flute, + 6 => Instrument::Bell, + 7 => Instrument::Guitar, + 8 => Instrument::Chime, + 9 => Instrument::Xylophone, + 10 => Instrument::IronXylophone, + 11 => Instrument::CowBell, + 12 => Instrument::Didgeridoo, + 13 => Instrument::Bit, + 14 => Instrument::Banjo, + 15 => Instrument::Pling, + 16 => Instrument::Zombie, + 17 => Instrument::Skeleton, + 18 => Instrument::Creeper, + 19 => Instrument::Dragon, + 20 => Instrument::WitherSkeleton, + 21 => Instrument::Piglin, + 22 => Instrument::CustomHead, + id => unreachable!(), + } + } +} +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub enum Item { + Stone, + Glass, + Glowstone, + OakSign, + SpruceSign, + BirchSign, + AcaciaSign, + JungleSign, + DarkOakSign, + CrimsonSign, + WarpedSign, + Lever, + StoneButton, + RedstoneTorch, + Repeater, + RedstoneLamp, + TripwireHook, + Comparator, + RedstoneBlock, + Observer, + SeaPickle, + Target, + StonePressurePlate, + Cake, + Barrel, + Hopper, + Sandstone, + CoalBlock, + Furnace, + QuartzBlock, + SmoothQuartz, + SmoothStoneSlab, + QuartzSlab, + Cauldron, + Composter, + WhiteConcrete, + OrangeConcrete, + MagentaConcrete, + LightBlueConcrete, + YellowConcrete, + LimeConcrete, + PinkConcrete, + GrayConcrete, + LightGrayConcrete, + CyanConcrete, + PurpleConcrete, + BlueConcrete, + BrownConcrete, + GreenConcrete, + RedConcrete, + BlackConcrete, + WhiteStainedGlass, + OrangeStainedGlass, + MagentaStainedGlass, + LightBlueStainedGlass, + YellowStainedGlass, + LimeStainedGlass, + PinkStainedGlass, + GrayStainedGlass, + LightGrayStainedGlass, + CyanStainedGlass, + PurpleStainedGlass, + BlueStainedGlass, + BrownStainedGlass, + GreenStainedGlass, + RedStainedGlass, + BlackStainedGlass, + Terracotta, + WhiteTerracotta, + OrangeTerracotta, + MagentaTerracotta, + LightBlueTerracotta, + YellowTerracotta, + LimeTerracotta, + PinkTerracotta, + GrayTerracotta, + LightGrayTerracotta, + CyanTerracotta, + PurpleTerracotta, + BlueTerracotta, + BrownTerracotta, + GreenTerracotta, + RedTerracotta, + BlackTerracotta, + WhiteWool, + OrangeWool, + MagentaWool, + LightBlueWool, + YellowWool, + LimeWool, + PinkWool, + GrayWool, + LightGrayWool, + CyanWool, + PurpleWool, + BlueWool, + BrownWool, + GreenWool, + RedWool, + BlackWool, + IronTrapdoor, + NoteBlock, + Clay, + GoldBlock, + PackedIce, + BoneBlock, + IronBlock, + SoulSand, + Pumpkin, + EmeraldBlock, + HayBlock, + Sand, + StoneBricks, + EndPortalFrame, + WoodenAxe, + Snowball, + TotemOfUndying, + MilkBucket, + Redstone, + EnderEye, + Unknown(u32), +} +impl Item { + pub fn get_id(self) -> u32 { + match self { + Item::Stone => 1, + Item::Glass => 187, + Item::Glowstone => 331, + Item::OakSign => 883, + Item::SpruceSign => 884, + Item::BirchSign => 885, + Item::AcaciaSign => 887, + Item::JungleSign => 886, + Item::DarkOakSign => 889, + Item::CrimsonSign => 892, + Item::WarpedSign => 893, + Item::Lever => 671, + Item::StoneButton => 681, + Item::RedstoneTorch => 657, + Item::Repeater => 659, + Item::RedstoneLamp => 679, + Item::TripwireHook => 676, + Item::Comparator => 660, + Item::RedstoneBlock => 658, + Item::Observer => 665, + Item::SeaPickle => 200, + Item::Target => 670, + Item::StonePressurePlate => 694, + Item::Cake => 960, + Item::Barrel => 1193, + Item::Hopper => 666, + Item::Sandstone => 190, + Item::CoalBlock => 81, + Item::Furnace => 301, + Item::QuartzBlock => 422, + Item::SmoothQuartz => 280, + Item::SmoothStoneSlab => 264, + Item::QuartzSlab => 273, + Item::Cauldron => 1002, + Item::Composter => 1192, + Item::WhiteConcrete => 554, + Item::OrangeConcrete => 555, + Item::MagentaConcrete => 556, + Item::LightBlueConcrete => 557, + Item::YellowConcrete => 558, + Item::LimeConcrete => 559, + Item::PinkConcrete => 560, + Item::GrayConcrete => 561, + Item::LightGrayConcrete => 562, + Item::CyanConcrete => 563, + Item::PurpleConcrete => 564, + Item::BlueConcrete => 565, + Item::BrownConcrete => 566, + Item::GreenConcrete => 567, + Item::RedConcrete => 568, + Item::BlackConcrete => 569, + Item::WhiteStainedGlass => 470, + Item::OrangeStainedGlass => 471, + Item::MagentaStainedGlass => 472, + Item::LightBlueStainedGlass => 473, + Item::YellowStainedGlass => 474, + Item::LimeStainedGlass => 475, + Item::PinkStainedGlass => 476, + Item::GrayStainedGlass => 477, + Item::LightGrayStainedGlass => 478, + Item::CyanStainedGlass => 479, + Item::PurpleStainedGlass => 480, + Item::BlueStainedGlass => 481, + Item::BrownStainedGlass => 482, + Item::GreenStainedGlass => 483, + Item::RedStainedGlass => 484, + Item::BlackStainedGlass => 485, + Item::Terracotta => 461, + Item::WhiteTerracotta => 426, + Item::OrangeTerracotta => 427, + Item::MagentaTerracotta => 428, + Item::LightBlueTerracotta => 429, + Item::YellowTerracotta => 430, + Item::LimeTerracotta => 431, + Item::PinkTerracotta => 432, + Item::GrayTerracotta => 433, + Item::LightGrayTerracotta => 434, + Item::CyanTerracotta => 435, + Item::PurpleTerracotta => 436, + Item::BlueTerracotta => 437, + Item::BrownTerracotta => 438, + Item::GreenTerracotta => 439, + Item::RedTerracotta => 440, + Item::BlackTerracotta => 441, + Item::WhiteWool => 201, + Item::OrangeWool => 202, + Item::MagentaWool => 203, + Item::LightBlueWool => 204, + Item::YellowWool => 205, + Item::LimeWool => 206, + Item::PinkWool => 207, + Item::GrayWool => 208, + Item::LightGrayWool => 209, + Item::CyanWool => 210, + Item::PurpleWool => 211, + Item::BlueWool => 212, + Item::BrownWool => 213, + Item::GreenWool => 214, + Item::RedWool => 215, + Item::BlackWool => 216, + Item::IronTrapdoor => 729, + Item::NoteBlock => 680, + Item::Clay => 308, + Item::GoldBlock => 89, + Item::PackedIce => 462, + Item::BoneBlock => 519, + Item::IronBlock => 87, + Item::SoulSand => 325, + Item::Pumpkin => 321, + Item::EmeraldBlock => 381, + Item::HayBlock => 444, + Item::Sand => 57, + Item::StoneBricks => 339, + Item::EndPortalFrame => 375, + Item::WoodenAxe => 817, + Item::Snowball => 909, + Item::TotemOfUndying => 1156, + Item::MilkBucket => 911, + Item::Redstone => 656, + Item::EnderEye => 1003, + Item::Unknown(id) => id, + } + } + pub fn from_id(id: u32) -> Item { + match id { + 1 => Item::Stone, + 187 => Item::Glass, + 331 => Item::Glowstone, + 883 => Item::OakSign, + 884 => Item::SpruceSign, + 885 => Item::BirchSign, + 887 => Item::AcaciaSign, + 886 => Item::JungleSign, + 889 => Item::DarkOakSign, + 892 => Item::CrimsonSign, + 893 => Item::WarpedSign, + 671 => Item::Lever, + 681 => Item::StoneButton, + 657 => Item::RedstoneTorch, + 659 => Item::Repeater, + 679 => Item::RedstoneLamp, + 676 => Item::TripwireHook, + 660 => Item::Comparator, + 658 => Item::RedstoneBlock, + 665 => Item::Observer, + 200 => Item::SeaPickle, + 670 => Item::Target, + 694 => Item::StonePressurePlate, + 960 => Item::Cake, + 1193 => Item::Barrel, + 666 => Item::Hopper, + 190 => Item::Sandstone, + 81 => Item::CoalBlock, + 301 => Item::Furnace, + 422 => Item::QuartzBlock, + 280 => Item::SmoothQuartz, + 264 => Item::SmoothStoneSlab, + 273 => Item::QuartzSlab, + 1002 => Item::Cauldron, + 1192 => Item::Composter, + 554 => Item::WhiteConcrete, + 555 => Item::OrangeConcrete, + 556 => Item::MagentaConcrete, + 557 => Item::LightBlueConcrete, + 558 => Item::YellowConcrete, + 559 => Item::LimeConcrete, + 560 => Item::PinkConcrete, + 561 => Item::GrayConcrete, + 562 => Item::LightGrayConcrete, + 563 => Item::CyanConcrete, + 564 => Item::PurpleConcrete, + 565 => Item::BlueConcrete, + 566 => Item::BrownConcrete, + 567 => Item::GreenConcrete, + 568 => Item::RedConcrete, + 569 => Item::BlackConcrete, + 470 => Item::WhiteStainedGlass, + 471 => Item::OrangeStainedGlass, + 472 => Item::MagentaStainedGlass, + 473 => Item::LightBlueStainedGlass, + 474 => Item::YellowStainedGlass, + 475 => Item::LimeStainedGlass, + 476 => Item::PinkStainedGlass, + 477 => Item::GrayStainedGlass, + 478 => Item::LightGrayStainedGlass, + 479 => Item::CyanStainedGlass, + 480 => Item::PurpleStainedGlass, + 481 => Item::BlueStainedGlass, + 482 => Item::BrownStainedGlass, + 483 => Item::GreenStainedGlass, + 484 => Item::RedStainedGlass, + 485 => Item::BlackStainedGlass, + 461 => Item::Terracotta, + 426 => Item::WhiteTerracotta, + 427 => Item::OrangeTerracotta, + 428 => Item::MagentaTerracotta, + 429 => Item::LightBlueTerracotta, + 430 => Item::YellowTerracotta, + 431 => Item::LimeTerracotta, + 432 => Item::PinkTerracotta, + 433 => Item::GrayTerracotta, + 434 => Item::LightGrayTerracotta, + 435 => Item::CyanTerracotta, + 436 => Item::PurpleTerracotta, + 437 => Item::BlueTerracotta, + 438 => Item::BrownTerracotta, + 439 => Item::GreenTerracotta, + 440 => Item::RedTerracotta, + 441 => Item::BlackTerracotta, + 201 => Item::WhiteWool, + 202 => Item::OrangeWool, + 203 => Item::MagentaWool, + 204 => Item::LightBlueWool, + 205 => Item::YellowWool, + 206 => Item::LimeWool, + 207 => Item::PinkWool, + 208 => Item::GrayWool, + 209 => Item::LightGrayWool, + 210 => Item::CyanWool, + 211 => Item::PurpleWool, + 212 => Item::BlueWool, + 213 => Item::BrownWool, + 214 => Item::GreenWool, + 215 => Item::RedWool, + 216 => Item::BlackWool, + 729 => Item::IronTrapdoor, + 680 => Item::NoteBlock, + 308 => Item::Clay, + 89 => Item::GoldBlock, + 462 => Item::PackedIce, + 519 => Item::BoneBlock, + 87 => Item::IronBlock, + 325 => Item::SoulSand, + 321 => Item::Pumpkin, + 381 => Item::EmeraldBlock, + 444 => Item::HayBlock, + 57 => Item::Sand, + 339 => Item::StoneBricks, + 375 => Item::EndPortalFrame, + 817 => Item::WoodenAxe, + 909 => Item::Snowball, + 1156 => Item::TotemOfUndying, + 911 => Item::MilkBucket, + 656 => Item::Redstone, + 1003 => Item::EnderEye, + _ => Item::Unknown(id), + } + } + pub fn get_name(self) -> &'static str { + match self { + Item::Stone => "minecraft:stone", + Item::Glass => "minecraft:glass", + Item::Glowstone => "minecraft:glowstone", + Item::OakSign => "minecraft:oak_sign", + Item::SpruceSign => "minecraft:spruce_sign", + Item::BirchSign => "minecraft:birch_sign", + Item::AcaciaSign => "minecraft:acacia_sign", + Item::JungleSign => "minecraft:jungle_sign", + Item::DarkOakSign => "minecraft:dark_oak_sign", + Item::CrimsonSign => "minecraft:crimson_sign", + Item::WarpedSign => "minecraft:warped_sign", + Item::Lever => "minecraft:lever", + Item::StoneButton => "minecraft:stone_button", + Item::RedstoneTorch => "minecraft:redstone_torch", + Item::Repeater => "minecraft:repeater", + Item::RedstoneLamp => "minecraft:redstone_lamp", + Item::TripwireHook => "minecraft:tripwire_hook", + Item::Comparator => "minecraft:comparator", + Item::RedstoneBlock => "minecraft:redstone_block", + Item::Observer => "minecraft:observer", + Item::SeaPickle => "minecraft:sea_pickle", + Item::Target => "minecraft:target", + Item::StonePressurePlate => "minecraft:stone_pressure_plate", + Item::Cake => "minecraft:cake", + Item::Barrel => "minecraft:barrel", + Item::Hopper => "minecraft:hopper", + Item::Sandstone => "minecraft:sandstone", + Item::CoalBlock => "minecraft:coal_block", + Item::Furnace => "minecraft:furnace", + Item::QuartzBlock => "minecraft:quartz_block", + Item::SmoothQuartz => "minecraft:smooth_quartz", + Item::SmoothStoneSlab => "minecraft:smooth_stone_slab", + Item::QuartzSlab => "minecraft:quartz_slab", + Item::Cauldron => "minecraft:cauldron", + Item::Composter => "minecraft:composter", + Item::WhiteConcrete => "minecraft:white_concrete", + Item::OrangeConcrete => "minecraft:orange_concrete", + Item::MagentaConcrete => "minecraft:magenta_concrete", + Item::LightBlueConcrete => "minecraft:light_blue_concrete", + Item::YellowConcrete => "minecraft:yellow_concrete", + Item::LimeConcrete => "minecraft:lime_concrete", + Item::PinkConcrete => "minecraft:pink_concrete", + Item::GrayConcrete => "minecraft:gray_concrete", + Item::LightGrayConcrete => "minecraft:light_gray_concrete", + Item::CyanConcrete => "minecraft:cyan_concrete", + Item::PurpleConcrete => "minecraft:purple_concrete", + Item::BlueConcrete => "minecraft:blue_concrete", + Item::BrownConcrete => "minecraft:brown_concrete", + Item::GreenConcrete => "minecraft:green_concrete", + Item::RedConcrete => "minecraft:red_concrete", + Item::BlackConcrete => "minecraft:black_concrete", + Item::WhiteStainedGlass => "minecraft:white_stained_glass", + Item::OrangeStainedGlass => "minecraft:orange_stained_glass", + Item::MagentaStainedGlass => "minecraft:magenta_stained_glass", + Item::LightBlueStainedGlass => "minecraft:light_blue_stained_glass", + Item::YellowStainedGlass => "minecraft:yellow_stained_glass", + Item::LimeStainedGlass => "minecraft:lime_stained_glass", + Item::PinkStainedGlass => "minecraft:pink_stained_glass", + Item::GrayStainedGlass => "minecraft:gray_stained_glass", + Item::LightGrayStainedGlass => "minecraft:light_gray_stained_glass", + Item::CyanStainedGlass => "minecraft:cyan_stained_glass", + Item::PurpleStainedGlass => "minecraft:purple_stained_glass", + Item::BlueStainedGlass => "minecraft:blue_stained_glass", + Item::BrownStainedGlass => "minecraft:brown_stained_glass", + Item::GreenStainedGlass => "minecraft:green_stained_glass", + Item::RedStainedGlass => "minecraft:red_stained_glass", + Item::BlackStainedGlass => "minecraft:black_stained_glass", + Item::Terracotta => "minecraft:terracotta", + Item::WhiteTerracotta => "minecraft:white_terracotta", + Item::OrangeTerracotta => "minecraft:orange_terracotta", + Item::MagentaTerracotta => "minecraft:magenta_terracotta", + Item::LightBlueTerracotta => "minecraft:light_blue_terracotta", + Item::YellowTerracotta => "minecraft:yellow_terracotta", + Item::LimeTerracotta => "minecraft:lime_terracotta", + Item::PinkTerracotta => "minecraft:pink_terracotta", + Item::GrayTerracotta => "minecraft:gray_terracotta", + Item::LightGrayTerracotta => "minecraft:light_gray_terracotta", + Item::CyanTerracotta => "minecraft:cyan_terracotta", + Item::PurpleTerracotta => "minecraft:purple_terracotta", + Item::BlueTerracotta => "minecraft:blue_terracotta", + Item::BrownTerracotta => "minecraft:brown_terracotta", + Item::GreenTerracotta => "minecraft:green_terracotta", + Item::RedTerracotta => "minecraft:red_terracotta", + Item::BlackTerracotta => "minecraft:black_terracotta", + Item::WhiteWool => "minecraft:white_wool", + Item::OrangeWool => "minecraft:orange_wool", + Item::MagentaWool => "minecraft:magenta_wool", + Item::LightBlueWool => "minecraft:light_blue_wool", + Item::YellowWool => "minecraft:yellow_wool", + Item::LimeWool => "minecraft:lime_wool", + Item::PinkWool => "minecraft:pink_wool", + Item::GrayWool => "minecraft:gray_wool", + Item::LightGrayWool => "minecraft:light_gray_wool", + Item::CyanWool => "minecraft:cyan_wool", + Item::PurpleWool => "minecraft:purple_wool", + Item::BlueWool => "minecraft:blue_wool", + Item::BrownWool => "minecraft:brown_wool", + Item::GreenWool => "minecraft:green_wool", + Item::RedWool => "minecraft:red_wool", + Item::BlackWool => "minecraft:black_wool", + Item::IronTrapdoor => "minecraft:iron_trapdoor", + Item::NoteBlock => "minecraft:note_block", + Item::Clay => "minecraft:clay", + Item::GoldBlock => "minecraft:gold_block", + Item::PackedIce => "minecraft:packed_ice", + Item::BoneBlock => "minecraft:bone_block", + Item::IronBlock => "minecraft:iron_block", + Item::SoulSand => "minecraft:soul_sand", + Item::Pumpkin => "minecraft:pumpkin", + Item::EmeraldBlock => "minecraft:emerald_block", + Item::HayBlock => "minecraft:hay_block", + Item::Sand => "minecraft:sand", + Item::StoneBricks => "minecraft:stone_bricks", + Item::EndPortalFrame => "minecraft:end_portal_frame", + Item::WoodenAxe => "minecraft:wooden_axe", + Item::Snowball => "minecraft:snowball", + Item::TotemOfUndying => "minecraft:totem_of_undying", + Item::MilkBucket => "minecraft:milk_bucket", + Item::Redstone => "minecraft:redstone", + Item::EnderEye => "minecraft:ender_eye", + Item::Unknown(_) => "minecraft:redstone", + } + } + pub fn from_name(name: &str) -> Option { + Some(match name { + "minecraft:stone" => Item::Stone, + "minecraft:glass" => Item::Glass, + "minecraft:glowstone" => Item::Glowstone, + "minecraft:oak_sign" => Item::OakSign, + "minecraft:spruce_sign" => Item::SpruceSign, + "minecraft:birch_sign" => Item::BirchSign, + "minecraft:acacia_sign" => Item::AcaciaSign, + "minecraft:jungle_sign" => Item::JungleSign, + "minecraft:dark_oak_sign" => Item::DarkOakSign, + "minecraft:crimson_sign" => Item::CrimsonSign, + "minecraft:warped_sign" => Item::WarpedSign, + "minecraft:lever" => Item::Lever, + "minecraft:stone_button" => Item::StoneButton, + "minecraft:redstone_torch" => Item::RedstoneTorch, + "minecraft:repeater" => Item::Repeater, + "minecraft:redstone_lamp" => Item::RedstoneLamp, + "minecraft:tripwire_hook" => Item::TripwireHook, + "minecraft:comparator" => Item::Comparator, + "minecraft:redstone_block" => Item::RedstoneBlock, + "minecraft:observer" => Item::Observer, + "minecraft:sea_pickle" => Item::SeaPickle, + "minecraft:target" => Item::Target, + "minecraft:stone_pressure_plate" => Item::StonePressurePlate, + "minecraft:cake" => Item::Cake, + "minecraft:barrel" => Item::Barrel, + "minecraft:hopper" => Item::Hopper, + "minecraft:sandstone" => Item::Sandstone, + "minecraft:coal_block" => Item::CoalBlock, + "minecraft:furnace" => Item::Furnace, + "minecraft:quartz_block" => Item::QuartzBlock, + "minecraft:smooth_quartz" => Item::SmoothQuartz, + "minecraft:smooth_stone_slab" => Item::SmoothStoneSlab, + "minecraft:quartz_slab" => Item::QuartzSlab, + "minecraft:cauldron" => Item::Cauldron, + "minecraft:composter" => Item::Composter, + "minecraft:white_concrete" => Item::WhiteConcrete, + "minecraft:orange_concrete" => Item::OrangeConcrete, + "minecraft:magenta_concrete" => Item::MagentaConcrete, + "minecraft:light_blue_concrete" => Item::LightBlueConcrete, + "minecraft:yellow_concrete" => Item::YellowConcrete, + "minecraft:lime_concrete" => Item::LimeConcrete, + "minecraft:pink_concrete" => Item::PinkConcrete, + "minecraft:gray_concrete" => Item::GrayConcrete, + "minecraft:light_gray_concrete" => Item::LightGrayConcrete, + "minecraft:cyan_concrete" => Item::CyanConcrete, + "minecraft:purple_concrete" => Item::PurpleConcrete, + "minecraft:blue_concrete" => Item::BlueConcrete, + "minecraft:brown_concrete" => Item::BrownConcrete, + "minecraft:green_concrete" => Item::GreenConcrete, + "minecraft:red_concrete" => Item::RedConcrete, + "minecraft:black_concrete" => Item::BlackConcrete, + "minecraft:white_stained_glass" => Item::WhiteStainedGlass, + "minecraft:orange_stained_glass" => Item::OrangeStainedGlass, + "minecraft:magenta_stained_glass" => Item::MagentaStainedGlass, + "minecraft:light_blue_stained_glass" => Item::LightBlueStainedGlass, + "minecraft:yellow_stained_glass" => Item::YellowStainedGlass, + "minecraft:lime_stained_glass" => Item::LimeStainedGlass, + "minecraft:pink_stained_glass" => Item::PinkStainedGlass, + "minecraft:gray_stained_glass" => Item::GrayStainedGlass, + "minecraft:light_gray_stained_glass" => Item::LightGrayStainedGlass, + "minecraft:cyan_stained_glass" => Item::CyanStainedGlass, + "minecraft:purple_stained_glass" => Item::PurpleStainedGlass, + "minecraft:blue_stained_glass" => Item::BlueStainedGlass, + "minecraft:brown_stained_glass" => Item::BrownStainedGlass, + "minecraft:green_stained_glass" => Item::GreenStainedGlass, + "minecraft:red_stained_glass" => Item::RedStainedGlass, + "minecraft:black_stained_glass" => Item::BlackStainedGlass, + "minecraft:terracotta" => Item::Terracotta, + "minecraft:white_terracotta" => Item::WhiteTerracotta, + "minecraft:orange_terracotta" => Item::OrangeTerracotta, + "minecraft:magenta_terracotta" => Item::MagentaTerracotta, + "minecraft:light_blue_terracotta" => Item::LightBlueTerracotta, + "minecraft:yellow_terracotta" => Item::YellowTerracotta, + "minecraft:lime_terracotta" => Item::LimeTerracotta, + "minecraft:pink_terracotta" => Item::PinkTerracotta, + "minecraft:gray_terracotta" => Item::GrayTerracotta, + "minecraft:light_gray_terracotta" => Item::LightGrayTerracotta, + "minecraft:cyan_terracotta" => Item::CyanTerracotta, + "minecraft:purple_terracotta" => Item::PurpleTerracotta, + "minecraft:blue_terracotta" => Item::BlueTerracotta, + "minecraft:brown_terracotta" => Item::BrownTerracotta, + "minecraft:green_terracotta" => Item::GreenTerracotta, + "minecraft:red_terracotta" => Item::RedTerracotta, + "minecraft:black_terracotta" => Item::BlackTerracotta, + "minecraft:white_wool" => Item::WhiteWool, + "minecraft:orange_wool" => Item::OrangeWool, + "minecraft:magenta_wool" => Item::MagentaWool, + "minecraft:light_blue_wool" => Item::LightBlueWool, + "minecraft:yellow_wool" => Item::YellowWool, + "minecraft:lime_wool" => Item::LimeWool, + "minecraft:pink_wool" => Item::PinkWool, + "minecraft:gray_wool" => Item::GrayWool, + "minecraft:light_gray_wool" => Item::LightGrayWool, + "minecraft:cyan_wool" => Item::CyanWool, + "minecraft:purple_wool" => Item::PurpleWool, + "minecraft:blue_wool" => Item::BlueWool, + "minecraft:brown_wool" => Item::BrownWool, + "minecraft:green_wool" => Item::GreenWool, + "minecraft:red_wool" => Item::RedWool, + "minecraft:black_wool" => Item::BlackWool, + "minecraft:iron_trapdoor" => Item::IronTrapdoor, + "minecraft:note_block" => Item::NoteBlock, + "minecraft:clay" => Item::Clay, + "minecraft:gold_block" => Item::GoldBlock, + "minecraft:packed_ice" => Item::PackedIce, + "minecraft:bone_block" => Item::BoneBlock, + "minecraft:iron_block" => Item::IronBlock, + "minecraft:soul_sand" => Item::SoulSand, + "minecraft:pumpkin" => Item::Pumpkin, + "minecraft:emerald_block" => Item::EmeraldBlock, + "minecraft:hay_block" => Item::HayBlock, + "minecraft:sand" => Item::Sand, + "minecraft:stone_bricks" => Item::StoneBricks, + "minecraft:end_portal_frame" => Item::EndPortalFrame, + "minecraft:wooden_axe" => Item::WoodenAxe, + "minecraft:snowball" => Item::Snowball, + "minecraft:totem_of_undying" => Item::TotemOfUndying, + "minecraft:milk_bucket" => Item::MilkBucket, + "minecraft:redstone" => Item::Redstone, + "minecraft:ender_eye" => Item::EnderEye, + _ => return None, + }) + } + pub fn get_simple_placement(self) -> Option { + match self { + Item::Stone => Some(Block::Stone), + Item::Glass => Some(Block::Glass), + Item::Glowstone => Some(Block::Glowstone), + Item::RedstoneBlock => Some(Block::RedstoneBlock), + Item::Sandstone => Some(Block::Sandstone), + Item::CoalBlock => Some(Block::CoalBlock), + Item::QuartzBlock => Some(Block::QuartzBlock), + Item::SmoothQuartz => Some(Block::SmoothQuartz), + Item::WhiteConcrete => Some(Block::WhiteConcrete), + Item::OrangeConcrete => Some(Block::OrangeConcrete), + Item::MagentaConcrete => Some(Block::MagentaConcrete), + Item::LightBlueConcrete => Some(Block::LightBlueConcrete), + Item::YellowConcrete => Some(Block::YellowConcrete), + Item::LimeConcrete => Some(Block::LimeConcrete), + Item::PinkConcrete => Some(Block::PinkConcrete), + Item::GrayConcrete => Some(Block::GrayConcrete), + Item::LightGrayConcrete => Some(Block::LightGrayConcrete), + Item::CyanConcrete => Some(Block::CyanConcrete), + Item::PurpleConcrete => Some(Block::PurpleConcrete), + Item::BlueConcrete => Some(Block::BlueConcrete), + Item::BrownConcrete => Some(Block::BrownConcrete), + Item::GreenConcrete => Some(Block::GreenConcrete), + Item::RedConcrete => Some(Block::RedConcrete), + Item::BlackConcrete => Some(Block::BlackConcrete), + Item::WhiteStainedGlass => Some(Block::WhiteStainedGlass), + Item::OrangeStainedGlass => Some(Block::OrangeStainedGlass), + Item::MagentaStainedGlass => Some(Block::MagentaStainedGlass), + Item::LightBlueStainedGlass => Some(Block::LightBlueStainedGlass), + Item::YellowStainedGlass => Some(Block::YellowStainedGlass), + Item::LimeStainedGlass => Some(Block::LimeStainedGlass), + Item::PinkStainedGlass => Some(Block::PinkStainedGlass), + Item::GrayStainedGlass => Some(Block::GrayStainedGlass), + Item::LightGrayStainedGlass => Some(Block::LightGrayStainedGlass), + Item::CyanStainedGlass => Some(Block::CyanStainedGlass), + Item::PurpleStainedGlass => Some(Block::PurpleStainedGlass), + Item::BlueStainedGlass => Some(Block::BlueStainedGlass), + Item::BrownStainedGlass => Some(Block::BrownStainedGlass), + Item::GreenStainedGlass => Some(Block::GreenStainedGlass), + Item::RedStainedGlass => Some(Block::RedStainedGlass), + Item::BlackStainedGlass => Some(Block::BlackStainedGlass), + Item::Terracotta => Some(Block::Terracotta), + Item::WhiteTerracotta => Some(Block::WhiteTerracotta), + Item::OrangeTerracotta => Some(Block::OrangeTerracotta), + Item::MagentaTerracotta => Some(Block::MagentaTerracotta), + Item::LightBlueTerracotta => Some(Block::LightBlueTerracotta), + Item::YellowTerracotta => Some(Block::YellowTerracotta), + Item::LimeTerracotta => Some(Block::LimeTerracotta), + Item::PinkTerracotta => Some(Block::PinkTerracotta), + Item::GrayTerracotta => Some(Block::GrayTerracotta), + Item::LightGrayTerracotta => Some(Block::LightGrayTerracotta), + Item::CyanTerracotta => Some(Block::CyanTerracotta), + Item::PurpleTerracotta => Some(Block::PurpleTerracotta), + Item::BlueTerracotta => Some(Block::BlueTerracotta), + Item::BrownTerracotta => Some(Block::BrownTerracotta), + Item::GreenTerracotta => Some(Block::GreenTerracotta), + Item::RedTerracotta => Some(Block::RedTerracotta), + Item::BlackTerracotta => Some(Block::BlackTerracotta), + Item::WhiteWool => Some(Block::WhiteWool), + Item::OrangeWool => Some(Block::OrangeWool), + Item::MagentaWool => Some(Block::MagentaWool), + Item::LightBlueWool => Some(Block::LightBlueWool), + Item::YellowWool => Some(Block::YellowWool), + Item::LimeWool => Some(Block::LimeWool), + Item::PinkWool => Some(Block::PinkWool), + Item::GrayWool => Some(Block::GrayWool), + Item::LightGrayWool => Some(Block::LightGrayWool), + Item::CyanWool => Some(Block::CyanWool), + Item::PurpleWool => Some(Block::PurpleWool), + Item::BlueWool => Some(Block::BlueWool), + Item::BrownWool => Some(Block::BrownWool), + Item::GreenWool => Some(Block::GreenWool), + Item::RedWool => Some(Block::RedWool), + Item::BlackWool => Some(Block::BlackWool), + Item::Clay => Some(Block::Clay), + Item::GoldBlock => Some(Block::GoldBlock), + Item::PackedIce => Some(Block::PackedIce), + Item::IronBlock => Some(Block::IronBlock), + Item::SoulSand => Some(Block::SoulSand), + Item::EmeraldBlock => Some(Block::EmeraldBlock), + Item::Sand => Some(Block::Sand), + Item::StoneBricks => Some(Block::StoneBricks), + _ => None, + } + } + pub fn is_block(self) -> bool { + match self { + Item::Stone => true, + Item::Glass => true, + Item::Glowstone => true, + Item::OakSign => true, + Item::SpruceSign => true, + Item::BirchSign => true, + Item::AcaciaSign => true, + Item::JungleSign => true, + Item::DarkOakSign => true, + Item::CrimsonSign => true, + Item::WarpedSign => true, + Item::Lever => true, + Item::StoneButton => true, + Item::RedstoneTorch => true, + Item::Repeater => true, + Item::RedstoneLamp => true, + Item::TripwireHook => true, + Item::Comparator => true, + Item::RedstoneBlock => true, + Item::Observer => true, + Item::SeaPickle => true, + Item::Target => true, + Item::StonePressurePlate => true, + Item::Cake => true, + Item::Barrel => true, + Item::Hopper => true, + Item::Sandstone => true, + Item::CoalBlock => true, + Item::Furnace => true, + Item::QuartzBlock => true, + Item::SmoothQuartz => true, + Item::SmoothStoneSlab => true, + Item::QuartzSlab => true, + Item::Cauldron => true, + Item::Composter => true, + Item::WhiteConcrete => true, + Item::OrangeConcrete => true, + Item::MagentaConcrete => true, + Item::LightBlueConcrete => true, + Item::YellowConcrete => true, + Item::LimeConcrete => true, + Item::PinkConcrete => true, + Item::GrayConcrete => true, + Item::LightGrayConcrete => true, + Item::CyanConcrete => true, + Item::PurpleConcrete => true, + Item::BlueConcrete => true, + Item::BrownConcrete => true, + Item::GreenConcrete => true, + Item::RedConcrete => true, + Item::BlackConcrete => true, + Item::WhiteStainedGlass => true, + Item::OrangeStainedGlass => true, + Item::MagentaStainedGlass => true, + Item::LightBlueStainedGlass => true, + Item::YellowStainedGlass => true, + Item::LimeStainedGlass => true, + Item::PinkStainedGlass => true, + Item::GrayStainedGlass => true, + Item::LightGrayStainedGlass => true, + Item::CyanStainedGlass => true, + Item::PurpleStainedGlass => true, + Item::BlueStainedGlass => true, + Item::BrownStainedGlass => true, + Item::GreenStainedGlass => true, + Item::RedStainedGlass => true, + Item::BlackStainedGlass => true, + Item::Terracotta => true, + Item::WhiteTerracotta => true, + Item::OrangeTerracotta => true, + Item::MagentaTerracotta => true, + Item::LightBlueTerracotta => true, + Item::YellowTerracotta => true, + Item::LimeTerracotta => true, + Item::PinkTerracotta => true, + Item::GrayTerracotta => true, + Item::LightGrayTerracotta => true, + Item::CyanTerracotta => true, + Item::PurpleTerracotta => true, + Item::BlueTerracotta => true, + Item::BrownTerracotta => true, + Item::GreenTerracotta => true, + Item::RedTerracotta => true, + Item::BlackTerracotta => true, + Item::WhiteWool => true, + Item::OrangeWool => true, + Item::MagentaWool => true, + Item::LightBlueWool => true, + Item::YellowWool => true, + Item::LimeWool => true, + Item::PinkWool => true, + Item::GrayWool => true, + Item::LightGrayWool => true, + Item::CyanWool => true, + Item::PurpleWool => true, + Item::BlueWool => true, + Item::BrownWool => true, + Item::GreenWool => true, + Item::RedWool => true, + Item::BlackWool => true, + Item::IronTrapdoor => true, + Item::NoteBlock => true, + Item::Clay => true, + Item::GoldBlock => true, + Item::PackedIce => true, + Item::BoneBlock => true, + Item::IronBlock => true, + Item::SoulSand => true, + Item::Pumpkin => true, + Item::EmeraldBlock => true, + Item::HayBlock => true, + Item::Sand => true, + Item::StoneBricks => true, + Item::EndPortalFrame => true, + Item::WoodenAxe => false, + Item::Snowball => false, + Item::TotemOfUndying => false, + Item::MilkBucket => false, + Item::Redstone => true, + Item::EnderEye => false, + Item::Unknown(_) => false, + } + } + pub fn max_stack_size(self) -> u32 { + match self { + Item::Stone => 64, + Item::Glass => 64, + Item::Glowstone => 64, + Item::OakSign => 64, + Item::SpruceSign => 64, + Item::BirchSign => 64, + Item::AcaciaSign => 64, + Item::JungleSign => 64, + Item::DarkOakSign => 64, + Item::CrimsonSign => 64, + Item::WarpedSign => 64, + Item::Lever => 64, + Item::StoneButton => 64, + Item::RedstoneTorch => 64, + Item::Repeater => 64, + Item::RedstoneLamp => 64, + Item::TripwireHook => 64, + Item::Comparator => 64, + Item::RedstoneBlock => 64, + Item::Observer => 64, + Item::SeaPickle => 64, + Item::Target => 64, + Item::StonePressurePlate => 64, + Item::Cake => 64, + Item::Barrel => 64, + Item::Hopper => 64, + Item::Sandstone => 64, + Item::CoalBlock => 64, + Item::Furnace => 64, + Item::QuartzBlock => 64, + Item::SmoothQuartz => 64, + Item::SmoothStoneSlab => 64, + Item::QuartzSlab => 64, + Item::Cauldron => 64, + Item::Composter => 64, + Item::WhiteConcrete => 64, + Item::OrangeConcrete => 64, + Item::MagentaConcrete => 64, + Item::LightBlueConcrete => 64, + Item::YellowConcrete => 64, + Item::LimeConcrete => 64, + Item::PinkConcrete => 64, + Item::GrayConcrete => 64, + Item::LightGrayConcrete => 64, + Item::CyanConcrete => 64, + Item::PurpleConcrete => 64, + Item::BlueConcrete => 64, + Item::BrownConcrete => 64, + Item::GreenConcrete => 64, + Item::RedConcrete => 64, + Item::BlackConcrete => 64, + Item::WhiteStainedGlass => 64, + Item::OrangeStainedGlass => 64, + Item::MagentaStainedGlass => 64, + Item::LightBlueStainedGlass => 64, + Item::YellowStainedGlass => 64, + Item::LimeStainedGlass => 64, + Item::PinkStainedGlass => 64, + Item::GrayStainedGlass => 64, + Item::LightGrayStainedGlass => 64, + Item::CyanStainedGlass => 64, + Item::PurpleStainedGlass => 64, + Item::BlueStainedGlass => 64, + Item::BrownStainedGlass => 64, + Item::GreenStainedGlass => 64, + Item::RedStainedGlass => 64, + Item::BlackStainedGlass => 64, + Item::Terracotta => 64, + Item::WhiteTerracotta => 64, + Item::OrangeTerracotta => 64, + Item::MagentaTerracotta => 64, + Item::LightBlueTerracotta => 64, + Item::YellowTerracotta => 64, + Item::LimeTerracotta => 64, + Item::PinkTerracotta => 64, + Item::GrayTerracotta => 64, + Item::LightGrayTerracotta => 64, + Item::CyanTerracotta => 64, + Item::PurpleTerracotta => 64, + Item::BlueTerracotta => 64, + Item::BrownTerracotta => 64, + Item::GreenTerracotta => 64, + Item::RedTerracotta => 64, + Item::BlackTerracotta => 64, + Item::WhiteWool => 64, + Item::OrangeWool => 64, + Item::MagentaWool => 64, + Item::LightBlueWool => 64, + Item::YellowWool => 64, + Item::LimeWool => 64, + Item::PinkWool => 64, + Item::GrayWool => 64, + Item::LightGrayWool => 64, + Item::CyanWool => 64, + Item::PurpleWool => 64, + Item::BlueWool => 64, + Item::BrownWool => 64, + Item::GreenWool => 64, + Item::RedWool => 64, + Item::BlackWool => 64, + Item::IronTrapdoor => 64, + Item::NoteBlock => 64, + Item::Clay => 64, + Item::GoldBlock => 64, + Item::PackedIce => 64, + Item::BoneBlock => 64, + Item::IronBlock => 64, + Item::SoulSand => 64, + Item::Pumpkin => 64, + Item::EmeraldBlock => 64, + Item::HayBlock => 64, + Item::Sand => 64, + Item::StoneBricks => 64, + Item::EndPortalFrame => 64, + Item::WoodenAxe => 1, + Item::Snowball => 16, + Item::TotemOfUndying => 1, + Item::MilkBucket => 1, + Item::Redstone => 64, + Item::EnderEye => 64, + Item::Unknown(_) => 64, + } + } +} diff --git a/crates/blocks/src/items.rs b/crates/blocks/src/items.rs index e4e4c461..0e2304a6 100644 --- a/crates/blocks/src/items.rs +++ b/crates/blocks/src/items.rs @@ -1,6 +1,6 @@ use crate::block_entities::ContainerType; -use crate::BlockColorVariant; use mchprs_utils::map; +pub use crate::generated::Item; #[derive(Clone, Debug)] pub struct ItemStack { @@ -57,420 +57,3 @@ impl ItemStack { } } } - -macro_rules! items { - ( - $( - $name:ident { - props: { - $( - $prop_name:ident : $prop_type:ident - ),* - }, - get_id: $get_id:expr, - $( from_id_offset: $get_id_offset:literal, )? - from_id($id_name:ident): $from_id_pat:pat => { - $( - $from_id_pkey:ident: $from_id_pval:expr - ),* - }, - $( max_stack: $max_stack:literal, )? - $( block: $block:literal, )? - } - ),* - ) => { - #[derive(Clone, Copy, Debug, PartialEq, Eq)] - pub enum Item { - $( - $name { - $( - $prop_name: $prop_type, - )* - } - ),* - } - - #[allow(clippy::redundant_field_names)] - impl Item { - pub fn get_id(self) -> u32 { - match self { - $( - Item::$name { - $( - $prop_name, - )* - } => $get_id, - )* - } - } - - pub fn from_id(mut id: u32) -> Item { - match id { - $( - $from_id_pat => { - $( id -= $get_id_offset; )? - let $id_name = id; - Item::$name { - $( - $from_id_pkey: $from_id_pval - ),* - } - }, - )* - } - } - - pub fn is_block(self) -> bool { - match self { - $( - $( Item::$name { .. } => $block, )? - )* - _ => false - } - } - - pub fn max_stack_size(self) -> u32 { - match self { - $( - $( Item::$name { .. } => $max_stack, )? - )* - _ => 64, - } - } - } - } -} - -items! { - // Wooden Axe - WEWand { - props: {}, - get_id: 817, - from_id(_id): 817 => {}, - }, - Snowball { - props: {}, - get_id: 909, - from_id(_id): 909 => {}, - max_stack: 16, - }, - TotemOfUndying { - props: {}, - get_id: 1156, - from_id(_id): 1156 => {}, - max_stack: 1, - }, - MilkBucket { - props: {}, - get_id: 911, - from_id(_id): 911 => {}, - max_stack: 1, - }, - Stone { - props: {}, - get_id: 1, - from_id(_id): 1 => {}, - block: true, - }, - Redstone { - props: {}, - get_id: 656, - from_id(_id): 656 => {}, - block: true, - }, - Glass { - props: {}, - get_id: 187, - from_id(_id): 187 => {}, - block: true, - }, - Glowstone { - props: {}, - get_id: 331, - from_id(_id): 331 => {}, - block: true, - }, - Sandstone { - props: {}, - get_id: 190, - from_id(_id): 190 => {}, - block: true, - }, - SeaPickle { - props: {}, - get_id: 200, - from_id(_id): 200 => {}, - block: true, - }, - Wool { - props: { - color: BlockColorVariant - }, - get_id: 201 + color.get_id(), - from_id_offset: 201, - from_id(id): 201..=216 => { - color: BlockColorVariant::from_id(id) - }, - block: true, - }, - Furnace { - props: {}, - get_id: 301, - from_id(_id): 301 => {}, - block: true, - }, - Lever { - props: {}, - get_id: 671, - from_id(_id): 671 => {}, - block: true, - }, - StonePressurePlate { - props: {}, - get_id: 694, - from_id(_id): 694 => {}, - block: true, - }, - RedstoneTorch { - props: {}, - get_id: 657, - from_id(_id): 657 => {}, - block: true, - }, - StoneButton { - props: {}, - get_id: 681, - from_id(_id): 681 => {}, - block: true, - }, - RedstoneLamp { - props: {}, - get_id: 679, - from_id(_id): 679 => {}, - block: true, - }, - RedstoneBlock { - props: {}, - get_id: 658, - from_id(_id): 658 => {}, - block: true, - }, - Hopper { - props: {}, - get_id: 666, - from_id(_id): 666 => {}, - block: true, - }, - TripwireHook { - props: {}, - get_id: 676, - from_id(_id): 676 => {}, - block: true, - }, - Terracotta { - props: {}, - get_id: 461, - from_id(_id): 461 => {}, - block: true, - }, - ColoredTerracotta { - props: { - color: BlockColorVariant - }, - get_id: 426 + color.get_id(), - from_id_offset: 426, - from_id(id): 426..=441 => { - color: BlockColorVariant::from_id(id) - }, - block: true, - }, - Concrete { - props: { - color: BlockColorVariant - }, - get_id: 554 + color.get_id(), - from_id_offset: 554, - from_id(id): 554..=569 => { - color: BlockColorVariant::from_id(id) - }, - block: true, - }, - StainedGlass { - props: { - color: BlockColorVariant - }, - get_id: 470 + color.get_id(), - from_id_offset: 470, - from_id(id): 470..=485 => { - color: BlockColorVariant::from_id(id) - }, - block: true, - }, - Repeater { - props: {}, - get_id: 659, - from_id(_id): 659 => {}, - block: true, - }, - Comparator { - props: {}, - get_id: 660, - from_id(_id): 660 => {}, - block: true, - }, - Sign { - props: { - sign_type: u32 - }, - get_id: 883 + sign_type, - from_id_offset: 883, - from_id(id): 883..=893 => { - sign_type: id - }, - block: true, - }, - Barrel { - props: {}, - get_id: 1193, - from_id(_id): 1193 => {}, - block: true, - }, - Target { - props: {}, - get_id: 670, - from_id(_id): 670 => {}, - block: true, - }, - SmoothStoneSlab { - props: {}, - get_id: 264, - from_id(_id): 264 => {}, - block: true, - }, - QuartzSlab { - props: {}, - get_id: 273, - from_id(_id): 273 => {}, - block: true, - }, - IronTrapdoor { - props: {}, - get_id: 729, - from_id(_id): 729 => {}, - block: true, - }, - NoteBlock { - props: {}, - get_id: 680, - from_id(_id): 680 => {}, - block: true, - }, - Clay { - props: {}, - get_id: 308, - from_id(_id): 308 => {}, - block: true, - }, - GoldBlock { - props: {}, - get_id: 89, - from_id(_id): 89 => {}, - block: true, - }, - PackedIce { - props: {}, - get_id: 462, - from_id(_id): 462 => {}, - block: true, - }, - BoneBlock { - props: {}, - get_id: 519, - from_id(_id): 519 => {}, - block: true, - }, - IronBlock { - props: {}, - get_id: 87, - from_id(_id): 87 => {}, - block: true, - }, - SoulSand { - props: {}, - get_id: 325, - from_id(_id): 325 => {}, - block: true, - }, - Pumpkin { - props: {}, - get_id: 321, - from_id(_id): 321 => {}, - block: true, - }, - EmeraldBlock { - props: {}, - get_id: 381, - from_id(_id): 381 => {}, - block: true, - }, - HayBlock { - props: {}, - get_id: 444, - from_id(_id): 444 => {}, - block: true, - }, - Sand { - props: {}, - get_id: 57, - from_id(_id): 57 => {}, - block: true, - }, - StoneBricks { - props: {}, - get_id: 339, - from_id(_id): 339 => {}, - block: true, - }, - EndPortalFrame { - props: {}, - get_id: 375, - from_id(_id): 375 => {}, - block: true, - }, - EnderEye { - props: {}, - get_id: 1003, - from_id(_id): 1003 => {}, - }, - Unknown { - props: { - id: u32 - }, - get_id: id, - from_id(id): _ => { id: id }, - } -} - -impl Item { - pub fn from_name(name: &str) -> Option { - match name { - "snowball" => Some(Item::Snowball {}), - "totem_of_undying" => Some(Item::TotemOfUndying {}), - "milk_bucket" => Some(Item::MilkBucket {}), - // Convert some common types of items to fix signal strength of containers - "redstone" => Some(Item::Redstone {}), - "stick" => Some(Item::Redstone {}), - "wooden_shovel" => Some(Item::TotemOfUndying {}), - _ => None, - } - } - - pub fn get_name(self) -> &'static str { - match self { - Item::Snowball {} => "snowball", - Item::TotemOfUndying {} => "totem_of_undying", - Item::MilkBucket {} => "milk_bucket", - _ => "redstone", - } - } -} diff --git a/crates/blocks/src/lib.rs b/crates/blocks/src/lib.rs index 574fbb78..ebb1010b 100644 --- a/crates/blocks/src/lib.rs +++ b/crates/blocks/src/lib.rs @@ -1,5 +1,6 @@ pub mod block_entities; pub mod blocks; +mod generated; pub mod items; pub use mchprs_proc_macros::BlockProperty; @@ -161,68 +162,13 @@ impl BlockFace { } } -#[derive(Copy, Clone, Debug, PartialEq, Eq)] -pub enum BlockColorVariant { - White = 0, - Orange = 1, - Magenta = 2, - LightBlue = 3, - Yellow = 4, - Lime = 5, - Pink = 6, - Gray = 7, - LightGray = 8, - Cyan = 9, - Purple = 10, - Blue = 11, - Brown = 12, - Green = 13, - Red = 14, - Black = 15, -} - -impl BlockColorVariant { - pub fn get_id(self) -> u32 { - self as u32 - } - - pub fn from_id(id: u32) -> BlockColorVariant { - use BlockColorVariant::*; - match id { - 0 => White, - 1 => Orange, - 2 => Magenta, - 3 => LightBlue, - 4 => Yellow, - 5 => Lime, - 6 => Pink, - 7 => Gray, - 8 => LightGray, - 9 => Cyan, - 10 => Purple, - 11 => Blue, - 12 => Brown, - 13 => Green, - 14 => Red, - 15 => Black, - _ => panic!("invalid BlockColorVariant with id {}", id), - } - } -} - -impl BlockProperty for BlockColorVariant { - // Don't encode: the color is encoded in the block name - fn encode(self, _props: &mut HashMap<&'static str, String>, _name: &'static str) {} - fn decode(&mut self, _props: &HashMap<&str, &str>, _name: &str) {} -} - #[derive(Copy, Clone, Default, Debug, PartialEq, Eq)] pub enum BlockDirection { North, South, - East, #[default] West, + East, } impl BlockDirection { @@ -256,25 +202,6 @@ impl BlockDirection { } } - pub fn from_id(id: u32) -> BlockDirection { - match id { - 0 => BlockDirection::North, - 1 => BlockDirection::South, - 2 => BlockDirection::West, - 3 => BlockDirection::East, - _ => panic!("invalid BlockDirection with id {}", id), - } - } - - pub fn get_id(self) -> u32 { - match self { - BlockDirection::North => 0, - BlockDirection::South => 1, - BlockDirection::West => 2, - BlockDirection::East => 3, - } - } - pub fn rotate(self) -> BlockDirection { use BlockDirection::*; match self { @@ -295,7 +222,7 @@ impl BlockDirection { } } - pub fn from_rotation(rotation: u32) -> Option { + pub fn from_rotation(rotation: u8) -> Option { match rotation { 0 => Some(BlockDirection::South), 4 => Some(BlockDirection::West), @@ -306,31 +233,6 @@ impl BlockDirection { } } -impl FromStr for BlockDirection { - type Err = (); - - fn from_str(s: &str) -> Result { - Ok(match s { - "north" => BlockDirection::North, - "south" => BlockDirection::South, - "east" => BlockDirection::East, - "west" => BlockDirection::West, - _ => return Err(()), - }) - } -} - -impl std::fmt::Display for BlockDirection { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_str(match self { - BlockDirection::North => "north", - BlockDirection::South => "south", - BlockDirection::East => "east", - BlockDirection::West => "west", - }) - } -} - #[derive(Copy, Clone, Default, Debug, PartialEq, Eq)] pub enum BlockFacing { North, @@ -343,29 +245,6 @@ pub enum BlockFacing { } impl BlockFacing { - pub fn from_id(id: u32) -> BlockFacing { - match id { - 0 => BlockFacing::North, - 1 => BlockFacing::East, - 2 => BlockFacing::South, - 3 => BlockFacing::West, - 4 => BlockFacing::Up, - 5 => BlockFacing::Down, - _ => panic!("invalid BlockFacing with id {}", id), - } - } - - pub fn get_id(self) -> u32 { - match self { - BlockFacing::North => 0, - BlockFacing::East => 1, - BlockFacing::South => 2, - BlockFacing::West => 3, - BlockFacing::Up => 4, - BlockFacing::Down => 5, - } - } - pub fn offset_pos(self, mut pos: BlockPos, n: i32) -> BlockPos { match self { BlockFacing::North => pos.z -= n, @@ -400,57 +279,3 @@ impl BlockFacing { } } } - -impl std::fmt::Display for BlockFacing { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_str(match self { - BlockFacing::North => "north", - BlockFacing::South => "south", - BlockFacing::East => "east", - BlockFacing::West => "west", - BlockFacing::Up => "up", - BlockFacing::Down => "down", - }) - } -} - -impl FromStr for BlockFacing { - type Err = (); - - fn from_str(s: &str) -> Result { - Ok(match s { - "north" => BlockFacing::North, - "south" => BlockFacing::South, - "east" => BlockFacing::East, - "west" => BlockFacing::West, - "up" => BlockFacing::Up, - "down" => BlockFacing::Down, - _ => return Err(()), - }) - } -} - -#[derive(Copy, Clone, Debug, PartialEq, Eq)] -pub struct SignType(pub u32); - -impl SignType { - pub fn from_item_type(sign_type: u32) -> Self { - Self(match sign_type { - 0 => 0, // Oak - 1 => 1, // Spruce - 2 => 2, // Birch - 3 => 4, // Jungle - 4 => 3, // Acacia - 5 => 5, // Dark Oak - 6 => 6, // Crimson - 7 => 7, // Warped - _ => sign_type, - }) - } -} - -impl BlockProperty for SignType { - // Don't encode - fn encode(self, _props: &mut HashMap<&'static str, String>, _name: &'static str) {} - fn decode(&mut self, _props: &HashMap<&str, &str>, _name: &str) {} -} diff --git a/crates/core/src/interaction.rs b/crates/core/src/interaction.rs index 9f0efb2f..711b0eaf 100644 --- a/crates/core/src/interaction.rs +++ b/crates/core/src/interaction.rs @@ -2,9 +2,9 @@ use crate::config::CONFIG; use crate::player::Player; use crate::plot::{PlotWorld, PLOT_BLOCK_HEIGHT}; use mchprs_blocks::block_entities::BlockEntity; -use mchprs_blocks::blocks::*; use mchprs_blocks::items::{Item, ItemStack}; -use mchprs_blocks::{BlockFace, BlockPos, SignType}; +use mchprs_blocks::{blocks::*, BlockDirection, BlockFacing}; +use mchprs_blocks::{BlockFace, BlockPos}; use mchprs_network::packets::clientbound::{COpenSignEditor, ClientBoundPacket}; use mchprs_redstone as redstone; use mchprs_utils::nbt_unwrap_val; @@ -22,13 +22,17 @@ pub fn on_use( } match block { - Block::SeaPickle { pickles } => { + Block::SeaPickle { + pickles, + waterlogged, + } => { if let Some(Item::SeaPickle {}) = item_in_hand { if pickles < 4 { world.set_block( pos, Block::SeaPickle { pickles: pickles + 1, + waterlogged, }, ); } @@ -57,114 +61,155 @@ pub fn on_use( } } +fn get_sign_placement( + context: &UseOnBlockContext<'_>, + standard: fn(u8) -> Block, + wall: fn(BlockDirection) -> Block, +) -> Block { + let rotation = (((180.0 + context.player.yaw) * 16.0 / 360.0) + 0.5).floor() as u8 & 15; + + match context.block_face { + BlockFace::Bottom => Block::Air {}, + BlockFace::Top => standard(rotation), + _ => wall(context.block_face.unwrap_direction()), + } +} + pub fn get_state_for_placement( world: &impl World, pos: BlockPos, item: Item, context: &UseOnBlockContext<'_>, ) -> Block { + let simple_block = item.get_simple_placement(); + macro_rules! sign_placement { + ($standard_block:ident, $wall_block:ident) => { + get_sign_placement( + context, + |rotation| Block::$standard_block { + waterlogged: false, + rotation, + }, + |facing| Block::$wall_block { + waterlogged: false, + facing, + }, + ) + }; + } let block = match item { - Item::Stone {} => Block::Stone {}, - Item::Glass {} => Block::Glass {}, - Item::Glowstone {} => Block::Glowstone {}, - Item::Sandstone {} => Block::Sandstone {}, - Item::SeaPickle {} => Block::SeaPickle { pickles: 1 }, - Item::Wool { color } => Block::Wool { color }, - Item::Furnace {} => Block::Furnace {}, - Item::StonePressurePlate {} => Block::StonePressurePlate { powered: false }, - Item::Lever {} => { - let lever_face = match context.block_face { + Item::OakSign => sign_placement!(OakSign, OakWallSign), + Item::SpruceSign => sign_placement!(SpruceSign, SpruceWallSign), + Item::BirchSign => sign_placement!(BirchSign, BirchWallSign), + Item::AcaciaSign => sign_placement!(AcaciaSign, AcaciaWallSign), + Item::JungleSign => sign_placement!(JungleSign, JungleWallSign), + Item::DarkOakSign => sign_placement!(DarkOakSign, DarkOakWallSign), + Item::CrimsonSign => sign_placement!(CrimsonSign, CrimsonWallSign), + Item::WarpedSign => sign_placement!(WarpedSign, WarpedWallSign), + Item::SeaPickle => Block::SeaPickle { + pickles: 1, + waterlogged: false, + }, + Item::Furnace => Block::Furnace { + facing: context.player.get_direction().opposite(), + lit: false, + }, + Item::StonePressurePlate => Block::StonePressurePlate { powered: false }, + Item::Lever => { + let face = match context.block_face { BlockFace::Top => LeverFace::Floor, BlockFace::Bottom => LeverFace::Ceiling, _ => LeverFace::Wall, }; - let facing = if lever_face == LeverFace::Wall { + let facing = if face == LeverFace::Wall { context.block_face.unwrap_direction() } else { context.player.get_direction() }; Block::Lever { - lever: Lever::new(lever_face, facing, false), + face, + facing, + powered: false, } } - Item::RedstoneTorch {} => match context.block_face { + Item::RedstoneTorch => match context.block_face { BlockFace::Top | BlockFace::Bottom => Block::RedstoneTorch { lit: true }, face => Block::RedstoneWallTorch { lit: true, facing: face.unwrap_direction(), }, }, - Item::TripwireHook {} => match context.block_face { + Item::TripwireHook => match context.block_face { BlockFace::Bottom | BlockFace::Top => Block::Air {}, direction => Block::TripwireHook { - direction: direction.unwrap_direction(), + facing: direction.unwrap_direction(), + powered: false, + attached: false, }, }, - Item::StoneButton {} => { - let button_face = match context.block_face { - BlockFace::Top => ButtonFace::Floor, - BlockFace::Bottom => ButtonFace::Ceiling, - _ => ButtonFace::Wall, + Item::StoneButton => { + let face = match context.block_face { + BlockFace::Top => LeverFace::Floor, + BlockFace::Bottom => LeverFace::Ceiling, + _ => LeverFace::Wall, }; - let facing = if button_face == ButtonFace::Wall { + let facing = if face == LeverFace::Wall { context.block_face.unwrap_direction() } else { context.player.get_direction() }; Block::StoneButton { - button: StoneButton::new(button_face, facing, false), + face, + facing, + powered: false, } } - Item::RedstoneLamp {} => Block::RedstoneLamp { + Item::RedstoneLamp => Block::RedstoneLamp { lit: redstone::redstone_lamp_should_be_lit(world, pos), }, - Item::RedstoneBlock {} => Block::RedstoneBlock {}, - Item::Hopper {} => Block::Hopper {}, - Item::Terracotta {} => Block::Terracotta {}, - Item::ColoredTerracotta { color } => Block::ColoredTerracotta { color }, - Item::Concrete { color } => Block::Concrete { color }, - Item::Repeater {} => Block::RedstoneRepeater { - repeater: redstone::repeater::get_state_for_placement( - world, - pos, - context.player.get_direction().opposite(), - ), + // TODO: Hopper facing + Item::Hopper => Block::Hopper { + enabled: false, + facing: HopperFacing::Down, }, - Item::Comparator {} => Block::RedstoneComparator { - comparator: RedstoneComparator::new( - context.player.get_direction().opposite(), - ComparatorMode::Compare, - false, - ), + Item::Repeater => Block::Repeater(redstone::repeater::get_state_for_placement( + world, + pos, + context.player.get_direction().opposite(), + )), + Item::Comparator => Block::Comparator(Comparator::new( + context.player.get_direction().opposite(), + ComparatorMode::Compare, + false, + )), + Item::Redstone => Block::RedstoneWire(redstone::wire::get_state_for_placement(world, pos)), + // TODO: Barrel facing + Item::Barrel => Block::Barrel { + facing: BlockFacing::Up, + open: false, }, - Item::Sign { sign_type } => match context.block_face { - BlockFace::Bottom => Block::Air {}, - BlockFace::Top => Block::Sign { - sign_type: SignType::from_item_type(sign_type), - rotation: (((180.0 + context.player.yaw) * 16.0 / 360.0) + 0.5).floor() as u32 & 15, - }, - _ => Block::WallSign { - sign_type: SignType::from_item_type(sign_type), - facing: context.block_face.unwrap_direction(), - }, + Item::Target => Block::Target { power: 0 }, + Item::SmoothStoneSlab => Block::SmoothStoneSlab { + ty: SlabType::Top, + waterlogged: false, }, - Item::Redstone {} => Block::RedstoneWire { - wire: redstone::wire::get_state_for_placement(world, pos), + Item::QuartzSlab => Block::QuartzSlab { + ty: SlabType::Top, + waterlogged: false, }, - Item::Barrel {} => Block::Barrel {}, - Item::Target {} => Block::Target {}, - Item::StainedGlass { color } => Block::StainedGlass { color }, - Item::SmoothStoneSlab {} => Block::SmoothStoneSlab {}, - Item::QuartzSlab {} => Block::QuartzSlab {}, - Item::IronTrapdoor {} => match context.block_face { + Item::IronTrapdoor => match context.block_face { BlockFace::Bottom => Block::IronTrapdoor { facing: context.player.get_direction().opposite(), half: TrapdoorHalf::Top, powered: false, + open: false, + waterlogged: false, }, BlockFace::Top => Block::IronTrapdoor { facing: context.player.get_direction().opposite(), half: TrapdoorHalf::Bottom, + open: false, + waterlogged: false, powered: false, }, _ => Block::IronTrapdoor { @@ -174,6 +219,8 @@ pub fn get_state_for_placement( } else { TrapdoorHalf::Bottom }, + open: false, + waterlogged: false, powered: false, }, }, @@ -182,23 +229,15 @@ pub fn get_state_for_placement( note: 0, powered: false, }, - Item::Clay {} => Block::Clay {}, - Item::GoldBlock {} => Block::GoldBlock {}, - Item::PackedIce {} => Block::PackedIce {}, - Item::BoneBlock {} => Block::BoneBlock {}, - Item::IronBlock {} => Block::IronBlock {}, - Item::SoulSand {} => Block::SoulSand {}, - Item::Pumpkin {} => Block::Pumpkin {}, - Item::EmeraldBlock {} => Block::EmeraldBlock {}, - Item::HayBlock {} => Block::HayBlock {}, - Item::Sand {} => Block::Sand {}, - Item::StoneBricks {} => Block::StoneBricks {}, + Item::BoneBlock => Block::BoneBlock { axis: BlockAxis::Y }, + Item::HayBlock => Block::HayBlock { axis: BlockAxis::Y }, Item::EndPortalFrame {} => Block::EndPortalFrame { eye: false, facing: context.player.get_direction().opposite(), }, _ => Block::Air {}, }; + let block = simple_block.unwrap_or(block); if is_valid_position(block, world, pos) { block } else { @@ -251,11 +290,11 @@ pub fn destroy(block: Block, world: &mut impl World, pos: BlockPos) { change_surrounding_blocks(world, pos); redstone::update_wire_neighbors(world, pos); } - Block::Lever { lever } => { + Block::Lever { face, facing, .. } => { world.set_block(pos, Block::Air {}); // This is a horrible idea, don't do this. // One day this will be fixed, but for now... too bad! - match lever.face { + match face { LeverFace::Ceiling => { change_surrounding_blocks(world, pos.offset(BlockFace::Top)); redstone::update_surrounding_blocks(world, pos.offset(BlockFace::Top)); @@ -265,13 +304,10 @@ pub fn destroy(block: Block, world: &mut impl World, pos: BlockPos) { redstone::update_surrounding_blocks(world, pos.offset(BlockFace::Bottom)); } LeverFace::Wall => { - change_surrounding_blocks( - world, - pos.offset(lever.facing.opposite().block_face()), - ); + change_surrounding_blocks(world, pos.offset(facing.opposite().block_face())); redstone::update_surrounding_blocks( world, - pos.offset(lever.facing.opposite().block_face()), + pos.offset(facing.opposite().block_face()), ); } } @@ -289,54 +325,59 @@ pub fn is_valid_position(block: Block, world: &impl World, pos: BlockPos) -> boo return true; } - match block { - Block::RedstoneWire { .. } - | Block::RedstoneComparator { .. } - | Block::RedstoneRepeater { .. } - | Block::Sign { .. } - | Block::RedstoneTorch { .. } => { - let bottom_block = world.get_block(pos.offset(BlockFace::Bottom)); - bottom_block.is_cube() - } - Block::RedstoneWallTorch { facing, .. } | Block::WallSign { facing, .. } => { - let parent_block = world.get_block(pos.offset(facing.opposite().block_face())); - parent_block.is_cube() - } - Block::TripwireHook { direction, .. } => { - let parent_block = world.get_block(pos.offset(direction.opposite().block_face())); - parent_block.is_cube() - } - Block::Lever { lever } => match lever.face { - LeverFace::Floor => { - let bottom_block = world.get_block(pos.offset(BlockFace::Bottom)); - bottom_block.is_cube() - } - LeverFace::Ceiling => { - let top_block = world.get_block(pos.offset(BlockFace::Top)); - top_block.is_cube() + let check_bottom = matches!( + block, + Block::RedstoneWire(_) + | Block::Comparator(_) + | Block::Repeater(_) + | Block::RedstoneTorch { .. } + | Block::Lever { + face: LeverFace::Floor, + .. } - LeverFace::Wall => { - let parent_block = - world.get_block(pos.offset(lever.facing.opposite().block_face())); - parent_block.is_cube() - } - }, - Block::StoneButton { button } => match button.face { - ButtonFace::Floor => { - let bottom_block = world.get_block(pos.offset(BlockFace::Bottom)); - bottom_block.is_cube() + | Block::StoneButton { + face: LeverFace::Floor, + .. } - ButtonFace::Ceiling => { - let top_block = world.get_block(pos.offset(BlockFace::Top)); - top_block.is_cube() - } - ButtonFace::Wall => { - let parent_block = - world.get_block(pos.offset(button.facing.opposite().block_face())); - parent_block.is_cube() - } - }, - _ => true, + ) || block.is_sign(); + + let check_top = matches!( + block, + Block::Lever { + face: LeverFace::Ceiling, + .. + } | Block::StoneButton { + face: LeverFace::Ceiling, + .. + } + ); + + let check_parent = block.get_wall_sign_facing().or(match block { + Block::TripwireHook { facing, .. } => Some(facing), + Block::StoneButton { + face: LeverFace::Wall, + facing, + .. + } => Some(facing), + Block::Lever { + face: LeverFace::Wall, + facing, + .. + } => Some(facing), + _ => None, + }); + + if check_bottom { + let bottom_block = world.get_block(pos.offset(BlockFace::Bottom)); + bottom_block.is_cube() + } else if check_top { + let top_block = world.get_block(pos.offset(BlockFace::Top)); + top_block.is_cube() + } else if let Some(facing) = check_parent { + let parent_block = world.get_block(pos.offset(facing.opposite().block_face())); + parent_block.is_cube() + } else { + true } } @@ -345,9 +386,9 @@ pub fn change(block: Block, world: &mut impl World, pos: BlockPos, direction: Bl destroy(block, world, pos); return; } - if let Block::RedstoneWire { wire } = block { + if let Block::RedstoneWire(wire) = block { let new_state = redstone::wire::on_neighbor_changed(wire, world, pos, direction); - if world.set_block(pos, Block::RedstoneWire { wire: new_state }) { + if world.set_block(pos, Block::RedstoneWire(new_state)) { redstone::update_wire_neighbors(world, pos); } } @@ -423,25 +464,21 @@ pub fn use_item_on_block( if can_place && (0..PLOT_BLOCK_HEIGHT).contains(&block_pos.y) { let block = get_state_for_placement(world, block_pos, item.item_type, &ctx); - match block { - Block::Sign { .. } | Block::WallSign { .. } => { - if !item - .nbt - .as_ref() - .is_some_and(|blob| blob.content.contains_key("BlockEntityTag")) - { - let open_sign_editor = COpenSignEditor { - pos_x: block_pos.x, - pos_y: block_pos.y, - pos_z: block_pos.z, - // TODO: editing back text - is_front_text: true, - } - .encode(); - ctx.player.client.send_packet(&open_sign_editor); - } + if (block.is_sign() || block.is_wall_sign()) + && !item + .nbt + .as_ref() + .is_some_and(|blob| blob.content.contains_key("BlockEntityTag")) + { + let open_sign_editor = COpenSignEditor { + pos_x: block_pos.x, + pos_y: block_pos.y, + pos_z: block_pos.z, + // TODO: editing back text + is_front_text: true, } - _ => {} + .encode(); + ctx.player.client.send_packet(&open_sign_editor); } place_in_world(block, world, block_pos, &item.nbt); diff --git a/crates/core/src/plot/mod.rs b/crates/core/src/plot/mod.rs index 0e7c06ad..c8d3997b 100644 --- a/crates/core/src/plot/mod.rs +++ b/crates/core/src/plot/mod.rs @@ -517,7 +517,7 @@ impl Plot { if let Some(item) = &item_in_hand { let has_permission = self.players[player].has_permission("worldedit.selection.pos"); - if item.item_type == (Item::WEWand {}) && has_permission { + if item.item_type == (Item::WoodenAxe) && has_permission { let same = self.players[player].second_position == Some(block_pos); if !same { self.players[player].worldedit_set_second_position(block_pos); @@ -609,7 +609,7 @@ impl Plot { .clone(); if let Some(item) = item_in_hand { let has_permission = self.players[player].has_permission("worldedit.selection.pos"); - if item.item_type == (Item::WEWand {}) && has_permission { + if item.item_type == (Item::WoodenAxe) && has_permission { self.send_block_change(block_pos, block.get_id()); if let Some(pos) = self.players[player].first_position { if pos == block_pos { @@ -1083,9 +1083,9 @@ impl Plot { || (block_x + 1) % PLOT_BLOCK_WIDTH == 0 || (block_z + 1) % PLOT_BLOCK_WIDTH == 0 { - Block::StoneBricks {} + Block::StoneBricks } else { - Block::Sandstone {} + Block::Sandstone }; chunk.set_block(rx as u32, ry as u32, rz as u32, block.get_id()); } diff --git a/crates/core/src/plot/worldedit/execute.rs b/crates/core/src/plot/worldedit/execute.rs index 18be1581..22bfd9a7 100644 --- a/crates/core/src/plot/worldedit/execute.rs +++ b/crates/core/src/plot/worldedit/execute.rs @@ -4,9 +4,9 @@ use crate::player::PacketSender; use crate::plot::PLOT_BLOCK_HEIGHT; use crate::utils::{self, HyphenatedUUID}; use mchprs_blocks::block_entities::InventoryEntry; -use mchprs_blocks::blocks::{Block, FlipDirection, RotateAmt}; +use mchprs_blocks::blocks::{Block, FlipDirection, HopperFacing, RotateAmt}; use mchprs_blocks::items::{Item, ItemStack}; -use mchprs_blocks::{BlockFace, BlockFacing, BlockPos}; +use mchprs_blocks::{BlockDirection, BlockFace, BlockFacing, BlockPos}; use mchprs_network::packets::clientbound::*; use mchprs_text::{ColorCode, TextComponentBuilder}; use once_cell::sync::Lazy; @@ -17,7 +17,7 @@ use tracing::error; pub(super) fn execute_wand(ctx: CommandExecuteContext<'_>) { let item = ItemStack { count: 1, - item_type: Item::WEWand {}, + item_type: Item::WoodenAxe, nbt: None, }; ctx.player.inventory[(ctx.player.selected_slot + 36) as usize] = Some(item); @@ -1026,9 +1026,18 @@ pub(super) fn execute_replace_container(ctx: CommandExecuteContext<'_>) { let to = ctx.arguments[1].unwrap_container_type(); let new_block = match to { - ContainerType::Furnace => Block::Furnace {}, - ContainerType::Barrel => Block::Barrel {}, - ContainerType::Hopper => Block::Hopper {}, + ContainerType::Furnace => Block::Furnace { + facing: BlockDirection::North, + lit: false, + }, + ContainerType::Barrel => Block::Barrel { + open: false, + facing: BlockFacing::Up, + }, + ContainerType::Hopper => Block::Hopper { + enabled: false, + facing: HopperFacing::Down, + }, }; let slots = to.num_slots() as u32; @@ -1041,7 +1050,7 @@ pub(super) fn execute_replace_container(ctx: CommandExecuteContext<'_>) { if !matches!( block, - Block::Furnace {} | Block::Barrel {} | Block::Hopper {} + Block::Furnace { .. } | Block::Barrel { .. } | Block::Hopper { .. } ) { continue; } diff --git a/crates/proc_macros/Cargo.toml b/crates/proc_macros/Cargo.toml index 1b243417..b612f629 100644 --- a/crates/proc_macros/Cargo.toml +++ b/crates/proc_macros/Cargo.toml @@ -15,4 +15,8 @@ proc-macro = true [dependencies] syn = { workspace = true } -quote = { workspace = true } \ No newline at end of file +quote = { workspace = true } +rustc-hash = { workspace = true } +serde_json = { workspace = true } +serde = { workspace = true, features = ["derive"] } +nom = { workspace = true } diff --git a/crates/proc_macros/src/block_attribs.rs b/crates/proc_macros/src/block_attribs.rs new file mode 100644 index 00000000..e83d4545 --- /dev/null +++ b/crates/proc_macros/src/block_attribs.rs @@ -0,0 +1,68 @@ +use proc_macro::TokenStream; +use quote::quote; +use syn::{Data, DeriveInput, Error, Ident, Type}; + +pub fn create_block_property_impl(input: DeriveInput) -> Result { + let fields = match input.data { + Data::Struct(ds) => ds.fields, + _ => { + return Err(Error::new_spanned( + input, + "BlockProperty proxy type must be a struct", + )) + } + }; + let field_types: Vec<&Type> = fields.iter().map(|f| &f.ty).collect(); + let field_names: Vec<&Ident> = fields.iter().map(|f| f.ident.as_ref().unwrap()).collect(); + let struct_name = input.ident; + + let tokens = quote! { + impl BlockProperty for #struct_name { + fn encode(self, props: &mut ::std::collections::HashMap<&'static str, String>, _name: &'static str) { + #( + <#field_types as BlockProperty>::encode(self.#field_names, props, stringify!(#field_names)); + )* + } + + fn decode(&mut self, props: &::std::collections::HashMap<&str, &str>, _name: &str) { + #( + <#field_types as BlockProperty>::decode(&mut self.#field_names, props, stringify!(#field_names)); + )* + } + } + }; + Ok(tokens.into()) +} + +pub fn create_block_transform_impl(input: DeriveInput) -> Result { + let fields = match input.data { + Data::Struct(ds) => ds.fields, + _ => { + return Err(Error::new_spanned( + input, + "BlockTransform proxy type must be a struct", + )) + } + }; + let field_types: Vec<&Type> = fields.iter().map(|f| &f.ty).collect(); + let field_names: Vec<&Ident> = fields.iter().map(|f| f.ident.as_ref().unwrap()).collect(); + let struct_name = input.ident; + + let tokens = quote! { + impl crate::blocks::BlockTransform for #struct_name { + fn rotate90(&mut self) { + #( + <#field_types as crate::blocks::BlockTransform>::rotate90(&mut self.#field_names); + )* + } + + fn flip(&mut self, dir: crate::blocks::FlipDirection) { + #( + <#field_types as crate::blocks::BlockTransform>::flip(&mut self.#field_names, dir); + )* + } + + } + }; + Ok(tokens.into()) +} diff --git a/crates/proc_macros/src/lib.rs b/crates/proc_macros/src/lib.rs index 979339fa..0a561fa6 100644 --- a/crates/proc_macros/src/lib.rs +++ b/crates/proc_macros/src/lib.rs @@ -1,88 +1,35 @@ use proc_macro::TokenStream; -use quote::quote; -use syn::{parse_macro_input, Data, DeriveInput, Error, Ident, Type}; +use syn::{parse_macro_input, DeriveInput}; + +mod block_attribs; +mod mc_data; #[proc_macro_derive(BlockProperty)] pub fn derive_block_property(input: TokenStream) -> TokenStream { let input = parse_macro_input!(input as DeriveInput); - match create_block_property_impl(input) { + match block_attribs::create_block_property_impl(input) { Ok(ts) => ts, Err(err) => err.to_compile_error().into(), } } -fn create_block_property_impl(input: DeriveInput) -> Result { - let fields = match input.data { - Data::Struct(ds) => ds.fields, - _ => { - return Err(Error::new_spanned( - input, - "BlockProperty proxy type must be a struct", - )) - } - }; - let field_types: Vec<&Type> = fields.iter().map(|f| &f.ty).collect(); - let field_names: Vec<&Ident> = fields.iter().map(|f| f.ident.as_ref().unwrap()).collect(); - let struct_name = input.ident; - - let tokens = quote! { - impl BlockProperty for #struct_name { - fn encode(self, props: &mut ::std::collections::HashMap<&'static str, String>, _name: &'static str) { - #( - <#field_types as BlockProperty>::encode(self.#field_names, props, stringify!(#field_names)); - )* - } - - fn decode(&mut self, props: &::std::collections::HashMap<&str, &str>, _name: &str) { - #( - <#field_types as BlockProperty>::decode(&mut self.#field_names, props, stringify!(#field_names)); - )* - } - } - }; - Ok(tokens.into()) -} - #[proc_macro_derive(BlockTransform)] pub fn derive_block_transform(input: TokenStream) -> TokenStream { let input = parse_macro_input!(input as DeriveInput); - match create_block_transform_impl(input) { + match block_attribs::create_block_transform_impl(input) { Ok(ts) => ts, Err(err) => err.to_compile_error().into(), } } -fn create_block_transform_impl(input: DeriveInput) -> Result { - let fields = match input.data { - Data::Struct(ds) => ds.fields, - _ => { - return Err(Error::new_spanned( - input, - "BlockTransform proxy type must be a struct", - )) - } - }; - let field_types: Vec<&Type> = fields.iter().map(|f| &f.ty).collect(); - let field_names: Vec<&Ident> = fields.iter().map(|f| f.ident.as_ref().unwrap()).collect(); - let struct_name = input.ident; - - let tokens = quote! { - impl crate::blocks::BlockTransform for #struct_name { - fn rotate90(&mut self) { - #( - <#field_types as crate::blocks::BlockTransform>::rotate90(&mut self.#field_names); - )* - } +#[proc_macro] +pub fn block_id(input: TokenStream) -> TokenStream { + let input = parse_macro_input!(input as syn::LitStr); - fn flip(&mut self, dir: crate::blocks::FlipDirection) { - #( - <#field_types as crate::blocks::BlockTransform>::flip(&mut self.#field_names, dir); - )* - } - - } - }; - Ok(tokens.into()) -} + match mc_data::get_block_id(input) { + Ok(ts) => ts, + Err(err) => err.to_compile_error().into(), + } +} \ No newline at end of file diff --git a/crates/proc_macros/src/mc_data.rs b/crates/proc_macros/src/mc_data.rs new file mode 100644 index 00000000..a4fe23ab --- /dev/null +++ b/crates/proc_macros/src/mc_data.rs @@ -0,0 +1,108 @@ +use nom::{ + bytes::complete::{tag, take_till, take_until}, + character::complete::char, + multi::separated_list1, + sequence::{delimited, separated_pair}, + IResult, Parser, +}; +use proc_macro::TokenStream; +use quote::quote; +use rustc_hash::FxHashMap; +use serde::Deserialize; +use std::{collections::HashMap, path::PathBuf, sync::LazyLock}; +use syn::{Error, LitStr}; + +#[derive(Deserialize)] +struct BlockData { + // properties: FxHashMap, + states: Vec, +} + +#[derive(Deserialize)] +struct BlockState { + id: u32, + properties: Option>, +} + +fn mc_data_path(name: &str) -> PathBuf { + let manifest_dir = std::env::var("CARGO_MANIFEST_DIR").unwrap(); + PathBuf::from(manifest_dir).join("../../mc_data").join(name) +} + +static BLOCKS: LazyLock> = LazyLock::new(|| { + let path = std::fs::read_to_string(mc_data_path("blocks.json")).unwrap(); + serde_json::from_str(&path).unwrap() +}); + +fn parse_props(input: &str) -> IResult<&str, HashMap<&str, &str>> { + let (input, items) = separated_list1( + char(','), + separated_pair( + take_until("="), + char('='), + take_till(|c| c == ']' || c == ','), + ), + ) + .parse(input)?; + Ok((input, items.into_iter().collect())) +} + +struct BlockInfo<'a> { + name: &'a str, + props: HashMap<&'a str, &'a str>, +} + +fn parse_block(input: &'_ str) -> IResult<&'_ str, BlockInfo<'_>> { + let (input, block_name) = take_till(|c| c == '[')(input)?; + if input.is_empty() { + return Ok(( + input, + BlockInfo { + name: block_name, + props: HashMap::new(), + }, + )); + } + + let (_, props) = delimited(char('['), parse_props, char(']')).parse(input)?; + let block_info = BlockInfo { + name: block_name, + props, + }; + + Ok((input, block_info)) +} + +pub fn get_block_id(str: LitStr) -> Result { + let full_name = str.value(); + let (_, block_info) = parse_block(&full_name) + .map_err(|_| Error::new_spanned(&str, "failed to parse block name"))?; + + dbg!(&block_info.name); + let block = BLOCKS + .get(block_info.name) + .ok_or_else(|| Error::new_spanned(&str, "could not find block with name"))?; + + 'states: for state in &block.states { + if let Some(properties) = &state.properties { + for (&name, &value) in &block_info.props { + let prop = properties + .get(name) + .ok_or_else(|| Error::new_spanned(&str, "invalid property name"))? + .as_str() + .unwrap(); + if prop != value { + continue 'states; + } + } + } + let id = state.id; + let tokens = quote! { #id }; + return Ok(TokenStream::from(tokens)); + } + + Err(Error::new_spanned( + str, + "could not find matching block state", + )) +} diff --git a/crates/redpiler/src/backend/direct/compile.rs b/crates/redpiler/src/backend/direct/compile.rs index 37f4ae28..280ee346 100644 --- a/crates/redpiler/src/backend/direct/compile.rs +++ b/crates/redpiler/src/backend/direct/compile.rs @@ -26,7 +26,7 @@ fn compile_node( node_idx: NodeIdx, nodes_len: usize, nodes_map: &FxHashMap, - noteblock_info: &mut Vec<(BlockPos, Instrument, u32)>, + noteblock_info: &mut Vec<(BlockPos, Instrument, u8)>, forward_links: &mut Vec, stats: &mut FinalGraphStats, ) -> Node { diff --git a/crates/redpiler/src/backend/direct/mod.rs b/crates/redpiler/src/backend/direct/mod.rs index 34c14b86..db30dcd3 100644 --- a/crates/redpiler/src/backend/direct/mod.rs +++ b/crates/redpiler/src/backend/direct/mod.rs @@ -113,7 +113,7 @@ pub struct DirectBackend { pos_map: FxHashMap, scheduler: TickScheduler, events: Vec, - noteblock_info: Vec<(BlockPos, Instrument, u32)>, + noteblock_info: Vec<(BlockPos, Instrument, u8)>, } impl DirectBackend { @@ -257,10 +257,10 @@ impl JITBackend for DirectBackend { if let Some(powered) = block_powered_mut(block) { *powered = node.powered } - if let Block::RedstoneWire { wire, .. } = block { + if let Block::RedstoneWire(wire) = block { wire.power = node.output_power }; - if let Block::RedstoneRepeater { repeater } = block { + if let Block::Repeater(repeater) = block { repeater.locked = node.locked; } world.set_block(*pos, *block); diff --git a/crates/redpiler/src/compile_graph.rs b/crates/redpiler/src/compile_graph.rs index f733e9ff..c249df58 100644 --- a/crates/redpiler/src/compile_graph.rs +++ b/crates/redpiler/src/compile_graph.rs @@ -25,7 +25,7 @@ pub enum NodeType { Constant, NoteBlock { instrument: Instrument, - note: u32, + note: u8, }, } diff --git a/crates/redpiler/src/lib.rs b/crates/redpiler/src/lib.rs index 36d3c162..a3c4c922 100644 --- a/crates/redpiler/src/lib.rs +++ b/crates/redpiler/src/lib.rs @@ -17,12 +17,12 @@ pub use task_monitor::TaskMonitor; fn block_powered_mut(block: &mut Block) -> Option<&mut bool> { Some(match block { - Block::RedstoneComparator { comparator } => &mut comparator.powered, + Block::Comparator(comparator) => &mut comparator.powered, Block::RedstoneTorch { lit } => lit, Block::RedstoneWallTorch { lit, .. } => lit, - Block::RedstoneRepeater { repeater } => &mut repeater.powered, - Block::Lever { lever } => &mut lever.powered, - Block::StoneButton { button } => &mut button.powered, + Block::Repeater(repeater) => &mut repeater.powered, + Block::Lever { powered, .. } => powered, + Block::StoneButton { powered, .. } => powered, Block::StonePressurePlate { powered } => powered, Block::RedstoneLamp { lit } => lit, Block::IronTrapdoor { powered, .. } => powered, diff --git a/crates/redpiler/src/passes/identify_nodes.rs b/crates/redpiler/src/passes/identify_nodes.rs index 7d00fa25..fbbea10f 100644 --- a/crates/redpiler/src/passes/identify_nodes.rs +++ b/crates/redpiler/src/passes/identify_nodes.rs @@ -78,7 +78,7 @@ fn for_pos( let id = world.get_block_raw(pos); let block = Block::from_id(id); - if matches!(block, Block::Sign { .. } | Block::WallSign { .. }) { + if block.is_sign() || block.is_wall_sign() { second_pass.insert(pos); return; } @@ -94,7 +94,7 @@ fn for_pos( let is_output = matches!( ty, NodeType::Trapdoor | NodeType::Lamp | NodeType::NoteBlock { .. } - ) || matches!(block, Block::RedstoneWire { wire } if wire_dot_out && wire::is_dot(wire)); + ) || matches!(block, Block::RedstoneWire(wire) if wire_dot_out && wire::is_dot(wire)); if ignore_wires && ty == NodeType::Wire && !(is_input | is_output) { return; @@ -118,7 +118,7 @@ fn identify_block( world: &W, ) -> Option<(NodeType, NodeState)> { let (ty, state) = match block { - Block::RedstoneRepeater { repeater } => ( + Block::Repeater(repeater) => ( NodeType::Repeater { delay: repeater.delay, facing_diode: mchprs_redstone::is_diode( @@ -127,7 +127,7 @@ fn identify_block( }, NodeState::repeater(repeater.powered, repeater.locked), ), - Block::RedstoneComparator { comparator } => ( + Block::Comparator(comparator) => ( NodeType::Comparator { mode: comparator.mode, far_input: comparator::get_far_input(world, pos, comparator.facing), @@ -149,15 +149,15 @@ fn identify_block( Block::RedstoneTorch { lit, .. } | Block::RedstoneWallTorch { lit, .. } => { (NodeType::Torch, NodeState::simple(lit)) } - Block::RedstoneWire { wire } => (NodeType::Wire, NodeState::ss(wire.power)), - Block::StoneButton { button } => (NodeType::Button, NodeState::simple(button.powered)), + Block::RedstoneWire(wire) => (NodeType::Wire, NodeState::ss(wire.power)), + Block::StoneButton { powered, .. } => (NodeType::Button, NodeState::simple(powered)), Block::RedstoneLamp { lit } => (NodeType::Lamp, NodeState::simple(lit)), - Block::Lever { lever } => (NodeType::Lever, NodeState::simple(lever.powered)), + Block::Lever { powered, .. } => (NodeType::Lever, NodeState::simple(powered)), Block::StonePressurePlate { powered } => { (NodeType::PressurePlate, NodeState::simple(powered)) } Block::IronTrapdoor { powered, .. } => (NodeType::Trapdoor, NodeState::simple(powered)), - Block::RedstoneBlock {} => (NodeType::Constant, NodeState::ss(15)), + Block::RedstoneBlock => (NodeType::Constant, NodeState::ss(15)), Block::NoteBlock { instrument: _, note, @@ -191,8 +191,8 @@ fn apply_annotations( return; } - let targets = match block { - Block::Sign { rotation, .. } => { + let targets = match (block.get_sign_rotation(), block.get_wall_sign_facing()) { + (Some(rotation), None) => { if let Some(facing) = BlockDirection::from_rotation(rotation) { let behind = pos.offset(facing.opposite().block_face()); vec![behind] @@ -201,7 +201,7 @@ fn apply_annotations( return; } } - Block::WallSign { facing, .. } => { + (None, Some(facing)) => { let behind = pos.offset(facing.opposite().block_face()); vec![ behind, diff --git a/crates/redpiler/src/passes/input_search.rs b/crates/redpiler/src/passes/input_search.rs index 39c2f1f1..e11d9090 100644 --- a/crates/redpiler/src/passes/input_search.rs +++ b/crates/redpiler/src/passes/input_search.rs @@ -7,7 +7,7 @@ use super::Pass; use crate::compile_graph::{CompileGraph, CompileLink, LinkType, NodeIdx}; use crate::passes::AnalysisInfos; use crate::{CompilerInput, CompilerOptions}; -use mchprs_blocks::blocks::{Block, ButtonFace, LeverFace}; +use mchprs_blocks::blocks::{Block, LeverFace}; use mchprs_blocks::{BlockDirection, BlockFace, BlockPos}; use mchprs_redstone::{self, comparator, wire}; use mchprs_world::World; @@ -116,7 +116,7 @@ impl<'a, W: World> InputSearchState<'a, W> { ); } - if let Block::RedstoneWire { wire } = block { + if let Block::RedstoneWire(wire) = block { if !search_wire { continue; } @@ -146,7 +146,7 @@ impl<'a, W: World> InputSearchState<'a, W> { start_node, CompileLink::new(link_ty, distance), ); - } else if let Block::RedstoneWire { wire } = block { + } else if let Block::RedstoneWire(wire) = block { match side { BlockFace::Top => self.search_wire(start_node, pos, link_ty, distance), BlockFace::Bottom => {} @@ -303,7 +303,7 @@ impl<'a, W: World> InputSearchState<'a, W> { true, ); } - Block::RedstoneComparator { comparator } => { + Block::Comparator(comparator) => { let facing = comparator.facing; self.search_comparator_side(id, pos, facing.rotate()); @@ -318,7 +318,7 @@ impl<'a, W: World> InputSearchState<'a, W> { self.search_diode_inputs(id, pos, facing); } } - Block::RedstoneRepeater { repeater } => { + Block::Repeater(repeater) => { let facing = repeater.facing; self.search_diode_inputs(id, pos, facing); @@ -373,8 +373,8 @@ fn provides_weak_power(block: Block, side: BlockFace) -> bool { Block::Lever { .. } => true, Block::StoneButton { .. } => true, Block::StonePressurePlate { .. } => true, - Block::RedstoneRepeater { repeater } => repeater.facing.block_face() == side, - Block::RedstoneComparator { comparator } => comparator.facing.block_face() == side, + Block::Repeater(repeater) => repeater.facing.block_face() == side, + Block::Comparator(comparator) => comparator.facing.block_face() == side, _ => false, } } @@ -386,18 +386,18 @@ fn provides_strong_power(block: Block, side: BlockFace) -> bool { Block::RedstoneTorch { .. } if side == BlockFace::Bottom => true, Block::RedstoneWallTorch { .. } if side == BlockFace::Bottom => true, Block::StonePressurePlate { .. } if side == BlockFace::Top => true, - Block::Lever { lever } => match side { - BlockFace::Top => lever.face == LeverFace::Floor, - BlockFace::Bottom => lever.face == LeverFace::Ceiling, - _ => lever.face == LeverFace::Wall && lever.facing == side.unwrap_direction(), + Block::Lever { face, facing, .. } => match side { + BlockFace::Top => face == LeverFace::Floor, + BlockFace::Bottom => face == LeverFace::Ceiling, + _ => face == LeverFace::Wall && facing == side.unwrap_direction(), }, - Block::StoneButton { button } => match side { - BlockFace::Top => button.face == ButtonFace::Floor, - BlockFace::Bottom => button.face == ButtonFace::Ceiling, - _ => button.face == ButtonFace::Wall && button.facing == side.unwrap_direction(), + Block::StoneButton { face, facing, .. } => match side { + BlockFace::Top => face == LeverFace::Floor, + BlockFace::Bottom => face == LeverFace::Ceiling, + _ => face == LeverFace::Wall && facing == side.unwrap_direction(), }, - Block::RedstoneRepeater { repeater } => repeater.facing.block_face() == side, - Block::RedstoneComparator { comparator } => comparator.facing.block_face() == side, + Block::Repeater(repeater) => repeater.facing.block_face() == side, + Block::Comparator(comparator) => comparator.facing.block_face() == side, _ => false, } } diff --git a/crates/redpiler/src/ril.rs b/crates/redpiler/src/ril.rs index f989326f..a82d23c4 100644 --- a/crates/redpiler/src/ril.rs +++ b/crates/redpiler/src/ril.rs @@ -393,12 +393,6 @@ impl<'a> Lexer<'a> { "bit" => Token::Instrument(Instrument::Bit), "banjo" => Token::Instrument(Instrument::Banjo), "pling" => Token::Instrument(Instrument::Pling), - "zombie" => Token::Instrument(Instrument::Zombie), - "skeleton" => Token::Instrument(Instrument::Skeleton), - "creeper" => Token::Instrument(Instrument::Creeper), - "dragon" => Token::Instrument(Instrument::Dragon), - "wither_skeleton" => Token::Instrument(Instrument::WitherSkeleton), - "piglin" => Token::Instrument(Instrument::Piglin), // Bool "false" => Token::Bool(false), "true" => Token::Bool(true), diff --git a/crates/redstone/src/comparator.rs b/crates/redstone/src/comparator.rs index 2411656a..e3894719 100644 --- a/crates/redstone/src/comparator.rs +++ b/crates/redstone/src/comparator.rs @@ -1,5 +1,5 @@ use mchprs_blocks::block_entities::BlockEntity; -use mchprs_blocks::blocks::{Block, ComparatorMode, RedstoneComparator}; +use mchprs_blocks::blocks::{Block, Comparator, ComparatorMode}; use mchprs_blocks::{BlockDirection, BlockFace, BlockPos}; use mchprs_world::{TickPriority, World}; use tracing::warn; @@ -9,16 +9,16 @@ fn get_power_on_side(world: &impl World, pos: BlockPos, side: BlockDirection) -> let side_block = world.get_block(side_pos); if super::is_diode(side_block) { super::get_weak_power(side_block, world, side_pos, side.block_face(), false) - } else if let Block::RedstoneWire { wire } = side_block { + } else if let Block::RedstoneWire(wire) = side_block { wire.power - } else if let Block::RedstoneBlock {} = side_block { + } else if let Block::RedstoneBlock = side_block { 15 } else { 0 } } -fn get_power_on_sides(comp: RedstoneComparator, world: &impl World, pos: BlockPos) -> u8 { +fn get_power_on_sides(comp: Comparator, world: &impl World, pos: BlockPos) -> u8 { std::cmp::max( get_power_on_side(world, pos, comp.facing.rotate()), get_power_on_side(world, pos, comp.facing.rotate_ccw()), @@ -54,7 +54,7 @@ pub fn get_override(block: Block, world: &impl World, pos: BlockPos) -> u8 { None => 0, } } - Block::Cauldron { level } => level, + Block::WaterCauldron { level } => level, Block::Composter { level } => level, Block::Cake { bites } => 14 - 2 * bites, Block::EndPortalFrame { eye: true, .. } => 15, @@ -79,7 +79,7 @@ pub fn get_far_input(world: &impl World, pos: BlockPos, facing: BlockDirection) } } -fn calculate_input_strength(comp: RedstoneComparator, world: &impl World, pos: BlockPos) -> u8 { +fn calculate_input_strength(comp: Comparator, world: &impl World, pos: BlockPos) -> u8 { let base_input_strength = super::diode_get_input_strength(world, pos, comp.facing); let input_pos = pos.offset(comp.facing.block_face()); let input_block = world.get_block(input_pos); @@ -98,7 +98,7 @@ fn calculate_input_strength(comp: RedstoneComparator, world: &impl World, pos: B } } -pub fn should_be_powered(comp: RedstoneComparator, world: &impl World, pos: BlockPos) -> bool { +pub fn should_be_powered(comp: Comparator, world: &impl World, pos: BlockPos) -> bool { let input_strength = calculate_input_strength(comp, world, pos); if input_strength == 0 { false @@ -112,11 +112,7 @@ pub fn should_be_powered(comp: RedstoneComparator, world: &impl World, pos: Bloc } } -fn calculate_output_strength( - comp: RedstoneComparator, - world: &mut impl World, - pos: BlockPos, -) -> u8 { +fn calculate_output_strength(comp: Comparator, world: &mut impl World, pos: BlockPos) -> u8 { let input_strength = calculate_input_strength(comp, world, pos); if comp.mode == ComparatorMode::Subtract { input_strength.saturating_sub(get_power_on_sides(comp, world, pos)) @@ -130,7 +126,7 @@ fn calculate_output_strength( // This is exactly the same as it is in the RedstoneRepeater struct. // Sometime in the future, this needs to be reused. LLVM might optimize // it way, but te human brane wil not! -fn on_state_change(comp: RedstoneComparator, world: &mut impl World, pos: BlockPos) { +fn on_state_change(comp: Comparator, world: &mut impl World, pos: BlockPos) { let front_pos = pos.offset(comp.facing.opposite().block_face()); let front_block = world.get_block(front_pos); super::update(front_block, world, front_pos); @@ -141,7 +137,7 @@ fn on_state_change(comp: RedstoneComparator, world: &mut impl World, pos: BlockP } } -pub fn update(comp: RedstoneComparator, world: &mut impl World, pos: BlockPos) { +pub fn update(comp: Comparator, world: &mut impl World, pos: BlockPos) { if world.pending_tick_at(pos) { return; } @@ -163,7 +159,7 @@ pub fn update(comp: RedstoneComparator, world: &mut impl World, pos: BlockPos) { } } -pub fn tick(mut comp: RedstoneComparator, world: &mut impl World, pos: BlockPos) { +pub fn tick(mut comp: Comparator, world: &mut impl World, pos: BlockPos) { let new_strength = calculate_output_strength(comp, world, pos); let old_strength = if let Some(BlockEntity::Comparator { output_strength: old_output_strength, @@ -184,10 +180,10 @@ pub fn tick(mut comp: RedstoneComparator, world: &mut impl World, pos: BlockPos) let powered = comp.powered; if powered && !should_be_powered { comp.powered = false; - world.set_block(pos, Block::RedstoneComparator { comparator: comp }); + world.set_block(pos, Block::Comparator(comp)); } else if !powered && should_be_powered { comp.powered = true; - world.set_block(pos, Block::RedstoneComparator { comparator: comp }); + world.set_block(pos, Block::Comparator(comp)); } on_state_change(comp, world, pos); } diff --git a/crates/redstone/src/lib.rs b/crates/redstone/src/lib.rs index 2a5abe94..10d1014f 100644 --- a/crates/redstone/src/lib.rs +++ b/crates/redstone/src/lib.rs @@ -8,7 +8,7 @@ pub mod repeater; pub mod wire; use mchprs_blocks::block_entities::BlockEntity; -use mchprs_blocks::blocks::{Block, ButtonFace, LeverFace, RedstoneWire}; +use mchprs_blocks::blocks::{Block, LeverFace, RedstoneWire}; use mchprs_blocks::{BlockDirection, BlockFace, BlockPos}; use mchprs_world::{TickPriority, World}; @@ -31,21 +31,17 @@ fn get_weak_power( Block::RedstoneWallTorch { lit: true, facing } if facing.block_face() != side => 15, Block::RedstoneBlock {} => 15, Block::StonePressurePlate { powered: true } => 15, - Block::Lever { lever } if lever.powered => 15, - Block::StoneButton { button } if button.powered => 15, - Block::RedstoneRepeater { repeater } - if repeater.facing.block_face() == side && repeater.powered => - { - 15 - } - Block::RedstoneComparator { comparator } if comparator.facing.block_face() == side => { + Block::Lever { powered, .. } if powered => 15, + Block::StoneButton { powered, .. } if powered => 15, + Block::Repeater(repeater) if repeater.facing.block_face() == side && repeater.powered => 15, + Block::Comparator(comparator) if comparator.facing.block_face() == side => { if let Some(BlockEntity::Comparator { output_strength }) = world.get_block_entity(pos) { *output_strength } else { 0 } } - Block::RedstoneWire { wire } if dust_power => match side { + Block::RedstoneWire(wire) if dust_power => match side { BlockFace::Top => wire.power, BlockFace::Bottom => 0, _ => { @@ -76,24 +72,32 @@ fn get_strong_power( match block { Block::RedstoneTorch { lit: true } if side == BlockFace::Bottom => 15, Block::RedstoneWallTorch { lit: true, .. } if side == BlockFace::Bottom => 15, - Block::Lever { lever } => bool_to_ss( + Block::Lever { + face, + facing, + powered, + } => bool_to_ss( match side { - BlockFace::Top => lever.face == LeverFace::Floor, - BlockFace::Bottom => lever.face == LeverFace::Ceiling, - _ => lever.face == LeverFace::Wall && lever.facing == side.unwrap_direction(), - } && lever.powered, + BlockFace::Top => face == LeverFace::Floor, + BlockFace::Bottom => face == LeverFace::Ceiling, + _ => face == LeverFace::Wall && facing == side.unwrap_direction(), + } && powered, ), - Block::StoneButton { button } => bool_to_ss( + Block::StoneButton { + face, + facing, + powered, + } => bool_to_ss( match side { - BlockFace::Top => button.face == ButtonFace::Floor, - BlockFace::Bottom => button.face == ButtonFace::Ceiling, - _ => button.face == ButtonFace::Wall && button.facing == side.unwrap_direction(), - } && button.powered, + BlockFace::Top => face == LeverFace::Floor, + BlockFace::Bottom => face == LeverFace::Ceiling, + _ => face == LeverFace::Wall && facing == side.unwrap_direction(), + } && powered, ), Block::StonePressurePlate { powered: true } if side == BlockFace::Top => 15, Block::RedstoneWire { .. } => get_weak_power(block, world, pos, side, dust_power), - Block::RedstoneRepeater { .. } => get_weak_power(block, world, pos, side, dust_power), - Block::RedstoneComparator { .. } => get_weak_power(block, world, pos, side, dust_power), + Block::Repeater(_) => get_weak_power(block, world, pos, side, dust_power), + Block::Comparator(_) => get_weak_power(block, world, pos, side, dust_power), _ => 0, } } @@ -175,7 +179,7 @@ fn diode_get_input_strength(world: &impl World, pos: BlockPos, facing: BlockDire let input_block = world.get_block(input_pos); let mut power = get_redstone_power(input_block, world, input_pos, facing.block_face()); if power == 0 { - if let Block::RedstoneWire { wire } = input_block { + if let Block::RedstoneWire(wire) = input_block { power = wire.power; } } @@ -184,7 +188,7 @@ fn diode_get_input_strength(world: &impl World, pos: BlockPos, facing: BlockDire pub fn update(block: Block, world: &mut impl World, pos: BlockPos) { match block { - Block::RedstoneWire { wire } => { + Block::RedstoneWire(wire) => { wire::on_neighbor_updated(wire, world, pos); } Block::RedstoneTorch { lit } => { @@ -197,10 +201,10 @@ pub fn update(block: Block, world: &mut impl World, pos: BlockPos) { world.schedule_tick(pos, 1, TickPriority::Normal); } } - Block::RedstoneRepeater { repeater } => { + Block::Repeater(repeater) => { repeater::on_neighbor_updated(repeater, world, pos); } - Block::RedstoneComparator { comparator } => { + Block::Comparator(comparator) => { comparator::update(comparator, world, pos); } Block::RedstoneLamp { lit } => { @@ -215,6 +219,8 @@ pub fn update(block: Block, world: &mut impl World, pos: BlockPos) { powered, facing, half, + open, + waterlogged, } => { let should_be_powered = redstone_lamp_should_be_lit(world, pos); if powered != should_be_powered { @@ -222,6 +228,8 @@ pub fn update(block: Block, world: &mut impl World, pos: BlockPos) { facing, half, powered: should_be_powered, + open, + waterlogged, }; world.set_block(pos, new_block); } @@ -258,10 +266,10 @@ pub fn update(block: Block, world: &mut impl World, pos: BlockPos) { pub fn tick(block: Block, world: &mut impl World, pos: BlockPos) { match block { - Block::RedstoneRepeater { repeater } => { + Block::Repeater(repeater) => { repeater::tick(repeater, world, pos); } - Block::RedstoneComparator { comparator } => { + Block::Comparator(comparator) => { comparator::tick(comparator, world, pos); } Block::RedstoneTorch { lit } => { @@ -290,22 +298,31 @@ pub fn tick(block: Block, world: &mut impl World, pos: BlockPos) { world.set_block(pos, Block::RedstoneLamp { lit: false }); } } - Block::StoneButton { mut button } => { - if button.powered { - button.powered = false; - world.set_block(pos, Block::StoneButton { button }); + Block::StoneButton { + powered, + face, + facing, + } => { + if powered { + world.set_block( + pos, + Block::StoneButton { + face, + facing, + powered: false, + }, + ); update_surrounding_blocks(world, pos); - match button.face { - ButtonFace::Ceiling => { + match face { + LeverFace::Ceiling => { update_surrounding_blocks(world, pos.offset(BlockFace::Top)); } - ButtonFace::Floor => { + LeverFace::Floor => { update_surrounding_blocks(world, pos.offset(BlockFace::Bottom)); } - ButtonFace::Wall => update_surrounding_blocks( - world, - pos.offset(button.facing.opposite().block_face()), - ), + LeverFace::Wall => { + update_surrounding_blocks(world, pos.offset(facing.opposite().block_face())) + } } } } @@ -345,71 +362,85 @@ pub fn update_surrounding_blocks(world: &mut impl World, pos: BlockPos) { } pub fn is_diode(block: Block) -> bool { - matches!( - block, - Block::RedstoneRepeater { .. } | Block::RedstoneComparator { .. } - ) + matches!(block, Block::Repeater(_) | Block::Comparator(_)) } /// Returns true if the action was handled pub fn on_use(block: Block, world: &mut impl World, pos: BlockPos) -> bool { match block { - Block::RedstoneRepeater { repeater } => { - let mut repeater = repeater; + Block::Repeater(mut repeater) => { repeater.delay += 1; if repeater.delay > 4 { repeater.delay -= 4; } - world.set_block(pos, Block::RedstoneRepeater { repeater }); + world.set_block(pos, Block::Repeater(repeater)); true } - Block::RedstoneComparator { comparator } => { + Block::Comparator(comparator) => { let mut comparator = comparator; comparator.mode = comparator.mode.toggle(); comparator::tick(comparator, world, pos); - world.set_block(pos, Block::RedstoneComparator { comparator }); + world.set_block(pos, Block::Comparator(comparator)); true } - Block::Lever { mut lever } => { - lever.powered = !lever.powered; - world.set_block(pos, Block::Lever { lever }); + Block::Lever { + face, + facing, + powered, + } => { + world.set_block( + pos, + Block::Lever { + powered: !powered, + face, + facing, + }, + ); update_surrounding_blocks(world, pos); - match lever.face { + match face { LeverFace::Ceiling => { update_surrounding_blocks(world, pos.offset(BlockFace::Top)); } LeverFace::Floor => { update_surrounding_blocks(world, pos.offset(BlockFace::Bottom)); } - LeverFace::Wall => update_surrounding_blocks( - world, - pos.offset(lever.facing.opposite().block_face()), - ), + LeverFace::Wall => { + update_surrounding_blocks(world, pos.offset(facing.opposite().block_face())) + } } true } - Block::StoneButton { mut button } => { - if !button.powered { - button.powered = true; - world.set_block(pos, Block::StoneButton { button }); + Block::StoneButton { + powered, + face, + facing, + } => { + if !powered { + world.set_block( + pos, + Block::StoneButton { + powered: true, + face, + facing, + }, + ); world.schedule_tick(pos, 10, TickPriority::Normal); update_surrounding_blocks(world, pos); - match button.face { - ButtonFace::Ceiling => { + match face { + LeverFace::Ceiling => { update_surrounding_blocks(world, pos.offset(BlockFace::Top)); } - ButtonFace::Floor => { + LeverFace::Floor => { update_surrounding_blocks(world, pos.offset(BlockFace::Bottom)); } - ButtonFace::Wall => update_surrounding_blocks( - world, - pos.offset(button.facing.opposite().block_face()), - ), + LeverFace::Wall => { + update_surrounding_blocks(world, pos.offset(facing.opposite().block_face())) + } } } true } - Block::RedstoneWire { wire } => { + Block::RedstoneWire(wire) => { if wire::is_dot(wire) || wire::is_cross(wire) { let mut new_wire = if wire::is_cross(wire) { RedstoneWire::default() @@ -419,7 +450,7 @@ pub fn on_use(block: Block, world: &mut impl World, pos: BlockPos) -> bool { new_wire.power = wire.power; new_wire = wire::get_regulated_sides(new_wire, world, pos); if wire != new_wire { - world.set_block(pos, Block::RedstoneWire { wire: new_wire }); + world.set_block(pos, Block::RedstoneWire(new_wire)); update_wire_neighbors(world, pos); return true; } diff --git a/crates/redstone/src/noteblock.rs b/crates/redstone/src/noteblock.rs index a8249a71..ec0287c4 100644 --- a/crates/redstone/src/noteblock.rs +++ b/crates/redstone/src/noteblock.rs @@ -10,7 +10,7 @@ pub fn get_noteblock_instrument(world: &impl World, pos: BlockPos) -> Instrument Instrument::from_block_below(world.get_block(pos.offset(BlockFace::Bottom))) } -pub fn play_note(world: &mut impl World, pos: BlockPos, instrument: Instrument, note: u32) { +pub fn play_note(world: &mut impl World, pos: BlockPos, instrument: Instrument, note: u8) { let sound_category = 2; // Sound Caregory ID for Records let volume = 3.0; // The note is mapped to [0, 31] to avoid ultra high pitches in case of invalid values. diff --git a/crates/redstone/src/repeater.rs b/crates/redstone/src/repeater.rs index 961d6265..ab6aa161 100644 --- a/crates/redstone/src/repeater.rs +++ b/crates/redstone/src/repeater.rs @@ -1,4 +1,4 @@ -use mchprs_blocks::blocks::{Block, RedstoneRepeater}; +use mchprs_blocks::blocks::{Block, Repeater}; use mchprs_blocks::{BlockDirection, BlockFace, BlockPos}; use mchprs_world::{TickPriority, World}; @@ -6,8 +6,8 @@ pub fn get_state_for_placement( world: &impl World, pos: BlockPos, facing: BlockDirection, -) -> RedstoneRepeater { - RedstoneRepeater { +) -> Repeater { + Repeater { delay: 1, facing, locked: should_be_locked(facing, world, pos), @@ -31,7 +31,7 @@ fn get_power_on_side(world: &impl World, pos: BlockPos, side: BlockDirection) -> } } -fn on_state_change(rep: RedstoneRepeater, world: &mut impl World, pos: BlockPos) { +fn on_state_change(rep: Repeater, world: &mut impl World, pos: BlockPos) { let front_pos = pos.offset(rep.facing.opposite().block_face()); let front_block = world.get_block(front_pos); super::update(front_block, world, front_pos); @@ -43,7 +43,7 @@ fn on_state_change(rep: RedstoneRepeater, world: &mut impl World, pos: BlockPos) } fn schedule_tick( - rep: RedstoneRepeater, + rep: Repeater, world: &mut impl World, pos: BlockPos, should_be_powered: bool, @@ -59,18 +59,18 @@ fn schedule_tick( world.schedule_tick(pos, rep.delay as u32, priority); } -fn should_be_powered(rep: RedstoneRepeater, world: &impl World, pos: BlockPos) -> bool { +fn should_be_powered(rep: Repeater, world: &impl World, pos: BlockPos) -> bool { super::diode_get_input_strength(world, pos, rep.facing) > 0 } -pub fn on_neighbor_updated(mut rep: RedstoneRepeater, world: &mut impl World, pos: BlockPos) { +pub fn on_neighbor_updated(mut rep: Repeater, world: &mut impl World, pos: BlockPos) { let should_be_locked = should_be_locked(rep.facing, world, pos); if !rep.locked && should_be_locked { rep.locked = true; - world.set_block(pos, Block::RedstoneRepeater { repeater: rep }); + world.set_block(pos, Block::Repeater(rep)); } else if rep.locked && !should_be_locked { rep.locked = false; - world.set_block(pos, Block::RedstoneRepeater { repeater: rep }); + world.set_block(pos, Block::Repeater(rep)); } if !rep.locked && !world.pending_tick_at(pos) { @@ -81,7 +81,7 @@ pub fn on_neighbor_updated(mut rep: RedstoneRepeater, world: &mut impl World, po } } -pub fn tick(mut rep: RedstoneRepeater, world: &mut impl World, pos: BlockPos) { +pub fn tick(mut rep: Repeater, world: &mut impl World, pos: BlockPos) { if rep.locked { return; } @@ -89,14 +89,14 @@ pub fn tick(mut rep: RedstoneRepeater, world: &mut impl World, pos: BlockPos) { let should_be_powered = should_be_powered(rep, world, pos); if rep.powered && !should_be_powered { rep.powered = false; - world.set_block(pos, Block::RedstoneRepeater { repeater: rep }); + world.set_block(pos, Block::Repeater(rep)); on_state_change(rep, world, pos); } else if !rep.powered { if !should_be_powered { world.schedule_tick(pos, rep.delay as u32, TickPriority::Higher); } rep.powered = true; - world.set_block(pos, Block::RedstoneRepeater { repeater: rep }); + world.set_block(pos, Block::Repeater(rep)); on_state_change(rep, world, pos); } } diff --git a/crates/redstone/src/wire/mod.rs b/crates/redstone/src/wire/mod.rs index 20aa1d04..e588ed22 100644 --- a/crates/redstone/src/wire/mod.rs +++ b/crates/redstone/src/wire/mod.rs @@ -77,7 +77,7 @@ pub fn on_neighbor_updated(mut wire: RedstoneWire, world: &mut impl World, pos: if wire.power != new_power { wire.power = new_power; - world.set_block(pos, Block::RedstoneWire { wire }); + world.set_block(pos, Block::RedstoneWire(wire)); RedstoneWireTurbo::update_surrounding_neighbors(world, pos); } } @@ -103,7 +103,7 @@ pub fn on_neighbor_updated(mut wire: RedstoneWire, world: &mut impl World, pos: fn can_connect_to(block: Block, side: BlockDirection) -> bool { match block { Block::RedstoneWire { .. } - | Block::RedstoneComparator { .. } + | Block::Comparator(_) | Block::RedstoneTorch { .. } | Block::RedstoneBlock { .. } | Block::RedstoneWallTorch { .. } @@ -112,10 +112,10 @@ fn can_connect_to(block: Block, side: BlockDirection) -> bool { | Block::StoneButton { .. } | Block::Target { .. } | Block::Lever { .. } => true, - Block::RedstoneRepeater { repeater } => { + Block::Repeater(repeater) => { repeater.facing == side || repeater.facing == side.opposite() } - Block::Observer { facing } => facing == side.block_facing(), + Block::Observer { facing, .. } => facing == side.block_facing(), _ => false, } } @@ -208,7 +208,7 @@ pub fn is_cross(wire: RedstoneWire) -> bool { fn max_wire_power(wire_power: u8, world: &impl World, pos: BlockPos) -> u8 { let block = world.get_block(pos); - if let Block::RedstoneWire { wire } = block { + if let Block::RedstoneWire(wire) = block { wire_power.max(wire.power) } else { wire_power diff --git a/crates/redstone/src/wire/turbo.rs b/crates/redstone/src/wire/turbo.rs index f8e600bf..e7271530 100644 --- a/crates/redstone/src/wire/turbo.rs +++ b/crates/redstone/src/wire/turbo.rs @@ -9,14 +9,14 @@ use rustc_hash::FxHashMap; fn unwrap_wire(block: Block) -> RedstoneWire { match block { - Block::RedstoneWire { wire } => wire, + Block::RedstoneWire(wire) => wire, _ => panic!("expected wire"), } } fn wire_mut(block: &mut Block) -> &mut RedstoneWire { match block { - Block::RedstoneWire { wire } => wire, + Block::RedstoneWire(wire) => wire, _ => panic!("expected wire"), } } @@ -389,14 +389,14 @@ impl RedstoneWireTurbo { } if i != j { wire.power = j; - world.set_block(pos, Block::RedstoneWire { wire }); + world.set_block(pos, Block::RedstoneWire(wire)); } wire } fn get_max_current_strength(&self, upd: NodeId, strength: u8) -> u8 { let node = &self.nodes[upd.index]; - if let Block::RedstoneWire { wire } = node.state { + if let Block::RedstoneWire(wire) = node.state { wire.power.max(strength) } else { strength diff --git a/mc_data/blocks.json b/mc_data/blocks.json new file mode 100644 index 00000000..6df886b1 --- /dev/null +++ b/mc_data/blocks.json @@ -0,0 +1,267055 @@ +{ + "minecraft:acacia_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8707, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8708, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8709, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8710, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8711, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8712, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8713, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8714, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8715, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8716, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8717, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8718, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8719, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8720, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8721, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8722, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8723, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8724, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8725, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8726, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8727, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8728, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8729, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8730, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:acacia_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12014, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12015, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12016, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12017, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12018, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12019, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12020, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12021, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12022, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12023, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12024, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 12025, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12026, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12027, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12028, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12029, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12030, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12031, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12032, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12033, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12034, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12035, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12036, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12037, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12038, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12039, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12040, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12041, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12042, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12043, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12044, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12045, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12046, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12047, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12048, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12049, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12050, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12051, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12052, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12053, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12054, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12055, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12056, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12057, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12058, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12059, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12060, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12061, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12062, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12063, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12064, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12065, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12066, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12067, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12068, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12069, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12070, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12071, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12072, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12073, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12074, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12075, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12076, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12077, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:acacia_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11662, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11663, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11664, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11665, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11666, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11667, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11668, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11669, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11670, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11671, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11672, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11673, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11674, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11675, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11676, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11677, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11678, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11679, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11680, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11681, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11682, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11683, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11684, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11685, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11686, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11687, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11688, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11689, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11690, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11691, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11692, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11693, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:acacia_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11406, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11407, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11408, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11409, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11410, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11411, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11412, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11413, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11414, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11415, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11416, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11417, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11418, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11419, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11420, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11421, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11422, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11423, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11424, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11425, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11426, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11427, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11428, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11429, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11430, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11431, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11432, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11433, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11434, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11435, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11436, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11437, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:acacia_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5026, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5027, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5028, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5029, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5030, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5031, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5032, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5033, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5034, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5035, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5036, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5037, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5038, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5039, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5040, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5041, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5042, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5043, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5044, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5045, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5046, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5047, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5048, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5049, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5050, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5051, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5052, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5053, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5054, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5055, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5056, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5057, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5058, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5059, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5060, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5061, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5062, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5063, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5064, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5065, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5066, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5067, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5068, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5069, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5070, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5071, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5072, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5073, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5074, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5075, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5076, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5077, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5078, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5079, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5080, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5081, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5082, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5083, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5084, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5085, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5086, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5087, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5088, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5089, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 349, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 350, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 351, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 352, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 353, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 354, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 355, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 356, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 357, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 358, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 359, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 360, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 361, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 362, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 363, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 364, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 365, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 366, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 367, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 368, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 369, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 370, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 371, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 372, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 373, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 374, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 375, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 376, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 142, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 143, + "properties": { + "axis": "y" + } + }, + { + "id": 144, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:acacia_planks": { + "states": [ + { + "default": true, + "id": 19 + } + ] + }, + "minecraft:acacia_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5724, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5725, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:acacia_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 33, + "properties": { + "stage": "0" + } + }, + { + "id": 34, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:acacia_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4398, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4399, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4400, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4401, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4402, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4403, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4404, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4405, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4406, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4407, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4408, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4409, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4410, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4411, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4412, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4413, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4414, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4415, + "properties": { + "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": 4426, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4427, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4428, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4429, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11186, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11187, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11188, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11189, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11190, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11191, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9884, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9885, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9886, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9887, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9888, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9889, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9890, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9891, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9892, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9893, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9894, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9895, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9896, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9897, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9898, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9899, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9900, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9901, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9902, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9903, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9904, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9905, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9906, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9907, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9908, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9909, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9910, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9911, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9912, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9913, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9914, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9915, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9916, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9917, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9918, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9919, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9920, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9921, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9922, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9923, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9924, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9925, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9926, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9927, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9928, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9929, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9930, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9931, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9932, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9933, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9934, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9935, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9936, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9937, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9938, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9939, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9940, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9941, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9942, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9943, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9944, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9945, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9946, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9947, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9948, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9949, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9950, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9951, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9952, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9953, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9954, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9955, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9956, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9957, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9958, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9959, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9960, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9961, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9962, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9963, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6217, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6218, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6219, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6220, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6221, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6222, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6223, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6224, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6225, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6226, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6227, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6228, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6229, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6230, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6231, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6232, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6233, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6234, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6235, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6236, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6237, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6238, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6239, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6240, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6241, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6242, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6243, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6244, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6245, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6246, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6247, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6248, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6249, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6250, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6251, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6252, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6253, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6254, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6255, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6256, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6257, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6258, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6259, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6260, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6261, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6262, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6263, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6264, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6265, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6266, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6267, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6268, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6269, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6270, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6271, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6272, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6273, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6274, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6275, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6276, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6277, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6278, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6279, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6280, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5562, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5563, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5564, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5565, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5566, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5567, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5568, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5569, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4786, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4787, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4788, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4789, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4790, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4791, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4792, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4793, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 201, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 202, + "properties": { + "axis": "y" + } + }, + { + "id": 203, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:activator_rail": { + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9320, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "id": 9321, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 9322, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 9323, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 9324, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 9325, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 9326, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 9327, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 9328, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 9329, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 9330, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 9331, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 9332, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9333, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 9334, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 9335, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 9336, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 9337, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 9338, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 9339, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 9340, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 9341, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 9342, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 9343, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:air": { + "states": [ + { + "default": true, + "id": 0 + } + ] + }, + "minecraft:allium": { + "states": [ + { + "default": true, + "id": 2079 + } + ] + }, + "minecraft:amethyst_block": { + "states": [ + { + "default": true, + "id": 21031 + } + ] + }, + "minecraft:amethyst_cluster": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21033, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 21034, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 21035, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 21036, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 21037, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 21038, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 21039, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 21040, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 21041, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21042, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 21043, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 21044, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:ancient_debris": { + "states": [ + { + "default": true, + "id": 19448 + } + ] + }, + "minecraft:andesite": { + "states": [ + { + "default": true, + "id": 6 + } + ] + }, + "minecraft:andesite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14136, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14137, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14138, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14139, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14140, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14141, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:andesite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13762, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13763, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13764, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13765, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13766, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13767, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13768, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13769, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13770, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13771, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13772, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13773, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13774, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13775, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13776, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13777, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13778, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13779, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13780, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13781, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13782, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13783, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13784, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13785, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13786, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13787, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13788, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13789, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13790, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13791, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13792, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13793, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13794, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13795, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13796, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13797, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13798, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13799, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13800, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13801, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13802, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13803, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13804, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13805, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13806, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13807, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13808, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13809, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13810, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13811, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13812, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13813, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13814, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13815, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13816, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13817, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13818, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13819, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13820, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13821, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13822, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13823, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13824, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13825, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13826, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13827, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13828, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13829, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13830, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13831, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13832, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13833, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13834, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13835, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13836, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13837, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13838, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13839, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13840, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13841, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:andesite_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 16752, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16753, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16754, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 16755, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16756, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16757, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16758, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16759, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16760, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16761, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16762, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16763, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16764, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16765, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16766, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16767, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16768, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16769, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16770, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16771, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16772, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16773, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16774, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16775, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16776, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16777, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16778, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16779, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16780, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16781, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16782, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16783, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16784, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16785, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16786, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16787, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16788, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16789, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16790, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16791, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16792, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16793, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16794, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16795, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16796, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16797, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16798, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16799, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16800, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16801, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16802, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16803, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16804, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16805, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16806, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16807, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16808, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16809, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16810, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16811, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16812, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16813, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16814, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16815, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16816, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16817, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16818, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16819, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16820, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16821, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16822, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16823, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16824, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16825, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16826, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16827, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16828, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16829, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16830, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16831, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16832, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16833, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16834, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16835, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16836, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16837, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16838, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16839, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16840, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16841, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16842, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16843, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16844, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16845, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16846, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16847, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16848, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16849, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16850, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16851, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16852, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16853, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16854, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16855, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16856, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16857, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16858, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16859, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16860, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16861, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16862, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16863, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16864, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16865, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16866, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16867, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16868, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16869, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16870, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16871, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16872, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16873, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16874, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16875, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16876, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16877, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16878, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16879, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16880, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16881, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16882, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16883, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16884, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16885, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16886, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16887, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16888, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16889, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16890, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16891, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16892, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16893, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16894, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16895, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16896, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16897, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16898, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16899, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16900, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16901, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16902, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16903, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16904, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16905, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16906, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16907, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16908, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16909, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16910, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16911, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16912, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16913, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16914, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16915, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16916, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16917, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16918, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16919, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16920, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16921, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16922, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16923, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16924, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16925, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16926, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16927, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16928, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16929, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16930, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16931, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16932, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16933, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16934, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16935, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16936, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16937, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16938, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16939, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16940, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16941, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16942, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16943, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16944, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16945, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16946, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16947, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16948, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16949, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16950, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16951, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16952, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16953, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16954, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16955, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16956, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16957, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16958, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16959, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16960, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16961, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16962, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16963, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16964, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16965, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16966, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16967, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16968, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16969, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16970, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16971, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16972, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16973, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16974, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16975, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16976, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16977, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16978, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16979, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16980, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16981, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16982, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16983, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16984, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16985, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16986, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16987, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16988, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16989, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16990, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16991, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16992, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16993, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16994, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16995, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16996, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16997, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16998, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16999, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17000, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17001, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17002, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17003, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17004, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17005, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17006, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17007, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17008, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17009, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17010, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17011, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17012, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17013, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17014, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17015, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17016, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17017, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17018, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17019, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17020, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17021, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17022, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17023, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17024, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17025, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17026, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17027, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17028, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17029, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17030, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17031, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17032, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17033, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17034, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17035, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17036, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17037, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17038, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17039, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17040, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17041, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17042, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17043, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17044, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17045, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17046, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17047, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17048, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17049, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17050, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17051, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17052, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17053, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17054, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17055, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17056, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17057, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17058, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17059, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17060, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17061, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17062, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17063, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17064, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17065, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17066, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17067, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17068, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17069, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17070, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17071, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17072, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17073, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17074, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17075, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:anvil": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 9107, + "properties": { + "facing": "north" + } + }, + { + "id": 9108, + "properties": { + "facing": "south" + } + }, + { + "id": 9109, + "properties": { + "facing": "west" + } + }, + { + "id": 9110, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:attached_melon_stem": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 6817, + "properties": { + "facing": "north" + } + }, + { + "id": 6818, + "properties": { + "facing": "south" + } + }, + { + "id": 6819, + "properties": { + "facing": "west" + } + }, + { + "id": 6820, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:attached_pumpkin_stem": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 6813, + "properties": { + "facing": "north" + } + }, + { + "id": 6814, + "properties": { + "facing": "south" + } + }, + { + "id": 6815, + "properties": { + "facing": "west" + } + }, + { + "id": 6816, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:azalea": { + "states": [ + { + "default": true, + "id": 24824 + } + ] + }, + "minecraft:azalea_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 461, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 462, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 463, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 464, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 465, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 466, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 467, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 468, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 469, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 470, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 471, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 472, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 473, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 474, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 475, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 476, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 477, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 478, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 479, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 480, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 481, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 482, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 483, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 484, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 485, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 486, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 487, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 488, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:azure_bluet": { + "states": [ + { + "default": true, + "id": 2080 + } + ] + }, + "minecraft:bamboo": { + "properties": { + "age": [ + "0", + "1" + ], + "leaves": [ + "none", + "small", + "large" + ], + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 12945, + "properties": { + "age": "0", + "leaves": "none", + "stage": "0" + } + }, + { + "id": 12946, + "properties": { + "age": "0", + "leaves": "none", + "stage": "1" + } + }, + { + "id": 12947, + "properties": { + "age": "0", + "leaves": "small", + "stage": "0" + } + }, + { + "id": 12948, + "properties": { + "age": "0", + "leaves": "small", + "stage": "1" + } + }, + { + "id": 12949, + "properties": { + "age": "0", + "leaves": "large", + "stage": "0" + } + }, + { + "id": 12950, + "properties": { + "age": "0", + "leaves": "large", + "stage": "1" + } + }, + { + "id": 12951, + "properties": { + "age": "1", + "leaves": "none", + "stage": "0" + } + }, + { + "id": 12952, + "properties": { + "age": "1", + "leaves": "none", + "stage": "1" + } + }, + { + "id": 12953, + "properties": { + "age": "1", + "leaves": "small", + "stage": "0" + } + }, + { + "id": 12954, + "properties": { + "age": "1", + "leaves": "small", + "stage": "1" + } + }, + { + "id": 12955, + "properties": { + "age": "1", + "leaves": "large", + "stage": "0" + } + }, + { + "id": 12956, + "properties": { + "age": "1", + "leaves": "large", + "stage": "1" + } + } + ] + }, + "minecraft:bamboo_block": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 159, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 160, + "properties": { + "axis": "y" + } + }, + { + "id": 161, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:bamboo_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8803, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8804, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8805, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8806, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8807, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8808, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8809, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8810, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8811, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8812, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8813, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8814, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8815, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8816, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8817, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8818, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8819, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8820, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8821, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8822, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8823, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8824, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8825, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8826, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12270, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12271, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12272, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12273, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12274, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12275, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12276, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12277, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12278, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12279, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12280, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 12281, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12282, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12283, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12284, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12285, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12286, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12287, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12288, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12289, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12290, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12291, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12292, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12293, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12294, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12295, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12296, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12297, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12298, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12299, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12300, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12301, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12302, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12303, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12304, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12305, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12306, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12307, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12308, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12309, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12310, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12311, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12312, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12313, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12314, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12315, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12316, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12317, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12318, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12319, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12320, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12321, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12322, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12323, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12324, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12325, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12326, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12327, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12328, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12329, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12330, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12331, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12332, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12333, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11790, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11791, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11792, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11793, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11794, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11795, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11796, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11797, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11798, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11799, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11800, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11801, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11802, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11803, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11804, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11805, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11806, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11807, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11808, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11809, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11810, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11811, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11812, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11813, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11814, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11815, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11816, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11817, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11818, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11819, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11820, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11821, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:bamboo_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11534, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11535, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11536, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11537, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11538, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11539, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11540, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11541, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11542, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11543, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11544, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11545, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11546, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11547, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11548, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11549, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11550, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11551, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11552, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11553, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11554, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11555, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11556, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11557, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11558, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11559, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11560, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11561, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11562, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11563, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11564, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11565, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5474, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5475, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5476, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5477, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5478, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5479, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5480, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5481, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5482, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5483, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5484, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5485, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5486, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5487, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5488, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5489, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5490, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5491, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5492, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5493, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5494, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5495, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5496, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5497, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5498, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5499, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5500, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5501, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5502, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5503, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5504, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5505, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5506, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5507, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5508, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5509, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5510, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5511, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5512, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5513, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5514, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5515, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5516, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5517, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5518, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5519, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5520, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5521, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5522, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5523, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5524, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5525, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5526, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5527, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5528, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5529, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5530, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5531, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5532, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5533, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5534, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5535, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5536, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5537, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_mosaic": { + "states": [ + { + "default": true, + "id": 24 + } + ] + }, + "minecraft:bamboo_mosaic_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11216, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11217, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11218, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11219, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11220, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11221, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_mosaic_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10284, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10285, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10286, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10287, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10288, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10289, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10290, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10291, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10292, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10293, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10294, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10295, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10296, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10297, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10298, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10299, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10300, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10301, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10302, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10303, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10304, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10305, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10306, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10307, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10308, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10309, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10310, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10311, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10312, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10313, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10314, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10315, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10316, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10317, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10318, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10319, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10320, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10321, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10322, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10323, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10324, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10325, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10326, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10327, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10328, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10329, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10330, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10331, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10332, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10333, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10334, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10335, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10336, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10337, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10338, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10339, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10340, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10341, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10342, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10343, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10344, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10345, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10346, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10347, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10348, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10349, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10350, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10351, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10352, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10353, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10354, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10355, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10356, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10357, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10358, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10359, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10360, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10361, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10362, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10363, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_planks": { + "states": [ + { + "default": true, + "id": 23 + } + ] + }, + "minecraft:bamboo_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5732, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5733, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_sapling": { + "states": [ + { + "default": true, + "id": 12944 + } + ] + }, + "minecraft:bamboo_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4558, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4559, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4560, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4561, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4562, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4563, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4564, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4565, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4566, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4567, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4568, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4569, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4570, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4571, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4572, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4573, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4574, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4575, + "properties": { + "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": 4586, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4587, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4588, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4589, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11210, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11211, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11212, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11213, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11214, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11215, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10204, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10205, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10206, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10207, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10208, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10209, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10210, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10211, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10212, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10213, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10214, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10215, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10216, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10217, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10218, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10219, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10220, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10221, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10222, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10223, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10224, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10225, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10226, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10227, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10228, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10229, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10230, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10231, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10232, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10233, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10234, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10235, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10236, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10237, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10238, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10239, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10240, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10241, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10242, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10243, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10244, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10245, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10246, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10247, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10248, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10249, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10250, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10251, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10252, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10253, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10254, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10255, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10256, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10257, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10258, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10259, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10260, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10261, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10262, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10263, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10264, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10265, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10266, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10267, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10268, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10269, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10270, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10271, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10272, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10273, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10274, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10275, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10276, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10277, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10278, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10279, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10280, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10281, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10282, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10283, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6473, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6474, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6475, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6476, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6477, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6478, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6479, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6480, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6481, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6482, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6483, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6484, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6485, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6486, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6487, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6488, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6489, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6490, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6491, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6492, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6493, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6494, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6495, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6496, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6497, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6498, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6499, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6500, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6501, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6502, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6503, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6504, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6505, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6506, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6507, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6508, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6509, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6510, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6511, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6512, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6513, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6514, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6515, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6516, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6517, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6518, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6519, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6520, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6521, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6522, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6523, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6524, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6525, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6526, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6527, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6528, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6529, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6530, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6531, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6532, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6533, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6534, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6535, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6536, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5618, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5619, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5620, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5621, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5622, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5623, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5624, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5625, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4826, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4827, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4828, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4829, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4830, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4831, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4832, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4833, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:barrel": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "open": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18408, + "properties": { + "facing": "north", + "open": "true" + } + }, + { + "default": true, + "id": 18409, + "properties": { + "facing": "north", + "open": "false" + } + }, + { + "id": 18410, + "properties": { + "facing": "east", + "open": "true" + } + }, + { + "id": 18411, + "properties": { + "facing": "east", + "open": "false" + } + }, + { + "id": 18412, + "properties": { + "facing": "south", + "open": "true" + } + }, + { + "id": 18413, + "properties": { + "facing": "south", + "open": "false" + } + }, + { + "id": 18414, + "properties": { + "facing": "west", + "open": "true" + } + }, + { + "id": 18415, + "properties": { + "facing": "west", + "open": "false" + } + }, + { + "id": 18416, + "properties": { + "facing": "up", + "open": "true" + } + }, + { + "id": 18417, + "properties": { + "facing": "up", + "open": "false" + } + }, + { + "id": 18418, + "properties": { + "facing": "down", + "open": "true" + } + }, + { + "id": 18419, + "properties": { + "facing": "down", + "open": "false" + } + } + ] + }, + "minecraft:barrier": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10365, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10366, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:basalt": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 5852, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 5853, + "properties": { + "axis": "y" + } + }, + { + "id": 5854, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:beacon": { + "states": [ + { + "default": true, + "id": 7918 + } + ] + }, + "minecraft:bedrock": { + "states": [ + { + "default": true, + "id": 79 + } + ] + }, + "minecraft:bee_nest": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "honey_level": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ + { + "default": true, + "id": 19397, + "properties": { + "facing": "north", + "honey_level": "0" + } + }, + { + "id": 19398, + "properties": { + "facing": "north", + "honey_level": "1" + } + }, + { + "id": 19399, + "properties": { + "facing": "north", + "honey_level": "2" + } + }, + { + "id": 19400, + "properties": { + "facing": "north", + "honey_level": "3" + } + }, + { + "id": 19401, + "properties": { + "facing": "north", + "honey_level": "4" + } + }, + { + "id": 19402, + "properties": { + "facing": "north", + "honey_level": "5" + } + }, + { + "id": 19403, + "properties": { + "facing": "south", + "honey_level": "0" + } + }, + { + "id": 19404, + "properties": { + "facing": "south", + "honey_level": "1" + } + }, + { + "id": 19405, + "properties": { + "facing": "south", + "honey_level": "2" + } + }, + { + "id": 19406, + "properties": { + "facing": "south", + "honey_level": "3" + } + }, + { + "id": 19407, + "properties": { + "facing": "south", + "honey_level": "4" + } + }, + { + "id": 19408, + "properties": { + "facing": "south", + "honey_level": "5" + } + }, + { + "id": 19409, + "properties": { + "facing": "west", + "honey_level": "0" + } + }, + { + "id": 19410, + "properties": { + "facing": "west", + "honey_level": "1" + } + }, + { + "id": 19411, + "properties": { + "facing": "west", + "honey_level": "2" + } + }, + { + "id": 19412, + "properties": { + "facing": "west", + "honey_level": "3" + } + }, + { + "id": 19413, + "properties": { + "facing": "west", + "honey_level": "4" + } + }, + { + "id": 19414, + "properties": { + "facing": "west", + "honey_level": "5" + } + }, + { + "id": 19415, + "properties": { + "facing": "east", + "honey_level": "0" + } + }, + { + "id": 19416, + "properties": { + "facing": "east", + "honey_level": "1" + } + }, + { + "id": 19417, + "properties": { + "facing": "east", + "honey_level": "2" + } + }, + { + "id": 19418, + "properties": { + "facing": "east", + "honey_level": "3" + } + }, + { + "id": 19419, + "properties": { + "facing": "east", + "honey_level": "4" + } + }, + { + "id": 19420, + "properties": { + "facing": "east", + "honey_level": "5" + } + } + ] + }, + "minecraft:beehive": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "honey_level": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ + { + "default": true, + "id": 19421, + "properties": { + "facing": "north", + "honey_level": "0" + } + }, + { + "id": 19422, + "properties": { + "facing": "north", + "honey_level": "1" + } + }, + { + "id": 19423, + "properties": { + "facing": "north", + "honey_level": "2" + } + }, + { + "id": 19424, + "properties": { + "facing": "north", + "honey_level": "3" + } + }, + { + "id": 19425, + "properties": { + "facing": "north", + "honey_level": "4" + } + }, + { + "id": 19426, + "properties": { + "facing": "north", + "honey_level": "5" + } + }, + { + "id": 19427, + "properties": { + "facing": "south", + "honey_level": "0" + } + }, + { + "id": 19428, + "properties": { + "facing": "south", + "honey_level": "1" + } + }, + { + "id": 19429, + "properties": { + "facing": "south", + "honey_level": "2" + } + }, + { + "id": 19430, + "properties": { + "facing": "south", + "honey_level": "3" + } + }, + { + "id": 19431, + "properties": { + "facing": "south", + "honey_level": "4" + } + }, + { + "id": 19432, + "properties": { + "facing": "south", + "honey_level": "5" + } + }, + { + "id": 19433, + "properties": { + "facing": "west", + "honey_level": "0" + } + }, + { + "id": 19434, + "properties": { + "facing": "west", + "honey_level": "1" + } + }, + { + "id": 19435, + "properties": { + "facing": "west", + "honey_level": "2" + } + }, + { + "id": 19436, + "properties": { + "facing": "west", + "honey_level": "3" + } + }, + { + "id": 19437, + "properties": { + "facing": "west", + "honey_level": "4" + } + }, + { + "id": 19438, + "properties": { + "facing": "west", + "honey_level": "5" + } + }, + { + "id": 19439, + "properties": { + "facing": "east", + "honey_level": "0" + } + }, + { + "id": 19440, + "properties": { + "facing": "east", + "honey_level": "1" + } + }, + { + "id": 19441, + "properties": { + "facing": "east", + "honey_level": "2" + } + }, + { + "id": 19442, + "properties": { + "facing": "east", + "honey_level": "3" + } + }, + { + "id": 19443, + "properties": { + "facing": "east", + "honey_level": "4" + } + }, + { + "id": 19444, + "properties": { + "facing": "east", + "honey_level": "5" + } + } + ] + }, + "minecraft:beetroots": { + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 12509, + "properties": { + "age": "0" + } + }, + { + "id": 12510, + "properties": { + "age": "1" + } + }, + { + "id": 12511, + "properties": { + "age": "2" + } + }, + { + "id": 12512, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:bell": { + "properties": { + "attachment": [ + "floor", + "ceiling", + "single_wall", + "double_wall" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18471, + "properties": { + "attachment": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 18472, + "properties": { + "attachment": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 18473, + "properties": { + "attachment": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 18474, + "properties": { + "attachment": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 18475, + "properties": { + "attachment": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 18476, + "properties": { + "attachment": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 18477, + "properties": { + "attachment": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 18478, + "properties": { + "attachment": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 18479, + "properties": { + "attachment": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 18480, + "properties": { + "attachment": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 18481, + "properties": { + "attachment": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 18482, + "properties": { + "attachment": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 18483, + "properties": { + "attachment": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 18484, + "properties": { + "attachment": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 18485, + "properties": { + "attachment": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 18486, + "properties": { + "attachment": "ceiling", + "facing": "east", + "powered": "false" + } + }, + { + "id": 18487, + "properties": { + "attachment": "single_wall", + "facing": "north", + "powered": "true" + } + }, + { + "id": 18488, + "properties": { + "attachment": "single_wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 18489, + "properties": { + "attachment": "single_wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 18490, + "properties": { + "attachment": "single_wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 18491, + "properties": { + "attachment": "single_wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 18492, + "properties": { + "attachment": "single_wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 18493, + "properties": { + "attachment": "single_wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 18494, + "properties": { + "attachment": "single_wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 18495, + "properties": { + "attachment": "double_wall", + "facing": "north", + "powered": "true" + } + }, + { + "id": 18496, + "properties": { + "attachment": "double_wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 18497, + "properties": { + "attachment": "double_wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 18498, + "properties": { + "attachment": "double_wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 18499, + "properties": { + "attachment": "double_wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 18500, + "properties": { + "attachment": "double_wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 18501, + "properties": { + "attachment": "double_wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 18502, + "properties": { + "attachment": "double_wall", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:big_dripleaf": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "tilt": [ + "none", + "unstable", + "partial", + "full" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24844, + "properties": { + "facing": "north", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24845, + "properties": { + "facing": "north", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 24846, + "properties": { + "facing": "north", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 24847, + "properties": { + "facing": "north", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 24848, + "properties": { + "facing": "north", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 24849, + "properties": { + "facing": "north", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 24850, + "properties": { + "facing": "north", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 24851, + "properties": { + "facing": "north", + "tilt": "full", + "waterlogged": "false" + } + }, + { + "id": 24852, + "properties": { + "facing": "south", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "id": 24853, + "properties": { + "facing": "south", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 24854, + "properties": { + "facing": "south", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 24855, + "properties": { + "facing": "south", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 24856, + "properties": { + "facing": "south", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 24857, + "properties": { + "facing": "south", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 24858, + "properties": { + "facing": "south", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 24859, + "properties": { + "facing": "south", + "tilt": "full", + "waterlogged": "false" + } + }, + { + "id": 24860, + "properties": { + "facing": "west", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "id": 24861, + "properties": { + "facing": "west", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 24862, + "properties": { + "facing": "west", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 24863, + "properties": { + "facing": "west", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 24864, + "properties": { + "facing": "west", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 24865, + "properties": { + "facing": "west", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 24866, + "properties": { + "facing": "west", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 24867, + "properties": { + "facing": "west", + "tilt": "full", + "waterlogged": "false" + } + }, + { + "id": 24868, + "properties": { + "facing": "east", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "id": 24869, + "properties": { + "facing": "east", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 24870, + "properties": { + "facing": "east", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 24871, + "properties": { + "facing": "east", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 24872, + "properties": { + "facing": "east", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 24873, + "properties": { + "facing": "east", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 24874, + "properties": { + "facing": "east", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 24875, + "properties": { + "facing": "east", + "tilt": "full", + "waterlogged": "false" + } + } + ] + }, + "minecraft:big_dripleaf_stem": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24876, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24877, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 24878, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 24879, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 24880, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 24881, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 24882, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 24883, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8659, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8660, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8661, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8662, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8663, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8664, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8665, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8666, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8667, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8668, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8669, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8670, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8671, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8672, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8673, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8674, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8675, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8676, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8677, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8678, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8679, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8680, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8681, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8682, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:birch_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11886, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11887, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11888, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11889, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11890, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11891, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11892, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11893, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11894, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11895, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11896, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11897, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11898, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11899, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11900, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11901, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11902, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11903, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11904, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11905, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11906, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11907, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11908, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11909, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11910, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11911, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11912, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11913, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11914, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11915, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11916, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11917, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11918, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11919, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11920, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11921, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11922, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11923, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11924, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11925, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11926, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11927, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11928, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11929, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11930, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11931, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11932, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11933, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11934, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11935, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11936, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11937, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11938, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11939, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11940, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11941, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11942, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11943, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11944, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11945, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11946, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11947, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11948, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11949, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:birch_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11598, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11599, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11600, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11601, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11602, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11603, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11604, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11605, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11606, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11607, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11608, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11609, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11610, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11611, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11612, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11613, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11614, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11615, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11616, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11617, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11618, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11619, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11620, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11621, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11622, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11623, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11624, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11625, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11626, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11627, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11628, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11629, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:birch_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11342, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11343, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11344, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11345, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11346, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11347, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11348, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11349, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11350, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11351, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11352, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11353, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11354, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11355, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11356, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11357, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11358, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11359, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11360, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11361, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11362, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11363, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11364, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11365, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11366, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11367, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11368, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11369, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11370, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11371, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11372, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11373, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:birch_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4962, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 4963, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4964, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4965, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4966, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4967, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4968, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4969, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4970, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4971, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4972, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4973, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4974, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4975, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4976, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4977, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4978, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4979, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4980, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4981, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4982, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4983, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4984, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4985, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4986, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4987, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4988, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4989, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4990, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4991, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4992, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4993, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 4994, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4995, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4996, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4997, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4998, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4999, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5000, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5001, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5002, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5003, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5004, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5005, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5006, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5007, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5008, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5009, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5010, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5011, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5012, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5013, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5014, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5015, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5016, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5017, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5018, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5019, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5020, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5021, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5022, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5023, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5024, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5025, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 293, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 294, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 295, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 296, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 297, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 298, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 299, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 300, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 301, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 302, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 303, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 304, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 305, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 306, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 307, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 308, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 309, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 310, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 311, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 312, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 313, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 314, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 315, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 316, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 317, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 318, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 319, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 320, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 136, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 137, + "properties": { + "axis": "y" + } + }, + { + "id": 138, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:birch_planks": { + "states": [ + { + "default": true, + "id": 17 + } + ] + }, + "minecraft:birch_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5720, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5721, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:birch_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 29, + "properties": { + "stage": "0" + } + }, + { + "id": 30, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:birch_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4366, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4367, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4368, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4369, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4370, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4371, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4372, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4373, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4374, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4375, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4376, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4377, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4378, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4379, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4380, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4381, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4382, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4383, + "properties": { + "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": 4394, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4395, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4396, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4397, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11174, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11175, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11176, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11177, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11178, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11179, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7746, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7747, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7748, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7749, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7750, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7751, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7752, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7753, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7754, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7755, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7756, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7757, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7758, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7759, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7760, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7761, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7762, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7763, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7764, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7765, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7766, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7767, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7768, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7769, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7770, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7771, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7772, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7773, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7774, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7775, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7776, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7777, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7778, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7779, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7780, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7781, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7782, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7783, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7784, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7785, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7786, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7787, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7788, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7789, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7790, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7791, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7792, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7793, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7794, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7795, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7796, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7797, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7798, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7799, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7800, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7801, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7802, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7803, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7804, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7805, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7806, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7807, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7808, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7809, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7810, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7811, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7812, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7813, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7814, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7815, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7816, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7817, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7818, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7819, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7820, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7821, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7822, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7823, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7824, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7825, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6089, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6090, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6091, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6092, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6093, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6094, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6095, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6096, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6097, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6098, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6099, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6100, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6101, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6102, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6103, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6104, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6105, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6106, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6107, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6108, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6109, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6110, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6111, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6112, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6113, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6114, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6115, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6116, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6117, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6118, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6119, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6120, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6121, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6122, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6123, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6124, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6125, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6126, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6127, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6128, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6129, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6130, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6131, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6132, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6133, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6134, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6135, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6136, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6137, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6138, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6139, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6140, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6141, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6142, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6143, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6144, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6145, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6146, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6147, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6148, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6149, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6150, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6151, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6152, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5554, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5555, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5556, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5557, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5558, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5559, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5560, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5561, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4778, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4779, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4780, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4781, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4782, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4783, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4784, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4785, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 195, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 196, + "properties": { + "axis": "y" + } + }, + { + "id": 197, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:black_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10999, + "properties": { + "rotation": "0" + } + }, + { + "id": 11000, + "properties": { + "rotation": "1" + } + }, + { + "id": 11001, + "properties": { + "rotation": "2" + } + }, + { + "id": 11002, + "properties": { + "rotation": "3" + } + }, + { + "id": 11003, + "properties": { + "rotation": "4" + } + }, + { + "id": 11004, + "properties": { + "rotation": "5" + } + }, + { + "id": 11005, + "properties": { + "rotation": "6" + } + }, + { + "id": 11006, + "properties": { + "rotation": "7" + } + }, + { + "id": 11007, + "properties": { + "rotation": "8" + } + }, + { + "id": 11008, + "properties": { + "rotation": "9" + } + }, + { + "id": 11009, + "properties": { + "rotation": "10" + } + }, + { + "id": 11010, + "properties": { + "rotation": "11" + } + }, + { + "id": 11011, + "properties": { + "rotation": "12" + } + }, + { + "id": 11012, + "properties": { + "rotation": "13" + } + }, + { + "id": 11013, + "properties": { + "rotation": "14" + } + }, + { + "id": 11014, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:black_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1928, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1929, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1930, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1931, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1932, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1933, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1934, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1935, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1936, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1937, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1938, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1939, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1940, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1941, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1942, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1943, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:black_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20981, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20982, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20983, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20984, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20985, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20986, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20987, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20988, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20989, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20990, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20991, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20992, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20993, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20994, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20995, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20996, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:black_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21029, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21030, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:black_carpet": { + "states": [ + { + "default": true, + "id": 10743 + } + ] + }, + "minecraft:black_concrete": { + "states": [ + { + "default": true, + "id": 12743 + } + ] + }, + "minecraft:black_concrete_powder": { + "states": [ + { + "default": true, + "id": 12759 + } + ] + }, + "minecraft:black_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12724, + "properties": { + "facing": "north" + } + }, + { + "id": 12725, + "properties": { + "facing": "south" + } + }, + { + "id": 12726, + "properties": { + "facing": "west" + } + }, + { + "id": 12727, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:black_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12658, + "properties": { + "facing": "north" + } + }, + { + "id": 12659, + "properties": { + "facing": "east" + } + }, + { + "id": 12660, + "properties": { + "facing": "south" + } + }, + { + "id": 12661, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12662, + "properties": { + "facing": "up" + } + }, + { + "id": 12663, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:black_stained_glass": { + "states": [ + { + "default": true, + "id": 5960 + } + ] + }, + "minecraft:black_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9852, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9853, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9854, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9855, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9856, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9857, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9858, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9859, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9860, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9861, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9862, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9863, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9864, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9865, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9866, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9867, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9868, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9869, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9870, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9871, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9872, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9873, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9874, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9875, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9876, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9877, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9878, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9879, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9880, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9881, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9882, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9883, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:black_terracotta": { + "states": [ + { + "default": true, + "id": 9371 + } + ] + }, + "minecraft:black_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11075, + "properties": { + "facing": "north" + } + }, + { + "id": 11076, + "properties": { + "facing": "south" + } + }, + { + "id": 11077, + "properties": { + "facing": "west" + } + }, + { + "id": 11078, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:black_wool": { + "states": [ + { + "default": true, + "id": 2062 + } + ] + }, + "minecraft:blackstone": { + "states": [ + { + "default": true, + "id": 19460 + } + ] + }, + "minecraft:blackstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19865, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 19866, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 19867, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19868, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 19869, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 19870, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blackstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19461, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19462, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19463, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19464, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19465, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19466, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19467, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19468, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19469, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19470, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19471, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19472, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19473, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19474, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19475, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19476, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19477, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19478, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19479, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19480, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19481, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19482, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19483, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19484, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19485, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19486, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19487, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19488, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19489, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19490, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19491, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19492, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19493, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19494, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19495, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19496, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19497, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19498, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19499, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19500, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19501, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19502, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19503, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19504, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19505, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19506, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19507, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19508, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19509, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19510, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19511, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19512, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19513, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19514, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19515, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19516, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19517, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19518, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19519, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19520, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19521, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19522, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19523, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19524, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19525, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19526, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19527, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19528, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19529, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19530, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19531, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19532, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19533, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19534, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19535, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19536, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19537, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19538, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19539, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19540, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blackstone_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 19541, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19542, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19543, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 19544, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19545, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19546, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19547, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19548, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19549, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19550, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19551, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19552, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19553, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19554, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19555, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19556, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19557, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19558, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19559, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19560, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19561, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19562, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19563, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19564, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19565, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19566, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19567, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19568, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19569, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19570, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19571, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19572, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19573, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19574, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19575, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19576, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19577, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19578, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19579, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19580, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19581, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19582, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19583, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19584, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19585, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19586, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19587, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19588, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19589, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19590, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19591, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19592, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19593, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19594, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19595, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19596, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19597, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19598, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19599, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19600, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19601, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19602, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19603, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19604, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19605, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19606, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19607, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19608, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19609, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19610, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19611, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19612, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19613, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19614, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19615, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19616, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19617, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19618, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19619, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19620, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19621, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19622, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19623, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19624, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19625, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19626, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19627, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19628, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19629, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19630, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19631, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19632, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19633, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19634, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19635, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19636, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19637, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19638, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19639, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19640, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19641, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19642, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19643, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19644, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19645, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19646, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19647, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19648, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19649, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19650, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19651, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19652, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19653, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19654, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19655, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19656, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19657, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19658, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19659, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19660, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19661, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19662, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19663, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19664, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19665, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19666, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19667, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19668, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19669, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19670, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19671, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19672, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19673, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19674, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19675, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19676, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19677, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19678, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19679, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19680, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19681, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19682, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19683, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19684, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19685, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19686, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19687, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19688, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19689, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19690, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19691, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19692, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19693, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19694, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19695, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19696, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19697, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19698, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19699, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19700, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19701, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19702, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19703, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19704, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19705, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19706, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19707, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19708, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19709, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19710, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19711, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19712, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19713, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19714, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19715, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19716, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19717, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19718, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19719, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19720, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19721, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19722, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19723, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19724, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19725, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19726, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19727, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19728, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19729, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19730, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19731, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19732, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19733, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19734, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19735, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19736, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19737, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19738, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19739, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19740, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19741, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19742, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19743, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19744, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19745, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19746, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19747, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19748, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19749, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19750, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19751, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19752, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19753, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19754, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19755, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19756, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19757, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19758, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19759, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19760, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19761, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19762, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19763, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19764, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19765, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19766, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19767, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19768, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19769, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19770, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19771, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19772, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19773, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19774, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19775, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19776, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19777, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19778, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19779, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19780, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19781, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19782, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19783, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19784, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19785, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19786, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19787, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19788, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19789, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19790, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19791, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19792, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19793, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19794, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19795, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19796, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19797, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19798, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19799, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19800, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19801, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19802, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19803, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19804, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19805, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19806, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19807, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19808, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19809, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19810, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19811, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19812, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19813, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19814, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19815, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19816, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19817, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19818, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19819, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19820, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19821, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19822, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19823, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19824, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19825, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19826, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19827, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19828, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19829, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19830, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19831, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19832, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19833, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19834, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19835, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19836, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19837, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19838, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19839, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19840, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19841, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19842, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19843, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19844, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19845, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19846, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19847, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19848, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19849, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19850, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19851, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19852, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19853, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19854, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19855, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19856, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19857, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19858, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19859, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19860, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19861, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19862, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19863, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19864, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:blast_furnace": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18428, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "default": true, + "id": 18429, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 18430, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 18431, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 18432, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 18433, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 18434, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 18435, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:blue_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10935, + "properties": { + "rotation": "0" + } + }, + { + "id": 10936, + "properties": { + "rotation": "1" + } + }, + { + "id": 10937, + "properties": { + "rotation": "2" + } + }, + { + "id": 10938, + "properties": { + "rotation": "3" + } + }, + { + "id": 10939, + "properties": { + "rotation": "4" + } + }, + { + "id": 10940, + "properties": { + "rotation": "5" + } + }, + { + "id": 10941, + "properties": { + "rotation": "6" + } + }, + { + "id": 10942, + "properties": { + "rotation": "7" + } + }, + { + "id": 10943, + "properties": { + "rotation": "8" + } + }, + { + "id": 10944, + "properties": { + "rotation": "9" + } + }, + { + "id": 10945, + "properties": { + "rotation": "10" + } + }, + { + "id": 10946, + "properties": { + "rotation": "11" + } + }, + { + "id": 10947, + "properties": { + "rotation": "12" + } + }, + { + "id": 10948, + "properties": { + "rotation": "13" + } + }, + { + "id": 10949, + "properties": { + "rotation": "14" + } + }, + { + "id": 10950, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:blue_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1864, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1865, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1866, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1867, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1868, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1869, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1870, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1871, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1872, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1873, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1874, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1875, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1876, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1877, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1878, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1879, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:blue_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20917, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20918, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20919, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20920, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20921, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20922, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20923, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20924, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20925, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20926, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20927, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20928, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20929, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20930, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20931, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20932, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blue_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21021, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21022, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:blue_carpet": { + "states": [ + { + "default": true, + "id": 10739 + } + ] + }, + "minecraft:blue_concrete": { + "states": [ + { + "default": true, + "id": 12739 + } + ] + }, + "minecraft:blue_concrete_powder": { + "states": [ + { + "default": true, + "id": 12755 + } + ] + }, + "minecraft:blue_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12708, + "properties": { + "facing": "north" + } + }, + { + "id": 12709, + "properties": { + "facing": "south" + } + }, + { + "id": 12710, + "properties": { + "facing": "west" + } + }, + { + "id": 12711, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:blue_ice": { + "states": [ + { + "default": true, + "id": 12941 + } + ] + }, + "minecraft:blue_orchid": { + "states": [ + { + "default": true, + "id": 2078 + } + ] + }, + "minecraft:blue_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12634, + "properties": { + "facing": "north" + } + }, + { + "id": 12635, + "properties": { + "facing": "east" + } + }, + { + "id": 12636, + "properties": { + "facing": "south" + } + }, + { + "id": 12637, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12638, + "properties": { + "facing": "up" + } + }, + { + "id": 12639, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:blue_stained_glass": { + "states": [ + { + "default": true, + "id": 5956 + } + ] + }, + "minecraft:blue_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9724, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9725, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9726, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9727, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9728, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9729, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9730, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9731, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9732, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9733, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9734, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9735, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9736, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9737, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9738, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9739, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9740, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9741, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9742, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9743, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9744, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9745, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9746, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9747, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9748, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9749, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9750, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9751, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9752, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9753, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9754, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9755, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:blue_terracotta": { + "states": [ + { + "default": true, + "id": 9367 + } + ] + }, + "minecraft:blue_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11059, + "properties": { + "facing": "north" + } + }, + { + "id": 11060, + "properties": { + "facing": "south" + } + }, + { + "id": 11061, + "properties": { + "facing": "west" + } + }, + { + "id": 11062, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:blue_wool": { + "states": [ + { + "default": true, + "id": 2058 + } + ] + }, + "minecraft:bone_block": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 12546, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 12547, + "properties": { + "axis": "y" + } + }, + { + "id": 12548, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:bookshelf": { + "states": [ + { + "default": true, + "id": 2096 + } + ] + }, + "minecraft:brain_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12825, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12826, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:brain_coral_block": { + "states": [ + { + "default": true, + "id": 12809 + } + ] + }, + "minecraft:brain_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12845, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12846, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:brain_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12901, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12902, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12903, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12904, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12905, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12906, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12907, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12908, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brewing_stand": { + "properties": { + "has_bottle_0": [ + "true", + "false" + ], + "has_bottle_1": [ + "true", + "false" + ], + "has_bottle_2": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7390, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "true", + "has_bottle_2": "true" + } + }, + { + "id": 7391, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "true", + "has_bottle_2": "false" + } + }, + { + "id": 7392, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "false", + "has_bottle_2": "true" + } + }, + { + "id": 7393, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "false", + "has_bottle_2": "false" + } + }, + { + "id": 7394, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "true", + "has_bottle_2": "true" + } + }, + { + "id": 7395, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "true", + "has_bottle_2": "false" + } + }, + { + "id": 7396, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "false", + "has_bottle_2": "true" + } + }, + { + "default": true, + "id": 7397, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "false", + "has_bottle_2": "false" + } + } + ] + }, + "minecraft:brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11258, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11259, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11260, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11261, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11262, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11263, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7029, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7030, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7031, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7032, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7033, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7034, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7035, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7036, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7037, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7038, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7039, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7040, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7041, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7042, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7043, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7044, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7045, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7046, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7047, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7048, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7049, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7050, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7051, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7052, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7053, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7054, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7055, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7056, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7057, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7058, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7059, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7060, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7061, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7062, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7063, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7064, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7065, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7066, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7067, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7068, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7069, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7070, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7071, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7072, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7073, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7074, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7075, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7076, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7077, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7078, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7079, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7080, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7081, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7082, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7083, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7084, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7085, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7086, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7087, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7088, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7089, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7090, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7091, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7092, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7093, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7094, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7095, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7096, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7097, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7098, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7099, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7100, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7101, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7102, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7103, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7104, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7105, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7106, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7107, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7108, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 14160, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14161, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14162, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 14163, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14164, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14165, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14166, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14167, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14168, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14169, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14170, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14171, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14172, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14173, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14174, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14175, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14176, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14177, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14178, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14179, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14180, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14181, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14182, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14183, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14184, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14185, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14186, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14187, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14188, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14189, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14190, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14191, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14192, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14193, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14194, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14195, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14196, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14197, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14198, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14199, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14200, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14201, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14202, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14203, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14204, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14205, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14206, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14207, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14208, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14209, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14210, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14211, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14212, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14213, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14214, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14215, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14216, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14217, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14218, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14219, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14220, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14221, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14222, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14223, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14224, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14225, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14226, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14227, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14228, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14229, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14230, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14231, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14232, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14233, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14234, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14235, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14236, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14237, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14238, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14239, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14240, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14241, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14242, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14243, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14244, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14245, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14246, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14247, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14248, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14249, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14250, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14251, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14252, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14253, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14254, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14255, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14256, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14257, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14258, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14259, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14260, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14261, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14262, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14263, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14264, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14265, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14266, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14267, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14268, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14269, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14270, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14271, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14272, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14273, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14274, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14275, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14276, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14277, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14278, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14279, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14280, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14281, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14282, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14283, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14284, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14285, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14286, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14287, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14288, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14289, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14290, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14291, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14292, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14293, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14294, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14295, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14296, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14297, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14298, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14299, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14300, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14301, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14302, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14303, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14304, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14305, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14306, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14307, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14308, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14309, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14310, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14311, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14312, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14313, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14314, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14315, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14316, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14317, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14318, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14319, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14320, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14321, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14322, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14323, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14324, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14325, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14326, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14327, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14328, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14329, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14330, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14331, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14332, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14333, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14334, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14335, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14336, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14337, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14338, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14339, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14340, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14341, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14342, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14343, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14344, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14345, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14346, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14347, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14348, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14349, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14350, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14351, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14352, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14353, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14354, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14355, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14356, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14357, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14358, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14359, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14360, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14361, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14362, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14363, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14364, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14365, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14366, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14367, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14368, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14369, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14370, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14371, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14372, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14373, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14374, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14375, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14376, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14377, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14378, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14379, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14380, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14381, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14382, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14383, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14384, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14385, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14386, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14387, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14388, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14389, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14390, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14391, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14392, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14393, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14394, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14395, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14396, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14397, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14398, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14399, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14400, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14401, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14402, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14403, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14404, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14405, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14406, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14407, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14408, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14409, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14410, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14411, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14412, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14413, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14414, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14415, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14416, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14417, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14418, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14419, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14420, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14421, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14422, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14423, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14424, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14425, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14426, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14427, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14428, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14429, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14430, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14431, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14432, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14433, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14434, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14435, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14436, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14437, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14438, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14439, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14440, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14441, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14442, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14443, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14444, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14445, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14446, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14447, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14448, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14449, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14450, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14451, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14452, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14453, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14454, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14455, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14456, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14457, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14458, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14459, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14460, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14461, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14462, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14463, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14464, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14465, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14466, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14467, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14468, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14469, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14470, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14471, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14472, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14473, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14474, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14475, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14476, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14477, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14478, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14479, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14480, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14481, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14482, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14483, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:bricks": { + "states": [ + { + "default": true, + "id": 2093 + } + ] + }, + "minecraft:brown_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10951, + "properties": { + "rotation": "0" + } + }, + { + "id": 10952, + "properties": { + "rotation": "1" + } + }, + { + "id": 10953, + "properties": { + "rotation": "2" + } + }, + { + "id": 10954, + "properties": { + "rotation": "3" + } + }, + { + "id": 10955, + "properties": { + "rotation": "4" + } + }, + { + "id": 10956, + "properties": { + "rotation": "5" + } + }, + { + "id": 10957, + "properties": { + "rotation": "6" + } + }, + { + "id": 10958, + "properties": { + "rotation": "7" + } + }, + { + "id": 10959, + "properties": { + "rotation": "8" + } + }, + { + "id": 10960, + "properties": { + "rotation": "9" + } + }, + { + "id": 10961, + "properties": { + "rotation": "10" + } + }, + { + "id": 10962, + "properties": { + "rotation": "11" + } + }, + { + "id": 10963, + "properties": { + "rotation": "12" + } + }, + { + "id": 10964, + "properties": { + "rotation": "13" + } + }, + { + "id": 10965, + "properties": { + "rotation": "14" + } + }, + { + "id": 10966, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:brown_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1880, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1881, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1882, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1883, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1884, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1885, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1886, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1887, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1888, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1889, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1890, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1891, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1892, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1893, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1894, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1895, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:brown_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20933, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20934, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20935, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20936, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20937, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20938, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20939, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20940, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20941, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20942, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20943, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20944, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20945, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20946, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20947, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20948, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brown_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21023, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21024, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:brown_carpet": { + "states": [ + { + "default": true, + "id": 10740 + } + ] + }, + "minecraft:brown_concrete": { + "states": [ + { + "default": true, + "id": 12740 + } + ] + }, + "minecraft:brown_concrete_powder": { + "states": [ + { + "default": true, + "id": 12756 + } + ] + }, + "minecraft:brown_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12712, + "properties": { + "facing": "north" + } + }, + { + "id": 12713, + "properties": { + "facing": "south" + } + }, + { + "id": 12714, + "properties": { + "facing": "west" + } + }, + { + "id": 12715, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:brown_mushroom": { + "states": [ + { + "default": true, + "id": 2089 + } + ] + }, + "minecraft:brown_mushroom_block": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 6549, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6550, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6551, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6552, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6553, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6554, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6555, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6556, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6557, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6558, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6559, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6560, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6561, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6562, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6563, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6564, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6565, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6566, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6567, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6568, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6569, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6570, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6571, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6572, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6573, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6574, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6575, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6576, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6577, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6578, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6579, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6580, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6581, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6582, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6583, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6584, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6585, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6586, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6587, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6588, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6589, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6590, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6591, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6592, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6593, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6594, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6595, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6596, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6597, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6598, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6599, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6600, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6601, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6602, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6603, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6604, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6605, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6606, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6607, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6608, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6609, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6610, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6611, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6612, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:brown_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12640, + "properties": { + "facing": "north" + } + }, + { + "id": 12641, + "properties": { + "facing": "east" + } + }, + { + "id": 12642, + "properties": { + "facing": "south" + } + }, + { + "id": 12643, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12644, + "properties": { + "facing": "up" + } + }, + { + "id": 12645, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:brown_stained_glass": { + "states": [ + { + "default": true, + "id": 5957 + } + ] + }, + "minecraft:brown_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9756, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9757, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9758, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9759, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9760, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9761, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9762, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9763, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9764, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9765, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9766, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9767, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9768, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9769, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9770, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9771, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9772, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9773, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9774, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9775, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9776, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9777, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9778, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9779, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9780, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9781, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9782, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9783, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9784, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9785, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9786, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9787, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:brown_terracotta": { + "states": [ + { + "default": true, + "id": 9368 + } + ] + }, + "minecraft:brown_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11063, + "properties": { + "facing": "north" + } + }, + { + "id": 11064, + "properties": { + "facing": "south" + } + }, + { + "id": 11065, + "properties": { + "facing": "west" + } + }, + { + "id": 11066, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:brown_wool": { + "states": [ + { + "default": true, + "id": 2059 + } + ] + }, + "minecraft:bubble_column": { + "properties": { + "drag": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12960, + "properties": { + "drag": "true" + } + }, + { + "id": 12961, + "properties": { + "drag": "false" + } + } + ] + }, + "minecraft:bubble_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12827, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12828, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:bubble_coral_block": { + "states": [ + { + "default": true, + "id": 12810 + } + ] + }, + "minecraft:bubble_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12847, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12848, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:bubble_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12909, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12910, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12911, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12912, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12913, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12914, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12915, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12916, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:budding_amethyst": { + "states": [ + { + "default": true, + "id": 21032 + } + ] + }, + "minecraft:cactus": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 5782, + "properties": { + "age": "0" + } + }, + { + "id": 5783, + "properties": { + "age": "1" + } + }, + { + "id": 5784, + "properties": { + "age": "2" + } + }, + { + "id": 5785, + "properties": { + "age": "3" + } + }, + { + "id": 5786, + "properties": { + "age": "4" + } + }, + { + "id": 5787, + "properties": { + "age": "5" + } + }, + { + "id": 5788, + "properties": { + "age": "6" + } + }, + { + "id": 5789, + "properties": { + "age": "7" + } + }, + { + "id": 5790, + "properties": { + "age": "8" + } + }, + { + "id": 5791, + "properties": { + "age": "9" + } + }, + { + "id": 5792, + "properties": { + "age": "10" + } + }, + { + "id": 5793, + "properties": { + "age": "11" + } + }, + { + "id": 5794, + "properties": { + "age": "12" + } + }, + { + "id": 5795, + "properties": { + "age": "13" + } + }, + { + "id": 5796, + "properties": { + "age": "14" + } + }, + { + "id": 5797, + "properties": { + "age": "15" + } + } + ] + }, + "minecraft:cake": { + "properties": { + "bites": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ] + }, + "states": [ + { + "default": true, + "id": 5874, + "properties": { + "bites": "0" + } + }, + { + "id": 5875, + "properties": { + "bites": "1" + } + }, + { + "id": 5876, + "properties": { + "bites": "2" + } + }, + { + "id": 5877, + "properties": { + "bites": "3" + } + }, + { + "id": 5878, + "properties": { + "bites": "4" + } + }, + { + "id": 5879, + "properties": { + "bites": "5" + } + }, + { + "id": 5880, + "properties": { + "bites": "6" + } + } + ] + }, + "minecraft:calcite": { + "states": [ + { + "default": true, + "id": 22316 + } + ] + }, + "minecraft:calibrated_sculk_sensor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "sculk_sensor_phase": [ + "inactive", + "active", + "cooldown" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22415, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22416, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22417, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22418, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22419, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22420, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22421, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22422, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22423, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22424, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22425, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22426, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22427, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22428, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22429, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22430, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22431, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22432, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22433, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22434, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22435, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22436, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22437, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22438, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22439, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22440, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22441, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22442, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22443, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22444, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22445, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22446, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22447, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22448, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22449, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22450, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22451, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22452, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22453, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22454, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22455, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22456, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22457, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22458, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22459, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22460, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22461, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22462, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22463, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22464, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22465, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22466, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22467, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22468, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22469, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22470, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22471, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22472, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22473, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22474, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22475, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22476, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22477, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22478, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22479, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22480, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22481, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22482, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22483, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22484, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22485, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22486, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22487, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22488, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22489, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22490, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22491, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22492, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22493, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22494, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22495, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22496, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22497, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22498, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22499, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22500, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22501, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22502, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22503, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22504, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22505, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22506, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22507, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22508, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22509, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22510, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22511, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22512, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22513, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22514, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22515, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22516, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22517, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22518, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22519, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22520, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22521, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22522, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22523, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22524, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22525, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22526, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22527, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22528, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22529, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22530, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22531, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22532, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22533, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22534, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22535, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22536, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22537, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22538, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22539, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22540, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22541, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22542, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22543, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22544, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22545, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22546, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22547, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22548, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22549, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22550, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22551, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22552, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22553, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22554, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22555, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22556, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22557, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22558, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22559, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22560, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22561, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22562, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22563, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22564, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22565, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22566, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22567, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22568, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22569, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22570, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22571, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22572, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22573, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22574, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22575, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22576, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22577, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22578, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22579, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22580, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22581, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22582, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22583, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22584, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22585, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22586, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22587, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22588, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22589, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22590, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22591, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22592, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22593, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22594, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22595, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22596, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22597, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22598, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22599, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22600, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22601, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22602, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22603, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22604, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22605, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22606, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22607, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22608, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22609, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22610, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22611, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22612, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22613, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22614, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22615, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22616, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22617, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22618, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22619, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22620, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22621, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22622, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22623, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22624, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22625, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22626, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22627, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22628, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22629, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22630, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22631, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22632, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22633, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22634, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22635, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22636, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22637, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22638, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22639, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22640, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22641, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22642, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22643, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22644, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22645, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22646, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22647, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22648, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22649, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22650, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22651, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22652, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22653, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22654, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22655, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22656, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22657, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22658, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22659, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22660, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22661, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22662, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22663, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22664, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22665, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22666, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22667, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22668, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22669, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22670, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22671, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22672, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22673, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22674, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22675, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22676, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22677, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22678, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22679, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22680, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22681, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22682, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22683, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22684, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22685, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22686, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22687, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22688, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22689, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22690, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22691, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22692, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22693, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22694, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22695, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22696, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22697, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22698, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22699, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22700, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22701, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22702, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22703, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22704, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22705, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22706, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22707, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22708, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22709, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22710, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22711, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22712, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22713, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22714, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22715, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22716, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22717, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22718, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22719, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22720, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22721, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22722, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22723, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22724, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22725, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22726, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22727, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22728, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22729, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22730, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22731, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22732, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22733, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22734, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22735, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22736, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22737, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22738, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22739, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22740, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22741, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22742, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22743, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22744, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22745, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22746, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22747, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22748, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22749, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22750, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22751, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22752, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22753, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22754, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22755, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22756, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22757, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22758, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22759, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22760, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22761, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22762, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22763, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22764, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22765, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22766, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22767, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22768, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22769, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22770, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22771, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22772, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22773, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22774, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22775, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22776, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22777, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22778, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22779, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22780, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22781, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22782, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22783, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22784, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22785, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22786, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22787, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22788, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22789, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22790, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22791, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22792, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22793, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22794, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22795, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22796, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22797, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22798, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + } + ] + }, + "minecraft:campfire": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ], + "signal_fire": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18511, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18512, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18513, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18514, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18515, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18516, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18517, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18518, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18519, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18520, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18521, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18522, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18523, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18524, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18525, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18526, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18527, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18528, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18529, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18530, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18531, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18532, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18533, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18534, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18535, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18536, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18537, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18538, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18539, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18540, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18541, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18542, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20725, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20726, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20727, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20728, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20729, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20730, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20731, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20732, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20733, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20734, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20735, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20736, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20737, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20738, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20739, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20740, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20997, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 20998, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:carrots": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 8595, + "properties": { + "age": "0" + } + }, + { + "id": 8596, + "properties": { + "age": "1" + } + }, + { + "id": 8597, + "properties": { + "age": "2" + } + }, + { + "id": 8598, + "properties": { + "age": "3" + } + }, + { + "id": 8599, + "properties": { + "age": "4" + } + }, + { + "id": 8600, + "properties": { + "age": "5" + } + }, + { + "id": 8601, + "properties": { + "age": "6" + } + }, + { + "id": 8602, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:cartography_table": { + "states": [ + { + "default": true, + "id": 18436 + } + ] + }, + "minecraft:carved_pumpkin": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 5866, + "properties": { + "facing": "north" + } + }, + { + "id": 5867, + "properties": { + "facing": "south" + } + }, + { + "id": 5868, + "properties": { + "facing": "west" + } + }, + { + "id": 5869, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cauldron": { + "states": [ + { + "default": true, + "id": 7398 + } + ] + }, + "minecraft:cave_air": { + "states": [ + { + "default": true, + "id": 12959 + } + ] + }, + "minecraft:cave_vines": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ], + "berries": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24769, + "properties": { + "age": "0", + "berries": "true" + } + }, + { + "default": true, + "id": 24770, + "properties": { + "age": "0", + "berries": "false" + } + }, + { + "id": 24771, + "properties": { + "age": "1", + "berries": "true" + } + }, + { + "id": 24772, + "properties": { + "age": "1", + "berries": "false" + } + }, + { + "id": 24773, + "properties": { + "age": "2", + "berries": "true" + } + }, + { + "id": 24774, + "properties": { + "age": "2", + "berries": "false" + } + }, + { + "id": 24775, + "properties": { + "age": "3", + "berries": "true" + } + }, + { + "id": 24776, + "properties": { + "age": "3", + "berries": "false" + } + }, + { + "id": 24777, + "properties": { + "age": "4", + "berries": "true" + } + }, + { + "id": 24778, + "properties": { + "age": "4", + "berries": "false" + } + }, + { + "id": 24779, + "properties": { + "age": "5", + "berries": "true" + } + }, + { + "id": 24780, + "properties": { + "age": "5", + "berries": "false" + } + }, + { + "id": 24781, + "properties": { + "age": "6", + "berries": "true" + } + }, + { + "id": 24782, + "properties": { + "age": "6", + "berries": "false" + } + }, + { + "id": 24783, + "properties": { + "age": "7", + "berries": "true" + } + }, + { + "id": 24784, + "properties": { + "age": "7", + "berries": "false" + } + }, + { + "id": 24785, + "properties": { + "age": "8", + "berries": "true" + } + }, + { + "id": 24786, + "properties": { + "age": "8", + "berries": "false" + } + }, + { + "id": 24787, + "properties": { + "age": "9", + "berries": "true" + } + }, + { + "id": 24788, + "properties": { + "age": "9", + "berries": "false" + } + }, + { + "id": 24789, + "properties": { + "age": "10", + "berries": "true" + } + }, + { + "id": 24790, + "properties": { + "age": "10", + "berries": "false" + } + }, + { + "id": 24791, + "properties": { + "age": "11", + "berries": "true" + } + }, + { + "id": 24792, + "properties": { + "age": "11", + "berries": "false" + } + }, + { + "id": 24793, + "properties": { + "age": "12", + "berries": "true" + } + }, + { + "id": 24794, + "properties": { + "age": "12", + "berries": "false" + } + }, + { + "id": 24795, + "properties": { + "age": "13", + "berries": "true" + } + }, + { + "id": 24796, + "properties": { + "age": "13", + "berries": "false" + } + }, + { + "id": 24797, + "properties": { + "age": "14", + "berries": "true" + } + }, + { + "id": 24798, + "properties": { + "age": "14", + "berries": "false" + } + }, + { + "id": 24799, + "properties": { + "age": "15", + "berries": "true" + } + }, + { + "id": 24800, + "properties": { + "age": "15", + "berries": "false" + } + }, + { + "id": 24801, + "properties": { + "age": "16", + "berries": "true" + } + }, + { + "id": 24802, + "properties": { + "age": "16", + "berries": "false" + } + }, + { + "id": 24803, + "properties": { + "age": "17", + "berries": "true" + } + }, + { + "id": 24804, + "properties": { + "age": "17", + "berries": "false" + } + }, + { + "id": 24805, + "properties": { + "age": "18", + "berries": "true" + } + }, + { + "id": 24806, + "properties": { + "age": "18", + "berries": "false" + } + }, + { + "id": 24807, + "properties": { + "age": "19", + "berries": "true" + } + }, + { + "id": 24808, + "properties": { + "age": "19", + "berries": "false" + } + }, + { + "id": 24809, + "properties": { + "age": "20", + "berries": "true" + } + }, + { + "id": 24810, + "properties": { + "age": "20", + "berries": "false" + } + }, + { + "id": 24811, + "properties": { + "age": "21", + "berries": "true" + } + }, + { + "id": 24812, + "properties": { + "age": "21", + "berries": "false" + } + }, + { + "id": 24813, + "properties": { + "age": "22", + "berries": "true" + } + }, + { + "id": 24814, + "properties": { + "age": "22", + "berries": "false" + } + }, + { + "id": 24815, + "properties": { + "age": "23", + "berries": "true" + } + }, + { + "id": 24816, + "properties": { + "age": "23", + "berries": "false" + } + }, + { + "id": 24817, + "properties": { + "age": "24", + "berries": "true" + } + }, + { + "id": 24818, + "properties": { + "age": "24", + "berries": "false" + } + }, + { + "id": 24819, + "properties": { + "age": "25", + "berries": "true" + } + }, + { + "id": 24820, + "properties": { + "age": "25", + "berries": "false" + } + } + ] + }, + "minecraft:cave_vines_plant": { + "properties": { + "berries": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24821, + "properties": { + "berries": "true" + } + }, + { + "default": true, + "id": 24822, + "properties": { + "berries": "false" + } + } + ] + }, + "minecraft:chain": { + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6773, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 6774, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 6775, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6776, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 6777, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 6778, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:chain_command_block": { + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12527, + "properties": { + "conditional": "true", + "facing": "north" + } + }, + { + "id": 12528, + "properties": { + "conditional": "true", + "facing": "east" + } + }, + { + "id": 12529, + "properties": { + "conditional": "true", + "facing": "south" + } + }, + { + "id": 12530, + "properties": { + "conditional": "true", + "facing": "west" + } + }, + { + "id": 12531, + "properties": { + "conditional": "true", + "facing": "up" + } + }, + { + "id": 12532, + "properties": { + "conditional": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 12533, + "properties": { + "conditional": "false", + "facing": "north" + } + }, + { + "id": 12534, + "properties": { + "conditional": "false", + "facing": "east" + } + }, + { + "id": 12535, + "properties": { + "conditional": "false", + "facing": "south" + } + }, + { + "id": 12536, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 12537, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 12538, + "properties": { + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:cherry_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8731, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8732, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8733, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8734, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8735, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8736, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8737, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8738, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8739, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8740, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8741, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8742, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8743, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8744, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8745, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8746, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8747, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8748, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8749, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8750, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8751, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8752, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8753, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8754, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:cherry_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12078, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12079, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12080, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12081, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12082, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12083, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12084, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12085, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12086, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12087, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12088, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 12089, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12090, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12091, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12092, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12093, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12094, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12095, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12096, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12097, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12098, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12099, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12100, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12101, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12102, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12103, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12104, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12105, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12106, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12107, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12108, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12109, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12110, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12111, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12112, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12113, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12114, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12115, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12116, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12117, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12118, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12119, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12120, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12121, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12122, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12123, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12124, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12125, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12126, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12127, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12128, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12129, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12130, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12131, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12132, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12133, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12134, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12135, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12136, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12137, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12138, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12139, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12140, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12141, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:cherry_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11694, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11695, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11696, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11697, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11698, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11699, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11700, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11701, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11702, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11703, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11704, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11705, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11706, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11707, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11708, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11709, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11710, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11711, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11712, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11713, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11714, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11715, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11716, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11717, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11718, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11719, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11720, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11721, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11722, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11723, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11724, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11725, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:cherry_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11438, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11439, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11440, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11441, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11442, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11443, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11444, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11445, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11446, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11447, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11448, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11449, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11450, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11451, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11452, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11453, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11454, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11455, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11456, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11457, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11458, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11459, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11460, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11461, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11462, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11463, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11464, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11465, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11466, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11467, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11468, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11469, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:cherry_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5090, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5091, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5092, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5093, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5094, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5095, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5096, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5097, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5098, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5099, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5100, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5101, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5102, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5103, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5104, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5105, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5106, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5107, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5108, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5109, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5110, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5111, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5112, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5113, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5114, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5115, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5116, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5117, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5118, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5119, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5120, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5121, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5122, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5123, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5124, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5125, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5126, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5127, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5128, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5129, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5130, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5131, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5132, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5133, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5134, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5135, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5136, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5137, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5138, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5139, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5140, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5141, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5142, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5143, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5144, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5145, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5146, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5147, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5148, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5149, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5150, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5151, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5152, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5153, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 377, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 378, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 379, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 380, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 381, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 382, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 383, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 384, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 385, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 386, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 387, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 388, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 389, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 390, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 391, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 392, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 393, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 394, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 395, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 396, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 397, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 398, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 399, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 400, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 401, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 402, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 403, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 404, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 145, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 146, + "properties": { + "axis": "y" + } + }, + { + "id": 147, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:cherry_planks": { + "states": [ + { + "default": true, + "id": 20 + } + ] + }, + "minecraft:cherry_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5726, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5727, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:cherry_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 35, + "properties": { + "stage": "0" + } + }, + { + "id": 36, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:cherry_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4430, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4431, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4432, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4433, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4434, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4435, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4436, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4437, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4438, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4439, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4440, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4441, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4442, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4443, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4444, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4445, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4446, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4447, + "properties": { + "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": 4458, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4459, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4460, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4461, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11192, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11193, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11194, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11195, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11196, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11197, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9964, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9965, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9966, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9967, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9968, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9969, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9970, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9971, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9972, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9973, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9974, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9975, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9976, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9977, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9978, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9979, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9980, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9981, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9982, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9983, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9984, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9985, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9986, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9987, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9988, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9989, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9990, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9991, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9992, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9993, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9994, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9995, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9996, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9997, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9998, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9999, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10000, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10001, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10002, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10003, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10004, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10005, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10006, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10007, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10008, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10009, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10010, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10011, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10012, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10013, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10014, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10015, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10016, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10017, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10018, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10019, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10020, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10021, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10022, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10023, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10024, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10025, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10026, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10027, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10028, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10029, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10030, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10031, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10032, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10033, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10034, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10035, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10036, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10037, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10038, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10039, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10040, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10041, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10042, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10043, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6281, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6282, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6283, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6284, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6285, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6286, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6287, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6288, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6289, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6290, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6291, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6292, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6293, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6294, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6295, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6296, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6297, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6298, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6299, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6300, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6301, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6302, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6303, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6304, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6305, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6306, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6307, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6308, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6309, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6310, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6311, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6312, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6313, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6314, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6315, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6316, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6317, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6318, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6319, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6320, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6321, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6322, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6323, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6324, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6325, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6326, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6327, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6328, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6329, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6330, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6331, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6332, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6333, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6334, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6335, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6336, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6337, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6338, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6339, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6340, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6341, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6342, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6343, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6344, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5570, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5571, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5572, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5573, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5574, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5575, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5576, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5577, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4794, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4795, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4796, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4797, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4798, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4799, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4800, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4801, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 204, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 205, + "properties": { + "axis": "y" + } + }, + { + "id": 206, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:chest": { + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2954, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2955, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 2956, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 2957, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 2958, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 2959, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 2960, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 2961, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 2962, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 2963, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 2964, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 2965, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 2966, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 2967, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 2968, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 2969, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 2970, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 2971, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 2972, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 2973, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 2974, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 2975, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 2976, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 2977, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:chipped_anvil": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 9111, + "properties": { + "facing": "north" + } + }, + { + "id": 9112, + "properties": { + "facing": "south" + } + }, + { + "id": 9113, + "properties": { + "facing": "west" + } + }, + { + "id": 9114, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:chiseled_bookshelf": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "slot_0_occupied": [ + "true", + "false" + ], + "slot_1_occupied": [ + "true", + "false" + ], + "slot_2_occupied": [ + "true", + "false" + ], + "slot_3_occupied": [ + "true", + "false" + ], + "slot_4_occupied": [ + "true", + "false" + ], + "slot_5_occupied": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2097, + "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": 2098, + "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": 2099, + "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": 2100, + "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": "false" + } + }, + { + "id": 2101, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2102, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2103, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2104, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2105, + "properties": { + "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": "true" + } + }, + { + "id": 2106, + "properties": { + "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" + } + }, + { + "id": 2107, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2108, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2109, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2110, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2111, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2112, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2113, + "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": "true" + } + }, + { + "id": 2114, + "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" + } + }, + { + "id": 2115, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2116, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2117, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2118, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2119, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2120, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2121, + "properties": { + "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": "true" + } + }, + { + "id": 2122, + "properties": { + "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" + } + }, + { + "id": 2123, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2124, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2125, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2126, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2127, + "properties": { + "facing": "north", + "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": 2128, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2129, + "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": "true" + } + }, + { + "id": 2130, + "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" + } + }, + { + "id": 2131, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2132, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2133, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2134, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2135, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2136, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2137, + "properties": { + "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": "true" + } + }, + { + "id": 2138, + "properties": { + "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" + } + }, + { + "id": 2139, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2140, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2141, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2142, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2143, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2144, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2145, + "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": "true" + } + }, + { + "id": 2146, + "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" + } + }, + { + "id": 2147, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2148, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2149, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2150, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2151, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2152, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2153, + "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": 2154, + "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": 2155, + "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": 2156, + "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": "false" + } + }, + { + "id": 2157, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2158, + "properties": { + "facing": "north", + "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": 2159, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "default": true, + "id": 2160, + "properties": { + "facing": "north", + "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": 2161, + "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": 2162, + "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": 2163, + "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": 2164, + "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": "false" + } + }, + { + "id": 2165, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2166, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2167, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2168, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2169, + "properties": { + "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": "true" + } + }, + { + "id": 2170, + "properties": { + "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" + } + }, + { + "id": 2171, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2172, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2173, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2174, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2175, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2176, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2177, + "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": "true" + } + }, + { + "id": 2178, + "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" + } + }, + { + "id": 2179, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2180, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2181, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2182, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2183, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2184, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2185, + "properties": { + "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": "true" + } + }, + { + "id": 2186, + "properties": { + "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" + } + }, + { + "id": 2187, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2188, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2189, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2190, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2191, + "properties": { + "facing": "south", + "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": 2192, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2193, + "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": "true" + } + }, + { + "id": 2194, + "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" + } + }, + { + "id": 2195, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2196, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2197, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2198, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2199, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2200, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2201, + "properties": { + "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": "true" + } + }, + { + "id": 2202, + "properties": { + "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" + } + }, + { + "id": 2203, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2204, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2205, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2206, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2207, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2208, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2209, + "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": "true" + } + }, + { + "id": 2210, + "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" + } + }, + { + "id": 2211, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2212, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2213, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2214, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2215, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2216, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2217, + "properties": { + "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": "true" + } + }, + { + "id": 2218, + "properties": { + "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" + } + }, + { + "id": 2219, + "properties": { + "facing": "south", + "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": 2220, + "properties": { + "facing": "south", + "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": 2221, + "properties": { + "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": "true" + } + }, + { + "id": 2222, + "properties": { + "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": 2223, + "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": "true" + } + }, + { + "id": 2224, + "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": 2225, + "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": 2226, + "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": "false" + } + }, + { + "id": 2227, + "properties": { + "facing": "west", + "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": 2228, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2229, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2230, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2231, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2232, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2233, + "properties": { + "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": "true" + } + }, + { + "id": 2234, + "properties": { + "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" + } + }, + { + "id": 2235, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2236, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2237, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2238, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2239, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2240, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2241, + "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": "true" + } + }, + { + "id": 2242, + "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" + } + }, + { + "id": 2243, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2244, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2245, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2246, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2247, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2248, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2249, + "properties": { + "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": "true" + } + }, + { + "id": 2250, + "properties": { + "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" + } + }, + { + "id": 2251, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2252, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2253, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2254, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2255, + "properties": { + "facing": "west", + "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": 2256, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2257, + "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": "true" + } + }, + { + "id": 2258, + "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" + } + }, + { + "id": 2259, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2260, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2261, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2262, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2263, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2264, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2265, + "properties": { + "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": "true" + } + }, + { + "id": 2266, + "properties": { + "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" + } + }, + { + "id": 2267, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2268, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2269, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2270, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2271, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2272, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2273, + "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": "true" + } + }, + { + "id": 2274, + "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" + } + }, + { + "id": 2275, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2276, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2277, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2278, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2279, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2280, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2281, + "properties": { + "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": "true" + } + }, + { + "id": 2282, + "properties": { + "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" + } + }, + { + "id": 2283, + "properties": { + "facing": "west", + "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": 2284, + "properties": { + "facing": "west", + "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": 2285, + "properties": { + "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": "true" + } + }, + { + "id": 2286, + "properties": { + "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": 2287, + "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": "true" + } + }, + { + "id": 2288, + "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": 2289, + "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": 2290, + "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": "false" + } + }, + { + "id": 2291, + "properties": { + "facing": "east", + "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": 2292, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2293, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2294, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2295, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2296, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2297, + "properties": { + "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": "true" + } + }, + { + "id": 2298, + "properties": { + "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" + } + }, + { + "id": 2299, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2300, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2301, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2302, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2303, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2304, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2305, + "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": "true" + } + }, + { + "id": 2306, + "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" + } + }, + { + "id": 2307, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2308, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2309, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2310, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2311, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2312, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2313, + "properties": { + "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": "true" + } + }, + { + "id": 2314, + "properties": { + "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" + } + }, + { + "id": 2315, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2316, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2317, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2318, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2319, + "properties": { + "facing": "east", + "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": 2320, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2321, + "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": "true" + } + }, + { + "id": 2322, + "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" + } + }, + { + "id": 2323, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2324, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2325, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2326, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2327, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2328, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2329, + "properties": { + "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": "true" + } + }, + { + "id": 2330, + "properties": { + "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" + } + }, + { + "id": 2331, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2332, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2333, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2334, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2335, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2336, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2337, + "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": "true" + } + }, + { + "id": 2338, + "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" + } + }, + { + "id": 2339, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2340, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2341, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2342, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2343, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2344, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2345, + "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": "true" + } + }, + { + "id": 2346, + "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": 2347, + "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": 2348, + "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": 2349, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2350, + "properties": { + "facing": "east", + "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": 2351, + "properties": { + "facing": "east", + "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": 2352, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + } + ] + }, + "minecraft:chiseled_copper": { + "states": [ + { + "default": true, + "id": 22951 + } + ] + }, + "minecraft:chiseled_deepslate": { + "states": [ + { + "default": true, + "id": 26551 + } + ] + }, + "minecraft:chiseled_nether_bricks": { + "states": [ + { + "default": true, + "id": 20722 + } + ] + }, + "minecraft:chiseled_polished_blackstone": { + "states": [ + { + "default": true, + "id": 19874 + } + ] + }, + "minecraft:chiseled_quartz_block": { + "states": [ + { + "default": true, + "id": 9236 + } + ] + }, + "minecraft:chiseled_red_sandstone": { + "states": [ + { + "default": true, + "id": 11080 + } + ] + }, + "minecraft:chiseled_sandstone": { + "states": [ + { + "default": true, + "id": 536 + } + ] + }, + "minecraft:chiseled_stone_bricks": { + "states": [ + { + "default": true, + "id": 6540 + } + ] + }, + "minecraft:chiseled_tuff": { + "states": [ + { + "default": true, + "id": 21903 + } + ] + }, + "minecraft:chiseled_tuff_bricks": { + "states": [ + { + "default": true, + "id": 22315 + } + ] + }, + "minecraft:chorus_flower": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ + { + "default": true, + "id": 12404, + "properties": { + "age": "0" + } + }, + { + "id": 12405, + "properties": { + "age": "1" + } + }, + { + "id": 12406, + "properties": { + "age": "2" + } + }, + { + "id": 12407, + "properties": { + "age": "3" + } + }, + { + "id": 12408, + "properties": { + "age": "4" + } + }, + { + "id": 12409, + "properties": { + "age": "5" + } + } + ] + }, + "minecraft:chorus_plant": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12340, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12341, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12342, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12343, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12344, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12345, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12346, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12347, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12348, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12349, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12350, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12351, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12352, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12353, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12354, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12355, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12356, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12357, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12358, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12359, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12360, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12361, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12362, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12363, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12364, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12365, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12366, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12367, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12368, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12369, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12370, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12371, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12372, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12373, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12374, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12375, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12376, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12377, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12378, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12379, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12380, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12381, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12382, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12383, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12384, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12385, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12386, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12387, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12388, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12389, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12390, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12391, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12392, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12393, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12394, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12395, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12396, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12397, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12398, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12399, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12400, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12401, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12402, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "default": true, + "id": 12403, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:clay": { + "states": [ + { + "default": true, + "id": 5798 + } + ] + }, + "minecraft:coal_block": { + "states": [ + { + "default": true, + "id": 10745 + } + ] + }, + "minecraft:coal_ore": { + "states": [ + { + "default": true, + "id": 127 + } + ] + }, + "minecraft:coarse_dirt": { + "states": [ + { + "default": true, + "id": 11 + } + ] + }, + "minecraft:cobbled_deepslate": { + "states": [ + { + "default": true, + "id": 24907 + } + ] + }, + "minecraft:cobbled_deepslate_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24988, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 24989, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 24990, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24991, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 24992, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 24993, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobbled_deepslate_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24908, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24909, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24910, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24911, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24912, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24913, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24914, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24915, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24916, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24917, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24918, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24919, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24920, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24921, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24922, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24923, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24924, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24925, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24926, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24927, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24928, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24929, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24930, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24931, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24932, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24933, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24934, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24935, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24936, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24937, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24938, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24939, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24940, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24941, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24942, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24943, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24944, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24945, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24946, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24947, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24948, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24949, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24950, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24951, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24952, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24953, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24954, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24955, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24956, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24957, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24958, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24959, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24960, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24961, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24962, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24963, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24964, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24965, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24966, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24967, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24968, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24969, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24970, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24971, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24972, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24973, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24974, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24975, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24976, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24977, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24978, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24979, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24980, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24981, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24982, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24983, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24984, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24985, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24986, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24987, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobbled_deepslate_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 24994, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24995, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24996, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 24997, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24998, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24999, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25000, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25001, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25002, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25003, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25004, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25005, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25006, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25007, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25008, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25009, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25010, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25011, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25012, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25013, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25014, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25015, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25016, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25017, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25018, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25019, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25020, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25021, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25022, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25023, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25024, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25025, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25026, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25027, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25028, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25029, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25030, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25031, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25032, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25033, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25034, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25035, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25036, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25037, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25038, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25039, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25040, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25041, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25042, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25043, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25044, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25045, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25046, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25047, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25048, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25049, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25050, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25051, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25052, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25053, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25054, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25055, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25056, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25057, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25058, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25059, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25060, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25061, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25062, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25063, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25064, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25065, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25066, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25067, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25068, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25069, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25070, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25071, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25072, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25073, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25074, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25075, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25076, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25077, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25078, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25079, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25080, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25081, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25082, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25083, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25084, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25085, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25086, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25087, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25088, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25089, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25090, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25091, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25092, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25093, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25094, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25095, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25096, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25097, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25098, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25099, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25100, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25101, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25102, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25103, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25104, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25105, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25106, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25107, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25108, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25109, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25110, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25111, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25112, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25113, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25114, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25115, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25116, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25117, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25118, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25119, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25120, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25121, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25122, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25123, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25124, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25125, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25126, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25127, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25128, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25129, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25130, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25131, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25132, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25133, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25134, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25135, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25136, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25137, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25138, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25139, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25140, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25141, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25142, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25143, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25144, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25145, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25146, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25147, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25148, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25149, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25150, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25151, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25152, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25153, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25154, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25155, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25156, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25157, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25158, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25159, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25160, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25161, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25162, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25163, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25164, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25165, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25166, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25167, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25168, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25169, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25170, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25171, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25172, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25173, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25174, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25175, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25176, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25177, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25178, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25179, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25180, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25181, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25182, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25183, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25184, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25185, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25186, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25187, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25188, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25189, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25190, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25191, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25192, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25193, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25194, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25195, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25196, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25197, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25198, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25199, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25200, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25201, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25202, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25203, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25204, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25205, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25206, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25207, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25208, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25209, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25210, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25211, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25212, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25213, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25214, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25215, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25216, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25217, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25218, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25219, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25220, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25221, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25222, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25223, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25224, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25225, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25226, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25227, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25228, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25229, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25230, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25231, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25232, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25233, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25234, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25235, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25236, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25237, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25238, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25239, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25240, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25241, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25242, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25243, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25244, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25245, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25246, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25247, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25248, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25249, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25250, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25251, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25252, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25253, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25254, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25255, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25256, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25257, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25258, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25259, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25260, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25261, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25262, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25263, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25264, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25265, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25266, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25267, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25268, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25269, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25270, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25271, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25272, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25273, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25274, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25275, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25276, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25277, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25278, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25279, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25280, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25281, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25282, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25283, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25284, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25285, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25286, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25287, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25288, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25289, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25290, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25291, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25292, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25293, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25294, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25295, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25296, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25297, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25298, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25299, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25300, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25301, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25302, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25303, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25304, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25305, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25306, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25307, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25308, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25309, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25310, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25311, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25312, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25313, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25314, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25315, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25316, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25317, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:cobblestone": { + "states": [ + { + "default": true, + "id": 14 + } + ] + }, + "minecraft:cobblestone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11252, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11253, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11254, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11255, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11256, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11257, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobblestone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4682, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4683, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4684, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4685, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4686, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4687, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4688, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4689, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4690, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4691, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4692, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4693, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4694, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4695, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4696, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4697, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4698, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4699, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4700, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4701, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4702, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4703, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4704, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4705, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4706, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4707, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4708, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4709, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4710, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4711, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4712, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4713, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4714, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4715, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4716, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4717, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4718, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4719, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4720, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4721, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4722, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4723, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4724, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4725, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4726, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4727, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4728, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4729, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4730, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4731, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4732, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4733, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4734, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4735, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4736, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4737, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4738, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4739, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4740, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4741, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4742, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4743, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4744, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4745, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4746, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4747, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4748, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4749, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4750, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4751, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4752, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4753, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4754, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4755, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4756, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4757, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4758, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4759, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4760, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4761, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobblestone_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 7919, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7920, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7921, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 7922, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7923, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7924, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7925, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7926, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7927, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7928, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7929, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7930, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7931, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7932, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7933, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7934, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7935, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7936, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7937, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7938, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7939, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7940, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7941, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7942, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7943, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7944, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7945, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7946, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7947, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7948, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7949, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7950, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7951, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7952, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7953, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7954, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7955, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7956, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7957, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7958, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7959, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7960, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7961, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7962, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7963, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7964, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7965, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7966, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7967, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7968, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7969, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7970, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7971, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7972, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7973, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7974, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7975, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7976, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7977, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7978, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7979, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7980, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7981, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7982, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7983, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7984, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7985, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7986, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7987, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7988, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7989, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7990, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7991, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7992, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7993, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7994, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7995, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7996, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7997, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7998, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7999, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8000, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8001, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8002, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8003, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8004, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8005, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8006, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8007, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8008, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8009, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8010, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8011, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8012, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8013, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8014, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8015, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8016, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8017, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8018, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8019, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8020, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8021, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8022, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8023, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8024, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8025, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8026, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8027, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8028, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8029, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8030, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8031, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8032, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8033, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8034, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8035, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8036, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8037, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8038, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8039, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8040, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8041, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8042, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8043, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8044, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8045, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8046, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8047, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8048, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8049, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8050, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8051, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8052, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8053, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8054, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8055, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8056, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8057, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8058, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8059, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8060, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8061, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8062, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8063, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8064, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8065, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8066, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8067, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8068, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8069, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8070, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8071, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8072, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8073, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8074, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8075, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8076, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8077, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8078, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8079, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8080, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8081, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8082, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8083, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8084, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8085, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8086, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8087, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8088, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8089, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8090, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8091, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8092, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8093, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8094, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8095, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8096, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8097, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8098, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8099, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8100, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8101, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8102, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8103, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8104, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8105, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8106, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8107, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8108, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8109, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8110, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8111, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8112, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8113, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8114, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8115, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8116, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8117, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8118, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8119, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8120, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8121, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8122, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8123, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8124, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8125, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8126, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8127, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8128, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8129, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8130, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8131, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8132, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8133, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8134, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8135, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8136, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8137, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8138, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8139, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8140, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8141, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8142, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8143, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8144, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8145, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8146, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8147, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8148, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8149, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8150, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8151, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8152, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8153, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8154, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8155, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8156, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8157, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8158, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8159, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8160, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8161, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8162, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8163, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8164, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8165, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8166, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8167, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8168, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8169, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8170, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8171, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8172, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8173, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8174, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8175, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8176, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8177, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8178, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8179, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8180, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8181, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8182, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8183, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8184, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8185, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8186, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8187, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8188, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8189, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8190, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8191, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8192, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8193, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8194, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8195, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8196, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8197, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8198, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8199, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8200, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8201, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8202, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8203, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8204, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8205, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8206, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8207, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8208, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8209, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8210, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8211, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8212, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8213, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8214, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8215, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8216, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8217, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8218, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8219, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8220, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8221, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8222, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8223, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8224, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8225, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8226, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8227, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8228, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8229, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8230, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8231, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8232, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8233, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8234, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8235, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8236, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8237, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8238, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8239, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8240, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8241, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8242, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:cobweb": { + "states": [ + { + "default": true, + "id": 2004 + } + ] + }, + "minecraft:cocoa": { + "properties": { + "age": [ + "0", + "1", + "2" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7419, + "properties": { + "age": "0", + "facing": "north" + } + }, + { + "id": 7420, + "properties": { + "age": "0", + "facing": "south" + } + }, + { + "id": 7421, + "properties": { + "age": "0", + "facing": "west" + } + }, + { + "id": 7422, + "properties": { + "age": "0", + "facing": "east" + } + }, + { + "id": 7423, + "properties": { + "age": "1", + "facing": "north" + } + }, + { + "id": 7424, + "properties": { + "age": "1", + "facing": "south" + } + }, + { + "id": 7425, + "properties": { + "age": "1", + "facing": "west" + } + }, + { + "id": 7426, + "properties": { + "age": "1", + "facing": "east" + } + }, + { + "id": 7427, + "properties": { + "age": "2", + "facing": "north" + } + }, + { + "id": 7428, + "properties": { + "age": "2", + "facing": "south" + } + }, + { + "id": 7429, + "properties": { + "age": "2", + "facing": "west" + } + }, + { + "id": 7430, + "properties": { + "age": "2", + "facing": "east" + } + } + ] + }, + "minecraft:command_block": { + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 7906, + "properties": { + "conditional": "true", + "facing": "north" + } + }, + { + "id": 7907, + "properties": { + "conditional": "true", + "facing": "east" + } + }, + { + "id": 7908, + "properties": { + "conditional": "true", + "facing": "south" + } + }, + { + "id": 7909, + "properties": { + "conditional": "true", + "facing": "west" + } + }, + { + "id": 7910, + "properties": { + "conditional": "true", + "facing": "up" + } + }, + { + "id": 7911, + "properties": { + "conditional": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 7912, + "properties": { + "conditional": "false", + "facing": "north" + } + }, + { + "id": 7913, + "properties": { + "conditional": "false", + "facing": "east" + } + }, + { + "id": 7914, + "properties": { + "conditional": "false", + "facing": "south" + } + }, + { + "id": 7915, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 7916, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 7917, + "properties": { + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:comparator": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "mode": [ + "compare", + "subtract" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9175, + "properties": { + "facing": "north", + "mode": "compare", + "powered": "true" + } + }, + { + "default": true, + "id": 9176, + "properties": { + "facing": "north", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 9177, + "properties": { + "facing": "north", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 9178, + "properties": { + "facing": "north", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 9179, + "properties": { + "facing": "south", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 9180, + "properties": { + "facing": "south", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 9181, + "properties": { + "facing": "south", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 9182, + "properties": { + "facing": "south", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 9183, + "properties": { + "facing": "west", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 9184, + "properties": { + "facing": "west", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 9185, + "properties": { + "facing": "west", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 9186, + "properties": { + "facing": "west", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 9187, + "properties": { + "facing": "east", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 9188, + "properties": { + "facing": "east", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 9189, + "properties": { + "facing": "east", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 9190, + "properties": { + "facing": "east", + "mode": "subtract", + "powered": "false" + } + } + ] + }, + "minecraft:composter": { + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + }, + "states": [ + { + "default": true, + "id": 19372, + "properties": { + "level": "0" + } + }, + { + "id": 19373, + "properties": { + "level": "1" + } + }, + { + "id": 19374, + "properties": { + "level": "2" + } + }, + { + "id": 19375, + "properties": { + "level": "3" + } + }, + { + "id": 19376, + "properties": { + "level": "4" + } + }, + { + "id": 19377, + "properties": { + "level": "5" + } + }, + { + "id": 19378, + "properties": { + "level": "6" + } + }, + { + "id": 19379, + "properties": { + "level": "7" + } + }, + { + "id": 19380, + "properties": { + "level": "8" + } + } + ] + }, + "minecraft:conduit": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12942, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12943, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_block": { + "states": [ + { + "default": true, + "id": 22938 + } + ] + }, + "minecraft:copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24692, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24693, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24694, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24695, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:copper_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23652, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23653, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23654, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23655, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23656, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23657, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23658, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23659, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23660, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23661, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23662, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 23663, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23664, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23665, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23666, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23667, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23668, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23669, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23670, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23671, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23672, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23673, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23674, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23675, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23676, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23677, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23678, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23679, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23680, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23681, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23682, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23683, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23684, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23685, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23686, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23687, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23688, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23689, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23690, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23691, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23692, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23693, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23694, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23695, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23696, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23697, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23698, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23699, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23700, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23701, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23702, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23703, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23704, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23705, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23706, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23707, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23708, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23709, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23710, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23711, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23712, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23713, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23714, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23715, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:copper_grate": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24676, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24677, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_ore": { + "states": [ + { + "default": true, + "id": 22942 + } + ] + }, + "minecraft:copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24164, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24165, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24166, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24167, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24168, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24169, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24170, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24171, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24172, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24173, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24174, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24175, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24176, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24177, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24178, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24179, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24180, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24181, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24182, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24183, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24184, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24185, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24186, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24187, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24188, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24189, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24190, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24191, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24192, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24193, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24194, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24195, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24196, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24197, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24198, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24199, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24200, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24201, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24202, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24203, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24204, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24205, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24206, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24207, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24208, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24209, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24210, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24211, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24212, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24213, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24214, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24215, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24216, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24217, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24218, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24219, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24220, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24221, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24222, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24223, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24224, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24225, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24226, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24227, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cornflower": { + "states": [ + { + "default": true, + "id": 2086 + } + ] + }, + "minecraft:cracked_deepslate_bricks": { + "states": [ + { + "default": true, + "id": 26552 + } + ] + }, + "minecraft:cracked_deepslate_tiles": { + "states": [ + { + "default": true, + "id": 26553 + } + ] + }, + "minecraft:cracked_nether_bricks": { + "states": [ + { + "default": true, + "id": 20723 + } + ] + }, + "minecraft:cracked_polished_blackstone_bricks": { + "states": [ + { + "default": true, + "id": 19873 + } + ] + }, + "minecraft:cracked_stone_bricks": { + "states": [ + { + "default": true, + "id": 6539 + } + ] + }, + "minecraft:crafter": { + "properties": { + "crafting": [ + "true", + "false" + ], + "orientation": [ + "down_east", + "down_north", + "down_south", + "down_west", + "up_east", + "up_north", + "up_south", + "up_west", + "west_up", + "east_up", + "north_up", + "south_up" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26590, + "properties": { + "crafting": "true", + "orientation": "down_east", + "triggered": "true" + } + }, + { + "id": 26591, + "properties": { + "crafting": "true", + "orientation": "down_east", + "triggered": "false" + } + }, + { + "id": 26592, + "properties": { + "crafting": "true", + "orientation": "down_north", + "triggered": "true" + } + }, + { + "id": 26593, + "properties": { + "crafting": "true", + "orientation": "down_north", + "triggered": "false" + } + }, + { + "id": 26594, + "properties": { + "crafting": "true", + "orientation": "down_south", + "triggered": "true" + } + }, + { + "id": 26595, + "properties": { + "crafting": "true", + "orientation": "down_south", + "triggered": "false" + } + }, + { + "id": 26596, + "properties": { + "crafting": "true", + "orientation": "down_west", + "triggered": "true" + } + }, + { + "id": 26597, + "properties": { + "crafting": "true", + "orientation": "down_west", + "triggered": "false" + } + }, + { + "id": 26598, + "properties": { + "crafting": "true", + "orientation": "up_east", + "triggered": "true" + } + }, + { + "id": 26599, + "properties": { + "crafting": "true", + "orientation": "up_east", + "triggered": "false" + } + }, + { + "id": 26600, + "properties": { + "crafting": "true", + "orientation": "up_north", + "triggered": "true" + } + }, + { + "id": 26601, + "properties": { + "crafting": "true", + "orientation": "up_north", + "triggered": "false" + } + }, + { + "id": 26602, + "properties": { + "crafting": "true", + "orientation": "up_south", + "triggered": "true" + } + }, + { + "id": 26603, + "properties": { + "crafting": "true", + "orientation": "up_south", + "triggered": "false" + } + }, + { + "id": 26604, + "properties": { + "crafting": "true", + "orientation": "up_west", + "triggered": "true" + } + }, + { + "id": 26605, + "properties": { + "crafting": "true", + "orientation": "up_west", + "triggered": "false" + } + }, + { + "id": 26606, + "properties": { + "crafting": "true", + "orientation": "west_up", + "triggered": "true" + } + }, + { + "id": 26607, + "properties": { + "crafting": "true", + "orientation": "west_up", + "triggered": "false" + } + }, + { + "id": 26608, + "properties": { + "crafting": "true", + "orientation": "east_up", + "triggered": "true" + } + }, + { + "id": 26609, + "properties": { + "crafting": "true", + "orientation": "east_up", + "triggered": "false" + } + }, + { + "id": 26610, + "properties": { + "crafting": "true", + "orientation": "north_up", + "triggered": "true" + } + }, + { + "id": 26611, + "properties": { + "crafting": "true", + "orientation": "north_up", + "triggered": "false" + } + }, + { + "id": 26612, + "properties": { + "crafting": "true", + "orientation": "south_up", + "triggered": "true" + } + }, + { + "id": 26613, + "properties": { + "crafting": "true", + "orientation": "south_up", + "triggered": "false" + } + }, + { + "id": 26614, + "properties": { + "crafting": "false", + "orientation": "down_east", + "triggered": "true" + } + }, + { + "id": 26615, + "properties": { + "crafting": "false", + "orientation": "down_east", + "triggered": "false" + } + }, + { + "id": 26616, + "properties": { + "crafting": "false", + "orientation": "down_north", + "triggered": "true" + } + }, + { + "id": 26617, + "properties": { + "crafting": "false", + "orientation": "down_north", + "triggered": "false" + } + }, + { + "id": 26618, + "properties": { + "crafting": "false", + "orientation": "down_south", + "triggered": "true" + } + }, + { + "id": 26619, + "properties": { + "crafting": "false", + "orientation": "down_south", + "triggered": "false" + } + }, + { + "id": 26620, + "properties": { + "crafting": "false", + "orientation": "down_west", + "triggered": "true" + } + }, + { + "id": 26621, + "properties": { + "crafting": "false", + "orientation": "down_west", + "triggered": "false" + } + }, + { + "id": 26622, + "properties": { + "crafting": "false", + "orientation": "up_east", + "triggered": "true" + } + }, + { + "id": 26623, + "properties": { + "crafting": "false", + "orientation": "up_east", + "triggered": "false" + } + }, + { + "id": 26624, + "properties": { + "crafting": "false", + "orientation": "up_north", + "triggered": "true" + } + }, + { + "id": 26625, + "properties": { + "crafting": "false", + "orientation": "up_north", + "triggered": "false" + } + }, + { + "id": 26626, + "properties": { + "crafting": "false", + "orientation": "up_south", + "triggered": "true" + } + }, + { + "id": 26627, + "properties": { + "crafting": "false", + "orientation": "up_south", + "triggered": "false" + } + }, + { + "id": 26628, + "properties": { + "crafting": "false", + "orientation": "up_west", + "triggered": "true" + } + }, + { + "id": 26629, + "properties": { + "crafting": "false", + "orientation": "up_west", + "triggered": "false" + } + }, + { + "id": 26630, + "properties": { + "crafting": "false", + "orientation": "west_up", + "triggered": "true" + } + }, + { + "id": 26631, + "properties": { + "crafting": "false", + "orientation": "west_up", + "triggered": "false" + } + }, + { + "id": 26632, + "properties": { + "crafting": "false", + "orientation": "east_up", + "triggered": "true" + } + }, + { + "id": 26633, + "properties": { + "crafting": "false", + "orientation": "east_up", + "triggered": "false" + } + }, + { + "id": 26634, + "properties": { + "crafting": "false", + "orientation": "north_up", + "triggered": "true" + } + }, + { + "default": true, + "id": 26635, + "properties": { + "crafting": "false", + "orientation": "north_up", + "triggered": "false" + } + }, + { + "id": 26636, + "properties": { + "crafting": "false", + "orientation": "south_up", + "triggered": "true" + } + }, + { + "id": 26637, + "properties": { + "crafting": "false", + "orientation": "south_up", + "triggered": "false" + } + } + ] + }, + "minecraft:crafting_table": { + "states": [ + { + "default": true, + "id": 4277 + } + ] + }, + "minecraft:creeper_head": { + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 8987, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 8988, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 8989, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 8990, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 8991, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 8992, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 8993, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 8994, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 8995, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 8996, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 8997, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 8998, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 8999, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 9000, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 9001, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 9002, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 9003, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 9004, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 9005, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 9006, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 9007, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 9008, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 9009, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 9010, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 9011, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 9012, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 9013, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 9014, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 9015, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 9016, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 9017, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 9018, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:creeper_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9019, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 9020, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 9021, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 9022, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 9023, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 9024, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 9025, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 9026, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19100, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 19101, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 19102, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 19103, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 19104, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 19105, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 19106, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 19107, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 19108, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 19109, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 19110, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 19111, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 19112, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 19113, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 19114, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 19115, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 19116, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 19117, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 19118, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 19119, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 19120, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 19121, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 19122, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 19123, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19148, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19149, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19150, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19151, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19152, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19153, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19154, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19155, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19156, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19157, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19158, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 19159, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19160, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19161, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19162, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19163, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19164, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19165, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19166, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19167, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19168, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19169, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19170, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19171, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19172, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19173, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19174, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19175, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19176, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19177, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19178, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19179, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19180, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19181, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19182, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19183, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19184, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19185, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19186, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19187, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19188, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19189, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19190, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19191, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19192, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19193, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19194, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19195, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19196, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19197, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19198, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19199, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19200, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19201, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19202, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19203, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19204, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19205, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19206, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19207, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19208, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19209, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19210, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19211, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18684, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18685, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18686, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18687, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18688, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18689, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18690, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18691, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18692, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18693, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18694, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18695, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18696, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18697, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18698, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18699, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18700, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18701, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18702, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18703, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18704, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18705, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18706, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18707, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18708, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18709, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18710, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18711, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18712, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18713, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18714, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 18715, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:crimson_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18876, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18877, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18878, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18879, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18880, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18881, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18882, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 18883, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 18884, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18885, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18886, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18887, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18888, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18889, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18890, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 18891, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 18892, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18893, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18894, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18895, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18896, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18897, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18898, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 18899, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 18900, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18901, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18902, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18903, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18904, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18905, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18906, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 18907, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_fungus": { + "states": [ + { + "default": true, + "id": 18609 + } + ] + }, + "minecraft:crimson_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5282, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5283, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5284, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5285, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5286, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5287, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5288, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5289, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5290, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5291, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5292, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5293, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5294, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5295, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5296, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5297, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5298, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5299, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5300, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5301, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5302, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5303, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5304, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5305, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5306, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5307, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5308, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5309, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5310, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5311, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5312, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5313, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5314, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5315, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5316, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5317, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5318, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5319, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5320, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5321, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5322, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5323, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5324, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5325, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5326, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5327, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5328, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5329, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5330, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5331, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5332, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5333, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5334, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5335, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5336, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5337, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5338, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5339, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5340, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5341, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5342, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5343, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5344, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5345, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_hyphae": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18602, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 18603, + "properties": { + "axis": "y" + } + }, + { + "id": 18604, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:crimson_nylium": { + "states": [ + { + "default": true, + "id": 18608 + } + ] + }, + "minecraft:crimson_planks": { + "states": [ + { + "default": true, + "id": 18666 + } + ] + }, + "minecraft:crimson_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18680, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 18681, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:crimson_roots": { + "states": [ + { + "default": true, + "id": 18665 + } + ] + }, + "minecraft:crimson_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19276, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19277, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 19278, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 19279, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 19280, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 19281, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 19282, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 19283, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 19284, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 19285, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 19286, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 19287, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 19288, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 19289, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 19290, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 19291, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 19292, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 19293, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 19294, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 19295, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 19296, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 19297, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 19298, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 19299, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 19300, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 19301, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 19302, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 19303, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 19304, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 19305, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 19306, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 19307, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18668, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 18669, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 18670, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18671, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 18672, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 18673, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18940, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18941, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18942, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18943, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18944, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18945, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18946, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18947, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18948, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18949, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18950, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18951, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18952, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18953, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18954, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18955, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18956, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18957, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18958, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18959, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18960, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18961, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18962, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18963, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18964, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18965, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18966, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18967, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18968, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18969, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18970, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18971, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18972, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18973, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18974, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18975, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18976, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18977, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18978, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18979, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18980, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18981, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18982, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18983, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18984, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18985, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18986, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18987, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18988, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18989, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18990, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18991, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18992, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18993, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18994, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18995, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18996, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18997, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18998, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18999, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19000, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19001, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19002, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19003, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19004, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19005, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19006, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19007, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19008, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19009, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19010, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19011, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19012, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19013, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19014, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19015, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19016, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19017, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19018, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19019, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_stem": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18596, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 18597, + "properties": { + "axis": "y" + } + }, + { + "id": 18598, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:crimson_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18748, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18749, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18750, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18751, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18752, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18753, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18754, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18755, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18756, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18757, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18758, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18759, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18760, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18761, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18762, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18763, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18764, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18765, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18766, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18767, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18768, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18769, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18770, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18771, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18772, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18773, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18774, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18775, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18776, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18777, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18778, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18779, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18780, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18781, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18782, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18783, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18784, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18785, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18786, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18787, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18788, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18789, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18790, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18791, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18792, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18793, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18794, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18795, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18796, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18797, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18798, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18799, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18800, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18801, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18802, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18803, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18804, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18805, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18806, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18807, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18808, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18809, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18810, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18811, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5602, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5603, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5604, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5605, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5606, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5607, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5608, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5609, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19340, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19341, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 19342, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 19343, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 19344, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 19345, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 19346, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 19347, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crying_obsidian": { + "states": [ + { + "default": true, + "id": 19449 + } + ] + }, + "minecraft:cut_copper": { + "states": [ + { + "default": true, + "id": 22947 + } + ] + }, + "minecraft:cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23294, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23295, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23296, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23297, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23298, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23299, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23196, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23197, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23198, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23199, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23200, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23201, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23202, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23203, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23204, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23205, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23206, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23207, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23208, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23209, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23210, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23211, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23212, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23213, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23214, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23215, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23216, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23217, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23218, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23219, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23220, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23221, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23222, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23223, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23224, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23225, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23226, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23227, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23228, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23229, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23230, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23231, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23232, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23233, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23234, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23235, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23236, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23237, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23238, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23239, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23240, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23241, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23242, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23243, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23244, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23245, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23246, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23247, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23248, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23249, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23250, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23251, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23252, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23253, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23254, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23255, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23256, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23257, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23258, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23259, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23260, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23261, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23262, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23263, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23264, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23265, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23266, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23267, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23268, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23269, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23270, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23271, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23272, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23273, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23274, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23275, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_red_sandstone": { + "states": [ + { + "default": true, + "id": 11081 + } + ] + }, + "minecraft:cut_red_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11294, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11295, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11296, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11297, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11298, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11299, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_sandstone": { + "states": [ + { + "default": true, + "id": 537 + } + ] + }, + "minecraft:cut_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11240, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11241, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11242, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11243, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11244, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11245, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cyan_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10903, + "properties": { + "rotation": "0" + } + }, + { + "id": 10904, + "properties": { + "rotation": "1" + } + }, + { + "id": 10905, + "properties": { + "rotation": "2" + } + }, + { + "id": 10906, + "properties": { + "rotation": "3" + } + }, + { + "id": 10907, + "properties": { + "rotation": "4" + } + }, + { + "id": 10908, + "properties": { + "rotation": "5" + } + }, + { + "id": 10909, + "properties": { + "rotation": "6" + } + }, + { + "id": 10910, + "properties": { + "rotation": "7" + } + }, + { + "id": 10911, + "properties": { + "rotation": "8" + } + }, + { + "id": 10912, + "properties": { + "rotation": "9" + } + }, + { + "id": 10913, + "properties": { + "rotation": "10" + } + }, + { + "id": 10914, + "properties": { + "rotation": "11" + } + }, + { + "id": 10915, + "properties": { + "rotation": "12" + } + }, + { + "id": 10916, + "properties": { + "rotation": "13" + } + }, + { + "id": 10917, + "properties": { + "rotation": "14" + } + }, + { + "id": 10918, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:cyan_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1832, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1833, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1834, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1835, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1836, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1837, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1838, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1839, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1840, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1841, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1842, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1843, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1844, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1845, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1846, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1847, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:cyan_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20885, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20886, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20887, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20888, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20889, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20890, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20891, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20892, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20893, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20894, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20895, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20896, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20897, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20898, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20899, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20900, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cyan_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21017, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21018, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:cyan_carpet": { + "states": [ + { + "default": true, + "id": 10737 + } + ] + }, + "minecraft:cyan_concrete": { + "states": [ + { + "default": true, + "id": 12737 + } + ] + }, + "minecraft:cyan_concrete_powder": { + "states": [ + { + "default": true, + "id": 12753 + } + ] + }, + "minecraft:cyan_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12700, + "properties": { + "facing": "north" + } + }, + { + "id": 12701, + "properties": { + "facing": "south" + } + }, + { + "id": 12702, + "properties": { + "facing": "west" + } + }, + { + "id": 12703, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cyan_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12622, + "properties": { + "facing": "north" + } + }, + { + "id": 12623, + "properties": { + "facing": "east" + } + }, + { + "id": 12624, + "properties": { + "facing": "south" + } + }, + { + "id": 12625, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12626, + "properties": { + "facing": "up" + } + }, + { + "id": 12627, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:cyan_stained_glass": { + "states": [ + { + "default": true, + "id": 5954 + } + ] + }, + "minecraft:cyan_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9660, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9661, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9662, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9663, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9664, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9665, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9666, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9667, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9668, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9669, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9670, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9671, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9672, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9673, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9674, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9675, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9676, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9677, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9678, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9679, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9680, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9681, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9682, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9683, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9684, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9685, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9686, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9687, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9688, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9689, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9690, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9691, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:cyan_terracotta": { + "states": [ + { + "default": true, + "id": 9365 + } + ] + }, + "minecraft:cyan_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11051, + "properties": { + "facing": "north" + } + }, + { + "id": 11052, + "properties": { + "facing": "south" + } + }, + { + "id": 11053, + "properties": { + "facing": "west" + } + }, + { + "id": 11054, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cyan_wool": { + "states": [ + { + "default": true, + "id": 2056 + } + ] + }, + "minecraft:damaged_anvil": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 9115, + "properties": { + "facing": "north" + } + }, + { + "id": 9116, + "properties": { + "facing": "south" + } + }, + { + "id": 9117, + "properties": { + "facing": "west" + } + }, + { + "id": 9118, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:dandelion": { + "states": [ + { + "default": true, + "id": 2075 + } + ] + }, + "minecraft:dark_oak_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8755, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8756, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8757, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8758, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8759, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8760, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8761, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8762, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8763, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8764, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8765, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8766, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8767, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8768, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8769, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8770, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8771, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8772, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8773, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8774, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8775, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8776, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8777, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8778, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12142, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12143, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12144, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12145, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12146, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12147, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12148, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12149, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12150, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12151, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12152, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 12153, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12154, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12155, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12156, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12157, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12158, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12159, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12160, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12161, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12162, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12163, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12164, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12165, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12166, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12167, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12168, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12169, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12170, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12171, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12172, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12173, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12174, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12175, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12176, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12177, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12178, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12179, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12180, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12181, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12182, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12183, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12184, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12185, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12186, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12187, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12188, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12189, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12190, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12191, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12192, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12193, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12194, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12195, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12196, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12197, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12198, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12199, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12200, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12201, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12202, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12203, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12204, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12205, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11726, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11727, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11728, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11729, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11730, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11731, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11732, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11733, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11734, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11735, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11736, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11737, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11738, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11739, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11740, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11741, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11742, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11743, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11744, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11745, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11746, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11747, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11748, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11749, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11750, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11751, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11752, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11753, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11754, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11755, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11756, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11757, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:dark_oak_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11470, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11471, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11472, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11473, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11474, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11475, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11476, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11477, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11478, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11479, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11480, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11481, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11482, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11483, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11484, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11485, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11486, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11487, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11488, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11489, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11490, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11491, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11492, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11493, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11494, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11495, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11496, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11497, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11498, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11499, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11500, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11501, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5218, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5219, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5220, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5221, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5222, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5223, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5224, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5225, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5226, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5227, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5228, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5229, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5230, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5231, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5232, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5233, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5234, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5235, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5236, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5237, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5238, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5239, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5240, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5241, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5242, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5243, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5244, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5245, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5246, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5247, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5248, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5249, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5250, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5251, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5252, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5253, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5254, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5255, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5256, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5257, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5258, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5259, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5260, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5261, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5262, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5263, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5264, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5265, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5266, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5267, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5268, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5269, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5270, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5271, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5272, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5273, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5274, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5275, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5276, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5277, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5278, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5279, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5280, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5281, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 405, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 406, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 407, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 408, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 409, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 410, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 411, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 412, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 413, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 414, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 415, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 416, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 417, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 418, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 419, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 420, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 421, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 422, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 423, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 424, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 425, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 426, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 427, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 428, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 429, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 430, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 431, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 432, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 148, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 149, + "properties": { + "axis": "y" + } + }, + { + "id": 150, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:dark_oak_planks": { + "states": [ + { + "default": true, + "id": 21 + } + ] + }, + "minecraft:dark_oak_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5728, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5729, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 37, + "properties": { + "stage": "0" + } + }, + { + "id": 38, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:dark_oak_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4494, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4495, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4496, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4497, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4498, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4499, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4500, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4501, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4502, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4503, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4504, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4505, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4506, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4507, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4508, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4509, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4510, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4511, + "properties": { + "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": 4522, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4523, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4524, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4525, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11198, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11199, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11200, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11201, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11202, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11203, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10044, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10045, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10046, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10047, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10048, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10049, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10050, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10051, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10052, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10053, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10054, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10055, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10056, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10057, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10058, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10059, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10060, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10061, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10062, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10063, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10064, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10065, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10066, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10067, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10068, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10069, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10070, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10071, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10072, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10073, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10074, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10075, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10076, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10077, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10078, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10079, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10080, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10081, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10082, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10083, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10084, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10085, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10086, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10087, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10088, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10089, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10090, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10091, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10092, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10093, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10094, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10095, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10096, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10097, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10098, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10099, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10100, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10101, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10102, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10103, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10104, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10105, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10106, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10107, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10108, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10109, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10110, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10111, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10112, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10113, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10114, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10115, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10116, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10117, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10118, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10119, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10120, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10121, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10122, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10123, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6345, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6346, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6347, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6348, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6349, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6350, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6351, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6352, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6353, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6354, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6355, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6356, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6357, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6358, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6359, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6360, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6361, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6362, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6363, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6364, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6365, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6366, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6367, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6368, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6369, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6370, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6371, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6372, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6373, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6374, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6375, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6376, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6377, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6378, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6379, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6380, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6381, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6382, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6383, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6384, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6385, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6386, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6387, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6388, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6389, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6390, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6391, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6392, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6393, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6394, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6395, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6396, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6397, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6398, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6399, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6400, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6401, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6402, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6403, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6404, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6405, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6406, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6407, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6408, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5586, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5587, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5588, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5589, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5590, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5591, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5592, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5593, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4810, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4811, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4812, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4813, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4814, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4815, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4816, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4817, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 207, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 208, + "properties": { + "axis": "y" + } + }, + { + "id": 209, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:dark_prismarine": { + "states": [ + { + "default": true, + "id": 10465 + } + ] + }, + "minecraft:dark_prismarine_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10718, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 10719, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 10720, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10721, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 10722, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 10723, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_prismarine_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10626, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10627, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10628, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10629, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10630, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10631, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10632, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10633, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10634, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10635, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10636, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10637, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10638, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10639, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10640, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10641, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10642, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10643, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10644, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10645, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10646, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10647, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10648, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10649, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10650, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10651, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10652, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10653, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10654, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10655, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10656, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10657, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10658, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10659, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10660, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10661, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10662, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10663, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10664, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10665, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10666, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10667, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10668, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10669, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10670, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10671, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10672, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10673, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10674, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10675, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10676, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10677, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10678, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10679, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10680, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10681, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10682, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10683, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10684, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10685, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10686, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10687, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10688, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10689, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10690, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10691, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10692, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10693, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10694, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10695, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10696, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10697, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10698, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10699, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10700, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10701, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10702, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10703, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10704, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10705, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:daylight_detector": { + "properties": { + "inverted": [ + "true", + "false" + ], + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 9191, + "properties": { + "inverted": "true", + "power": "0" + } + }, + { + "id": 9192, + "properties": { + "inverted": "true", + "power": "1" + } + }, + { + "id": 9193, + "properties": { + "inverted": "true", + "power": "2" + } + }, + { + "id": 9194, + "properties": { + "inverted": "true", + "power": "3" + } + }, + { + "id": 9195, + "properties": { + "inverted": "true", + "power": "4" + } + }, + { + "id": 9196, + "properties": { + "inverted": "true", + "power": "5" + } + }, + { + "id": 9197, + "properties": { + "inverted": "true", + "power": "6" + } + }, + { + "id": 9198, + "properties": { + "inverted": "true", + "power": "7" + } + }, + { + "id": 9199, + "properties": { + "inverted": "true", + "power": "8" + } + }, + { + "id": 9200, + "properties": { + "inverted": "true", + "power": "9" + } + }, + { + "id": 9201, + "properties": { + "inverted": "true", + "power": "10" + } + }, + { + "id": 9202, + "properties": { + "inverted": "true", + "power": "11" + } + }, + { + "id": 9203, + "properties": { + "inverted": "true", + "power": "12" + } + }, + { + "id": 9204, + "properties": { + "inverted": "true", + "power": "13" + } + }, + { + "id": 9205, + "properties": { + "inverted": "true", + "power": "14" + } + }, + { + "id": 9206, + "properties": { + "inverted": "true", + "power": "15" + } + }, + { + "default": true, + "id": 9207, + "properties": { + "inverted": "false", + "power": "0" + } + }, + { + "id": 9208, + "properties": { + "inverted": "false", + "power": "1" + } + }, + { + "id": 9209, + "properties": { + "inverted": "false", + "power": "2" + } + }, + { + "id": 9210, + "properties": { + "inverted": "false", + "power": "3" + } + }, + { + "id": 9211, + "properties": { + "inverted": "false", + "power": "4" + } + }, + { + "id": 9212, + "properties": { + "inverted": "false", + "power": "5" + } + }, + { + "id": 9213, + "properties": { + "inverted": "false", + "power": "6" + } + }, + { + "id": 9214, + "properties": { + "inverted": "false", + "power": "7" + } + }, + { + "id": 9215, + "properties": { + "inverted": "false", + "power": "8" + } + }, + { + "id": 9216, + "properties": { + "inverted": "false", + "power": "9" + } + }, + { + "id": 9217, + "properties": { + "inverted": "false", + "power": "10" + } + }, + { + "id": 9218, + "properties": { + "inverted": "false", + "power": "11" + } + }, + { + "id": 9219, + "properties": { + "inverted": "false", + "power": "12" + } + }, + { + "id": 9220, + "properties": { + "inverted": "false", + "power": "13" + } + }, + { + "id": 9221, + "properties": { + "inverted": "false", + "power": "14" + } + }, + { + "id": 9222, + "properties": { + "inverted": "false", + "power": "15" + } + } + ] + }, + "minecraft:dead_brain_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12815, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12816, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_brain_coral_block": { + "states": [ + { + "default": true, + "id": 12804 + } + ] + }, + "minecraft:dead_brain_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12835, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12836, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_brain_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12861, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12862, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12863, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12864, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12865, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12866, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12867, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12868, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12817, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12818, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral_block": { + "states": [ + { + "default": true, + "id": 12805 + } + ] + }, + "minecraft:dead_bubble_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12837, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12838, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12869, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12870, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12871, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12872, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12873, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12874, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12875, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12876, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bush": { + "states": [ + { + "default": true, + "id": 2007 + } + ] + }, + "minecraft:dead_fire_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12819, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12820, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_fire_coral_block": { + "states": [ + { + "default": true, + "id": 12806 + } + ] + }, + "minecraft:dead_fire_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12839, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12840, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_fire_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12877, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12878, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12879, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12880, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12881, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12882, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12883, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12884, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12821, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12822, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral_block": { + "states": [ + { + "default": true, + "id": 12807 + } + ] + }, + "minecraft:dead_horn_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12841, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12842, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12885, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12886, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12887, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12888, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12889, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12890, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12891, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12892, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12813, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12814, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral_block": { + "states": [ + { + "default": true, + "id": 12803 + } + ] + }, + "minecraft:dead_tube_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12833, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12834, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12853, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12854, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12855, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12856, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12857, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12858, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12859, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12860, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:decorated_pot": { + "properties": { + "cracked": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26574, + "properties": { + "cracked": "true", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 26575, + "properties": { + "cracked": "true", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 26576, + "properties": { + "cracked": "true", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 26577, + "properties": { + "cracked": "true", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 26578, + "properties": { + "cracked": "true", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 26579, + "properties": { + "cracked": "true", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 26580, + "properties": { + "cracked": "true", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 26581, + "properties": { + "cracked": "true", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 26582, + "properties": { + "cracked": "false", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26583, + "properties": { + "cracked": "false", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 26584, + "properties": { + "cracked": "false", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 26585, + "properties": { + "cracked": "false", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 26586, + "properties": { + "cracked": "false", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 26587, + "properties": { + "cracked": "false", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 26588, + "properties": { + "cracked": "false", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 26589, + "properties": { + "cracked": "false", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 24904, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 24905, + "properties": { + "axis": "y" + } + }, + { + "id": 24906, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:deepslate_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26221, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 26222, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 26223, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26224, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 26225, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 26226, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26141, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26142, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26143, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26144, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26145, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26146, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26147, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26148, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26149, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26150, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26151, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26152, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26153, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26154, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26155, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26156, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26157, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26158, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26159, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26160, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26161, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26162, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26163, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26164, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26165, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26166, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26167, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26168, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26169, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26170, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26171, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26172, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26173, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26174, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26175, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26176, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26177, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26178, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26179, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26180, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26181, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26182, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26183, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26184, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26185, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26186, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26187, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26188, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26189, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26190, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26191, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26192, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26193, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26194, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26195, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26196, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26197, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26198, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26199, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26200, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26201, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26202, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26203, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26204, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26205, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26206, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26207, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26208, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26209, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26210, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26211, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26212, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26213, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26214, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26215, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26216, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26217, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26218, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26219, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26220, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 26227, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26228, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26229, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 26230, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26231, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26232, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26233, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26234, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26235, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26236, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26237, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26238, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26239, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26240, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26241, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26242, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26243, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26244, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26245, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26246, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26247, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26248, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26249, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26250, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26251, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26252, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26253, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26254, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26255, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26256, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26257, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26258, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26259, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26260, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26261, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26262, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26263, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26264, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26265, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26266, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26267, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26268, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26269, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26270, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26271, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26272, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26273, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26274, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26275, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26276, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26277, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26278, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26279, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26280, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26281, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26282, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26283, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26284, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26285, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26286, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26287, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26288, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26289, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26290, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26291, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26292, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26293, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26294, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26295, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26296, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26297, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26298, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26299, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26300, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26301, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26302, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26303, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26304, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26305, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26306, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26307, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26308, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26309, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26310, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26311, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26312, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26313, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26314, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26315, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26316, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26317, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26318, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26319, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26320, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26321, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26322, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26323, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26324, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26325, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26326, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26327, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26328, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26329, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26330, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26331, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26332, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26333, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26334, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26335, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26336, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26337, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26338, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26339, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26340, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26341, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26342, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26343, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26344, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26345, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26346, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26347, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26348, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26349, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26350, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26351, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26352, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26353, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26354, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26355, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26356, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26357, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26358, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26359, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26360, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26361, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26362, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26363, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26364, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26365, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26366, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26367, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26368, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26369, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26370, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26371, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26372, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26373, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26374, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26375, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26376, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26377, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26378, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26379, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26380, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26381, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26382, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26383, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26384, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26385, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26386, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26387, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26388, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26389, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26390, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26391, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26392, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26393, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26394, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26395, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26396, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26397, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26398, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26399, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26400, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26401, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26402, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26403, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26404, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26405, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26406, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26407, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26408, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26409, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26410, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26411, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26412, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26413, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26414, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26415, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26416, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26417, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26418, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26419, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26420, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26421, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26422, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26423, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26424, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26425, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26426, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26427, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26428, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26429, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26430, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26431, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26432, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26433, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26434, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26435, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26436, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26437, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26438, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26439, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26440, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26441, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26442, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26443, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26444, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26445, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26446, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26447, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26448, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26449, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26450, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26451, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26452, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26453, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26454, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26455, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26456, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26457, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26458, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26459, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26460, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26461, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26462, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26463, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26464, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26465, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26466, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26467, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26468, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26469, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26470, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26471, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26472, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26473, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26474, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26475, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26476, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26477, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26478, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26479, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26480, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26481, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26482, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26483, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26484, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26485, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26486, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26487, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26488, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26489, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26490, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26491, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26492, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26493, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26494, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26495, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26496, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26497, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26498, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26499, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26500, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26501, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26502, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26503, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26504, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26505, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26506, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26507, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26508, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26509, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26510, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26511, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26512, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26513, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26514, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26515, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26516, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26517, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26518, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26519, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26520, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26521, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26522, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26523, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26524, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26525, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26526, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26527, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26528, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26529, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26530, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26531, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26532, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26533, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26534, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26535, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26536, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26537, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26538, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26539, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26540, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26541, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26542, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26543, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26544, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26545, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26546, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26547, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26548, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26549, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26550, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:deepslate_bricks": { + "states": [ + { + "default": true, + "id": 26140 + } + ] + }, + "minecraft:deepslate_coal_ore": { + "states": [ + { + "default": true, + "id": 128 + } + ] + }, + "minecraft:deepslate_copper_ore": { + "states": [ + { + "default": true, + "id": 22943 + } + ] + }, + "minecraft:deepslate_diamond_ore": { + "states": [ + { + "default": true, + "id": 4275 + } + ] + }, + "minecraft:deepslate_emerald_ore": { + "states": [ + { + "default": true, + "id": 7512 + } + ] + }, + "minecraft:deepslate_gold_ore": { + "states": [ + { + "default": true, + "id": 124 + } + ] + }, + "minecraft:deepslate_iron_ore": { + "states": [ + { + "default": true, + "id": 126 + } + ] + }, + "minecraft:deepslate_lapis_ore": { + "states": [ + { + "default": true, + "id": 521 + } + ] + }, + "minecraft:deepslate_redstone_ore": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5736, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 5737, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:deepslate_tile_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25810, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 25811, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 25812, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25813, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 25814, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 25815, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_tile_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25730, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25731, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25732, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25733, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25734, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25735, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25736, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25737, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25738, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25739, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25740, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25741, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25742, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25743, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25744, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25745, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25746, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25747, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25748, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25749, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25750, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25751, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25752, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25753, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25754, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25755, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25756, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25757, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25758, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25759, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25760, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25761, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25762, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25763, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25764, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25765, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25766, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25767, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25768, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25769, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25770, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25771, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25772, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25773, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25774, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25775, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25776, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25777, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25778, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25779, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25780, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25781, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25782, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25783, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25784, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25785, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25786, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25787, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25788, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25789, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25790, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25791, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25792, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25793, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25794, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25795, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25796, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25797, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25798, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25799, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25800, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25801, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25802, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25803, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25804, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25805, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25806, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25807, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25808, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25809, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_tile_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 25816, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25817, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25818, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 25819, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25820, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25821, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25822, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25823, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25824, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25825, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25826, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25827, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25828, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25829, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25830, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25831, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25832, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25833, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25834, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25835, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25836, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25837, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25838, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25839, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25840, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25841, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25842, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25843, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25844, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25845, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25846, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25847, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25848, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25849, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25850, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25851, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25852, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25853, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25854, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25855, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25856, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25857, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25858, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25859, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25860, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25861, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25862, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25863, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25864, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25865, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25866, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25867, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25868, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25869, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25870, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25871, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25872, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25873, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25874, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25875, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25876, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25877, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25878, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25879, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25880, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25881, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25882, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25883, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25884, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25885, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25886, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25887, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25888, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25889, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25890, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25891, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25892, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25893, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25894, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25895, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25896, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25897, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25898, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25899, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25900, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25901, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25902, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25903, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25904, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25905, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25906, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25907, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25908, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25909, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25910, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25911, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25912, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25913, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25914, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25915, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25916, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25917, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25918, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25919, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25920, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25921, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25922, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25923, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25924, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25925, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25926, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25927, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25928, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25929, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25930, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25931, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25932, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25933, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25934, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25935, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25936, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25937, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25938, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25939, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25940, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25941, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25942, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25943, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25944, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25945, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25946, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25947, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25948, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25949, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25950, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25951, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25952, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25953, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25954, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25955, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25956, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25957, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25958, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25959, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25960, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25961, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25962, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25963, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25964, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25965, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25966, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25967, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25968, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25969, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25970, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25971, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25972, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25973, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25974, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25975, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25976, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25977, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25978, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25979, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25980, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25981, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25982, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25983, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25984, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25985, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25986, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25987, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25988, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25989, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25990, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25991, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25992, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25993, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25994, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25995, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25996, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25997, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25998, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25999, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26000, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26001, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26002, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26003, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26004, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26005, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26006, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26007, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26008, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26009, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26010, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26011, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26012, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26013, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26014, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26015, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26016, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26017, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26018, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26019, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26020, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26021, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26022, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26023, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26024, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26025, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26026, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26027, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26028, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26029, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26030, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26031, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26032, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26033, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26034, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26035, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26036, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26037, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26038, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26039, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26040, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26041, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26042, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26043, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26044, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26045, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26046, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26047, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26048, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26049, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26050, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26051, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26052, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26053, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26054, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26055, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26056, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26057, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26058, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26059, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26060, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26061, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26062, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26063, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26064, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26065, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26066, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26067, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26068, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26069, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26070, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26071, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26072, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26073, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26074, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26075, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26076, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26077, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26078, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26079, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26080, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26081, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26082, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26083, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26084, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26085, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26086, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26087, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26088, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26089, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26090, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26091, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26092, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26093, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26094, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26095, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26096, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26097, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26098, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26099, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26100, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26101, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26102, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26103, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26104, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26105, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26106, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26107, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26108, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26109, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26110, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26111, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26112, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26113, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26114, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26115, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26116, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26117, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26118, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26119, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26120, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26121, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26122, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26123, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26124, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26125, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26126, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26127, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26128, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26129, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26130, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26131, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26132, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26133, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26134, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26135, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26136, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26137, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26138, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26139, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:deepslate_tiles": { + "states": [ + { + "default": true, + "id": 25729 + } + ] + }, + "minecraft:detector_rail": { + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 1968, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "id": 1969, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 1970, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 1971, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 1972, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 1973, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 1974, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 1975, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 1976, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 1977, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 1978, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 1979, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 1980, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 1981, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 1982, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 1983, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 1984, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 1985, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 1986, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 1987, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 1988, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 1989, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 1990, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 1991, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diamond_block": { + "states": [ + { + "default": true, + "id": 4276 + } + ] + }, + "minecraft:diamond_ore": { + "states": [ + { + "default": true, + "id": 4274 + } + ] + }, + "minecraft:diorite": { + "states": [ + { + "default": true, + "id": 4 + } + ] + }, + "minecraft:diorite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14154, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14155, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14156, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14157, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14158, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14159, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diorite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14002, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14003, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14004, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14005, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14006, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14007, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14008, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14009, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14010, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14011, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14012, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14013, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14014, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14015, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14016, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14017, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14018, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14019, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14020, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14021, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14022, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14023, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14024, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14025, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14026, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14027, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14028, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14029, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14030, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14031, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14032, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14033, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14034, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14035, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14036, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14037, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14038, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14039, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14040, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14041, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14042, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14043, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14044, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14045, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14046, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14047, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14048, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14049, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14050, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14051, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14052, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14053, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14054, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14055, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14056, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14057, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14058, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14059, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14060, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14061, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14062, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14063, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14064, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14065, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14066, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14067, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14068, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14069, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14070, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14071, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14072, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14073, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14074, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14075, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14076, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14077, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14078, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14079, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14080, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14081, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diorite_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 18048, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18049, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18050, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 18051, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18052, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18053, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18054, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18055, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18056, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18057, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18058, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18059, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18060, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18061, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18062, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18063, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18064, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18065, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18066, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18067, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18068, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18069, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18070, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18071, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18072, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18073, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18074, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18075, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18076, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18077, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18078, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18079, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18080, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18081, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18082, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18083, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18084, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18085, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18086, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18087, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18088, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18089, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18090, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18091, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18092, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18093, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18094, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18095, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18096, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18097, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18098, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18099, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18100, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18101, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18102, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18103, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18104, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18105, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18106, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18107, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18108, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18109, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18110, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18111, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18112, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18113, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18114, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18115, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18116, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18117, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18118, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18119, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18120, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18121, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18122, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18123, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18124, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18125, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18126, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18127, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18128, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18129, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18130, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18131, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18132, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18133, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18134, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18135, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18136, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18137, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18138, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18139, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18140, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18141, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18142, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18143, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18144, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18145, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18146, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18147, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18148, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18149, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18150, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18151, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18152, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18153, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18154, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18155, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18156, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18157, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18158, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18159, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18160, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18161, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18162, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18163, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18164, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18165, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18166, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18167, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18168, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18169, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18170, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18171, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18172, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18173, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18174, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18175, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18176, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18177, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18178, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18179, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18180, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18181, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18182, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18183, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18184, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18185, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18186, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18187, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18188, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18189, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18190, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18191, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18192, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18193, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18194, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18195, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18196, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18197, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18198, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18199, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18200, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18201, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18202, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18203, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18204, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18205, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18206, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18207, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18208, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18209, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18210, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18211, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18212, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18213, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18214, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18215, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18216, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18217, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18218, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18219, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18220, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18221, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18222, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18223, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18224, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18225, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18226, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18227, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18228, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18229, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18230, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18231, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18232, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18233, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18234, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18235, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18236, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18237, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18238, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18239, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18240, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18241, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18242, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18243, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18244, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18245, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18246, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18247, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18248, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18249, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18250, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18251, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18252, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18253, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18254, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18255, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18256, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18257, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18258, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18259, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18260, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18261, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18262, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18263, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18264, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18265, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18266, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18267, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18268, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18269, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18270, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18271, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18272, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18273, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18274, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18275, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18276, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18277, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18278, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18279, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18280, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18281, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18282, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18283, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18284, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18285, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18286, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18287, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18288, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18289, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18290, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18291, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18292, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18293, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18294, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18295, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18296, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18297, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18298, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18299, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18300, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18301, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18302, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18303, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18304, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18305, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18306, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18307, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18308, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18309, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18310, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18311, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18312, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18313, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18314, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18315, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18316, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18317, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18318, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18319, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18320, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18321, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18322, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18323, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18324, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18325, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18326, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18327, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18328, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18329, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18330, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18331, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18332, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18333, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18334, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18335, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18336, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18337, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18338, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18339, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18340, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18341, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18342, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18343, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18344, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18345, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18346, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18347, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18348, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18349, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18350, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18351, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18352, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18353, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18354, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18355, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18356, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18357, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18358, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18359, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18360, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18361, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18362, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18363, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18364, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18365, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18366, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18367, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18368, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18369, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18370, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18371, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:dirt": { + "states": [ + { + "default": true, + "id": 10 + } + ] + }, + "minecraft:dirt_path": { + "states": [ + { + "default": true, + "id": 12513 + } + ] + }, + "minecraft:dispenser": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 523, + "properties": { + "facing": "north", + "triggered": "true" + } + }, + { + "default": true, + "id": 524, + "properties": { + "facing": "north", + "triggered": "false" + } + }, + { + "id": 525, + "properties": { + "facing": "east", + "triggered": "true" + } + }, + { + "id": 526, + "properties": { + "facing": "east", + "triggered": "false" + } + }, + { + "id": 527, + "properties": { + "facing": "south", + "triggered": "true" + } + }, + { + "id": 528, + "properties": { + "facing": "south", + "triggered": "false" + } + }, + { + "id": 529, + "properties": { + "facing": "west", + "triggered": "true" + } + }, + { + "id": 530, + "properties": { + "facing": "west", + "triggered": "false" + } + }, + { + "id": 531, + "properties": { + "facing": "up", + "triggered": "true" + } + }, + { + "id": 532, + "properties": { + "facing": "up", + "triggered": "false" + } + }, + { + "id": 533, + "properties": { + "facing": "down", + "triggered": "true" + } + }, + { + "id": 534, + "properties": { + "facing": "down", + "triggered": "false" + } + } + ] + }, + "minecraft:dragon_egg": { + "states": [ + { + "default": true, + "id": 7416 + } + ] + }, + "minecraft:dragon_head": { + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 9027, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 9028, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 9029, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 9030, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 9031, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 9032, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 9033, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 9034, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 9035, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 9036, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 9037, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 9038, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 9039, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 9040, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 9041, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 9042, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 9043, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 9044, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 9045, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 9046, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 9047, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 9048, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 9049, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 9050, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 9051, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 9052, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 9053, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 9054, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 9055, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 9056, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 9057, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 9058, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:dragon_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9059, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 9060, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 9061, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 9062, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 9063, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 9064, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 9065, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 9066, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:dried_kelp_block": { + "states": [ + { + "default": true, + "id": 12787 + } + ] + }, + "minecraft:dripstone_block": { + "states": [ + { + "default": true, + "id": 24768 + } + ] + }, + "minecraft:dropper": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9344, + "properties": { + "facing": "north", + "triggered": "true" + } + }, + { + "default": true, + "id": 9345, + "properties": { + "facing": "north", + "triggered": "false" + } + }, + { + "id": 9346, + "properties": { + "facing": "east", + "triggered": "true" + } + }, + { + "id": 9347, + "properties": { + "facing": "east", + "triggered": "false" + } + }, + { + "id": 9348, + "properties": { + "facing": "south", + "triggered": "true" + } + }, + { + "id": 9349, + "properties": { + "facing": "south", + "triggered": "false" + } + }, + { + "id": 9350, + "properties": { + "facing": "west", + "triggered": "true" + } + }, + { + "id": 9351, + "properties": { + "facing": "west", + "triggered": "false" + } + }, + { + "id": 9352, + "properties": { + "facing": "up", + "triggered": "true" + } + }, + { + "id": 9353, + "properties": { + "facing": "up", + "triggered": "false" + } + }, + { + "id": 9354, + "properties": { + "facing": "down", + "triggered": "true" + } + }, + { + "id": 9355, + "properties": { + "facing": "down", + "triggered": "false" + } + } + ] + }, + "minecraft:emerald_block": { + "states": [ + { + "default": true, + "id": 7665 + } + ] + }, + "minecraft:emerald_ore": { + "states": [ + { + "default": true, + "id": 7511 + } + ] + }, + "minecraft:enchanting_table": { + "states": [ + { + "default": true, + "id": 7389 + } + ] + }, + "minecraft:end_gateway": { + "states": [ + { + "default": true, + "id": 12514 + } + ] + }, + "minecraft:end_portal": { + "states": [ + { + "default": true, + "id": 7406 + } + ] + }, + "minecraft:end_portal_frame": { + "properties": { + "eye": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "id": 7407, + "properties": { + "eye": "true", + "facing": "north" + } + }, + { + "id": 7408, + "properties": { + "eye": "true", + "facing": "south" + } + }, + { + "id": 7409, + "properties": { + "eye": "true", + "facing": "west" + } + }, + { + "id": 7410, + "properties": { + "eye": "true", + "facing": "east" + } + }, + { + "default": true, + "id": 7411, + "properties": { + "eye": "false", + "facing": "north" + } + }, + { + "id": 7412, + "properties": { + "eye": "false", + "facing": "south" + } + }, + { + "id": 7413, + "properties": { + "eye": "false", + "facing": "west" + } + }, + { + "id": 7414, + "properties": { + "eye": "false", + "facing": "east" + } + } + ] + }, + "minecraft:end_rod": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12334, + "properties": { + "facing": "north" + } + }, + { + "id": 12335, + "properties": { + "facing": "east" + } + }, + { + "id": 12336, + "properties": { + "facing": "south" + } + }, + { + "id": 12337, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12338, + "properties": { + "facing": "up" + } + }, + { + "id": 12339, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:end_stone": { + "states": [ + { + "default": true, + "id": 7415 + } + ] + }, + "minecraft:end_stone_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14112, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14113, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14114, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14115, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14116, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14117, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:end_stone_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13362, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13363, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13364, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13365, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13366, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13367, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13368, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13369, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13370, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13371, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13372, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13373, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13374, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13375, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13376, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13377, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13378, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13379, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13380, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13381, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13382, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13383, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13384, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13385, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13386, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13387, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13388, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13389, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13390, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13391, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13392, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13393, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13394, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13395, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13396, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13397, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13398, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13399, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13400, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13401, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13402, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13403, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13404, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13405, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13406, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13407, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13408, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13409, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13410, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13411, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13412, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13413, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13414, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13415, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13416, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13417, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13418, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13419, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13420, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13421, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13422, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13423, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13424, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13425, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13426, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13427, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13428, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13429, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13430, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13431, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13432, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13433, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13434, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13435, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13436, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13437, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13438, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13439, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13440, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13441, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:end_stone_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17724, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17725, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17726, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 17727, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17728, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17729, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17730, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17731, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17732, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17733, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17734, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17735, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17736, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17737, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17738, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17739, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17740, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17741, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17742, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17743, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17744, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17745, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17746, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17747, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17748, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17749, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17750, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17751, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17752, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17753, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17754, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17755, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17756, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17757, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17758, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17759, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17760, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17761, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17762, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17763, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17764, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17765, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17766, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17767, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17768, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17769, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17770, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17771, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17772, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17773, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17774, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17775, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17776, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17777, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17778, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17779, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17780, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17781, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17782, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17783, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17784, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17785, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17786, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17787, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17788, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17789, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17790, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17791, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17792, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17793, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17794, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17795, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17796, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17797, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17798, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17799, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17800, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17801, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17802, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17803, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17804, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17805, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17806, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17807, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17808, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17809, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17810, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17811, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17812, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17813, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17814, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17815, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17816, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17817, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17818, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17819, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17820, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17821, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17822, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17823, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17824, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17825, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17826, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17827, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17828, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17829, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17830, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17831, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17832, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17833, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17834, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17835, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17836, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17837, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17838, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17839, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17840, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17841, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17842, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17843, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17844, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17845, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17846, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17847, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17848, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17849, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17850, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17851, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17852, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17853, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17854, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17855, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17856, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17857, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17858, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17859, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17860, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17861, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17862, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17863, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17864, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17865, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17866, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17867, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17868, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17869, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17870, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17871, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17872, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17873, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17874, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17875, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17876, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17877, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17878, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17879, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17880, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17881, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17882, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17883, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17884, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17885, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17886, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17887, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17888, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17889, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17890, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17891, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17892, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17893, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17894, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17895, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17896, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17897, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17898, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17899, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17900, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17901, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17902, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17903, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17904, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17905, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17906, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17907, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17908, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17909, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17910, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17911, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17912, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17913, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17914, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17915, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17916, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17917, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17918, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17919, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17920, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17921, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17922, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17923, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17924, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17925, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17926, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17927, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17928, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17929, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17930, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17931, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17932, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17933, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17934, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17935, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17936, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17937, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17938, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17939, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17940, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17941, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17942, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17943, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17944, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17945, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17946, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17947, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17948, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17949, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17950, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17951, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17952, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17953, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17954, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17955, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17956, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17957, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17958, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17959, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17960, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17961, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17962, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17963, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17964, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17965, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17966, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17967, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17968, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17969, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17970, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17971, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17972, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17973, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17974, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17975, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17976, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17977, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17978, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17979, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17980, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17981, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17982, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17983, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17984, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17985, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17986, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17987, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17988, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17989, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17990, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17991, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17992, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17993, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17994, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17995, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17996, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17997, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17998, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17999, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18000, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18001, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18002, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18003, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18004, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18005, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18006, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18007, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18008, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18009, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18010, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18011, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18012, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18013, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18014, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18015, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18016, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18017, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18018, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18019, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18020, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18021, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18022, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18023, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18024, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18025, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18026, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18027, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18028, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18029, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18030, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18031, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18032, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18033, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18034, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18035, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18036, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18037, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18038, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18039, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18040, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18041, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18042, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18043, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18044, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18045, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18046, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18047, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:end_stone_bricks": { + "states": [ + { + "default": true, + "id": 12494 + } + ] + }, + "minecraft:ender_chest": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7513, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7514, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 7515, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 7516, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 7517, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 7518, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 7519, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 7520, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_chiseled_copper": { + "states": [ + { + "default": true, + "id": 22950 + } + ] + }, + "minecraft:exposed_copper": { + "states": [ + { + "default": true, + "id": 22939 + } + ] + }, + "minecraft:exposed_copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24696, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24697, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24698, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24699, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:exposed_copper_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23716, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23717, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23718, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23719, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23720, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23721, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23722, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23723, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23724, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23725, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23726, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 23727, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23728, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23729, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23730, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23731, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23732, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23733, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23734, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23735, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23736, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23737, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23738, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23739, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23740, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23741, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23742, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23743, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23744, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23745, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23746, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23747, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23748, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23749, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23750, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23751, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23752, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23753, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23754, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23755, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23756, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23757, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23758, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23759, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23760, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23761, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23762, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23763, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23764, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23765, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23766, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23767, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23768, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23769, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23770, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23771, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23772, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23773, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23774, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23775, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23776, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23777, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23778, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23779, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:exposed_copper_grate": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24678, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24679, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24228, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24229, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24230, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24231, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24232, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24233, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24234, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24235, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24236, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24237, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24238, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24239, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24240, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24241, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24242, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24243, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24244, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24245, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24246, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24247, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24248, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24249, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24250, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24251, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24252, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24253, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24254, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24255, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24256, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24257, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24258, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24259, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24260, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24261, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24262, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24263, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24264, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24265, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24266, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24267, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24268, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24269, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24270, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24271, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24272, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24273, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24274, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24275, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24276, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24277, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24278, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24279, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24280, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24281, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24282, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24283, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24284, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24285, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24286, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24287, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24288, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24289, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24290, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24291, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_cut_copper": { + "states": [ + { + "default": true, + "id": 22946 + } + ] + }, + "minecraft:exposed_cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23288, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23289, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23290, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23291, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23292, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23293, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23116, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23117, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23118, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23119, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23120, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23121, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23122, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23123, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23124, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23125, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23126, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23127, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23128, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23129, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23130, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23131, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23132, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23133, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23134, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23135, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23136, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23137, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23138, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23139, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23140, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23141, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23142, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23143, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23144, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23145, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23146, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23147, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23148, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23149, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23150, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23151, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23152, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23153, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23154, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23155, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23156, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23157, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23158, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23159, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23160, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23161, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23162, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23163, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23164, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23165, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23166, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23167, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23168, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23169, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23170, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23171, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23172, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23173, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23174, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23175, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23176, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23177, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23178, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23179, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23180, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23181, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23182, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23183, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23184, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23185, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23186, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23187, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23188, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23189, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23190, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23191, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23192, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23193, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23194, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23195, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:farmland": { + "properties": { + "moisture": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 4286, + "properties": { + "moisture": "0" + } + }, + { + "id": 4287, + "properties": { + "moisture": "1" + } + }, + { + "id": 4288, + "properties": { + "moisture": "2" + } + }, + { + "id": 4289, + "properties": { + "moisture": "3" + } + }, + { + "id": 4290, + "properties": { + "moisture": "4" + } + }, + { + "id": 4291, + "properties": { + "moisture": "5" + } + }, + { + "id": 4292, + "properties": { + "moisture": "6" + } + }, + { + "id": 4293, + "properties": { + "moisture": "7" + } + } + ] + }, + "minecraft:fern": { + "states": [ + { + "default": true, + "id": 2006 + } + ] + }, + "minecraft:fire": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2360, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2361, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2362, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2363, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2364, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2365, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2366, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2367, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2368, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2369, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2370, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2371, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2372, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2373, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2374, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2375, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2376, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2377, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2378, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2379, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2380, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2381, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2382, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2383, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2384, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2385, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2386, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2387, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2388, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2389, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2390, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "default": true, + "id": 2391, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2392, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2393, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2394, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2395, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2396, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2397, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2398, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2399, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2400, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2401, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2402, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2403, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2404, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2405, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2406, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2407, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2408, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2409, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2410, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2411, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2412, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2413, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2414, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2415, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2416, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2417, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2418, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2419, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2420, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2421, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2422, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2423, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2424, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2425, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2426, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2427, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2428, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2429, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2430, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2431, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2432, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2433, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2434, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2435, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2436, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2437, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2438, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2439, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2440, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2441, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2442, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2443, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2444, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2445, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2446, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2447, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2448, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2449, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2450, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2451, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2452, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2453, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2454, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2455, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2456, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2457, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2458, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2459, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2460, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2461, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2462, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2463, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2464, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2465, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2466, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2467, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2468, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2469, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2470, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2471, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2472, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2473, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2474, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2475, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2476, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2477, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2478, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2479, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2480, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2481, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2482, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2483, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2484, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2485, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2486, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2487, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2488, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2489, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2490, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2491, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2492, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2493, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2494, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2495, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2496, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2497, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2498, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2499, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2500, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2501, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2502, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2503, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2504, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2505, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2506, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2507, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2508, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2509, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2510, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2511, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2512, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2513, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2514, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2515, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2516, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2517, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2518, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2519, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2520, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2521, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2522, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2523, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2524, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2525, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2526, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2527, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2528, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2529, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2530, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2531, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2532, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2533, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2534, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2535, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2536, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2537, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2538, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2539, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2540, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2541, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2542, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2543, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2544, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2545, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2546, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2547, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2548, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2549, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2550, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2551, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2552, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2553, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2554, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2555, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2556, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2557, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2558, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2559, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2560, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2561, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2562, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2563, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2564, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2565, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2566, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2567, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2568, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2569, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2570, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2571, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2572, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2573, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2574, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2575, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2576, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2577, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2578, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2579, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2580, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2581, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2582, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2583, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2584, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2585, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2586, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2587, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2588, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2589, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2590, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2591, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2592, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2593, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2594, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2595, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2596, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2597, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2598, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2599, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2600, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2601, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2602, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2603, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2604, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2605, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2606, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2607, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2608, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2609, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2610, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2611, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2612, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2613, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2614, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2615, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2616, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2617, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2618, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2619, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2620, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2621, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2622, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2623, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2624, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2625, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2626, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2627, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2628, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2629, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2630, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2631, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2632, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2633, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2634, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2635, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2636, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2637, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2638, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2639, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2640, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2641, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2642, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2643, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2644, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2645, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2646, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2647, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2648, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2649, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2650, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2651, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2652, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2653, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2654, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2655, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2656, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2657, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2658, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2659, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2660, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2661, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2662, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2663, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2664, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2665, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2666, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2667, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2668, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2669, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2670, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2671, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2672, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2673, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2674, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2675, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2676, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2677, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2678, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2679, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2680, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2681, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2682, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2683, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2684, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2685, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2686, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2687, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2688, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2689, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2690, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2691, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2692, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2693, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2694, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2695, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2696, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2697, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2698, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2699, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2700, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2701, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2702, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2703, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2704, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2705, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2706, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2707, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2708, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2709, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2710, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2711, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2712, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2713, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2714, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2715, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2716, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2717, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2718, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2719, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2720, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2721, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2722, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2723, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2724, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2725, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2726, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2727, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2728, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2729, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2730, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2731, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2732, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2733, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2734, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2735, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2736, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2737, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2738, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2739, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2740, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2741, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2742, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2743, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2744, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2745, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2746, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2747, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2748, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2749, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2750, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2751, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2752, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2753, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2754, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2755, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2756, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2757, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2758, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2759, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2760, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2761, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2762, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2763, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2764, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2765, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2766, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2767, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2768, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2769, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2770, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2771, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2772, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2773, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2774, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2775, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2776, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2777, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2778, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2779, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2780, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2781, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2782, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2783, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2784, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2785, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2786, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2787, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2788, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2789, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2790, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2791, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2792, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2793, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2794, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2795, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2796, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2797, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2798, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2799, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2800, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2801, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2802, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2803, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2804, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2805, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2806, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2807, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2808, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2809, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2810, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2811, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2812, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2813, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2814, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2815, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2816, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2817, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2818, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2819, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2820, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2821, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2822, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2823, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2824, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2825, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2826, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2827, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2828, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2829, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2830, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2831, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2832, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2833, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2834, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2835, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2836, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2837, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2838, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2839, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2840, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2841, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2842, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2843, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2844, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2845, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2846, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2847, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2848, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2849, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2850, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2851, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2852, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2853, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2854, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2855, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2856, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2857, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2858, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2859, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2860, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2861, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2862, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2863, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2864, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2865, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2866, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2867, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2868, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2869, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2870, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2871, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:fire_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12829, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12830, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:fire_coral_block": { + "states": [ + { + "default": true, + "id": 12811 + } + ] + }, + "minecraft:fire_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12849, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12850, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:fire_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12917, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12918, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12919, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12920, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12921, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12922, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12923, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12924, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:fletching_table": { + "states": [ + { + "default": true, + "id": 18437 + } + ] + }, + "minecraft:flower_pot": { + "states": [ + { + "default": true, + "id": 8567 + } + ] + }, + "minecraft:flowering_azalea": { + "states": [ + { + "default": true, + "id": 24825 + } + ] + }, + "minecraft:flowering_azalea_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 489, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 490, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 491, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 492, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 493, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 494, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 495, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 496, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 497, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 498, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 499, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 500, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 501, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 502, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 503, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 504, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 505, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 506, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 507, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 508, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 509, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 510, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 511, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 512, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 513, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 514, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 515, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 516, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:frogspawn": { + "states": [ + { + "default": true, + "id": 26572 + } + ] + }, + "minecraft:frosted_ice": { + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 12539, + "properties": { + "age": "0" + } + }, + { + "id": 12540, + "properties": { + "age": "1" + } + }, + { + "id": 12541, + "properties": { + "age": "2" + } + }, + { + "id": 12542, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:furnace": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4294, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "default": true, + "id": 4295, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 4296, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 4297, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 4298, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 4299, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 4300, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 4301, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:gilded_blackstone": { + "states": [ + { + "default": true, + "id": 20285 + } + ] + }, + "minecraft:glass": { + "states": [ + { + "default": true, + "id": 519 + } + ] + }, + "minecraft:glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6779, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6780, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6781, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6782, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6783, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6784, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6785, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6786, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6787, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6788, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6789, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6790, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6791, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6792, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6793, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6794, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6795, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6796, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6797, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6798, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6799, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6800, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6801, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6802, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6803, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6804, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6805, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6806, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6807, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6808, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6809, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 6810, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:glow_lichen": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6869, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6870, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6871, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6872, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6873, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6874, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6875, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6876, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6877, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6878, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6879, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6880, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6881, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6882, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6883, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6884, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6885, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6886, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6887, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6888, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6889, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6890, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6891, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6892, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6893, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6894, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6895, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6896, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6897, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6898, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6899, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6900, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6901, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6902, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6903, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6904, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6905, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6906, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6907, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6908, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6909, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6910, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6911, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6912, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6913, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6914, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6915, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6916, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6917, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6918, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6919, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6920, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6921, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6922, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6923, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6924, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6925, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6926, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6927, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6928, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6929, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6930, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6931, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6932, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6933, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6934, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6935, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6936, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6937, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6938, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6939, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6940, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6941, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6942, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6943, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6944, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6945, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6946, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6947, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6948, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6949, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6950, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6951, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6952, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6953, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6954, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6955, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6956, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6957, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6958, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6959, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6960, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6961, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6962, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6963, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6964, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6965, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6966, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6967, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6968, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6969, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6970, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6971, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6972, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6973, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6974, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6975, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6976, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6977, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6978, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6979, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6980, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6981, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6982, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6983, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6984, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6985, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6986, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6987, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6988, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6989, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6990, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6991, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6992, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6993, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6994, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6995, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 6996, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:glowstone": { + "states": [ + { + "default": true, + "id": 5863 + } + ] + }, + "minecraft:gold_block": { + "states": [ + { + "default": true, + "id": 2091 + } + ] + }, + "minecraft:gold_ore": { + "states": [ + { + "default": true, + "id": 123 + } + ] + }, + "minecraft:granite": { + "states": [ + { + "default": true, + "id": 2 + } + ] + }, + "minecraft:granite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14130, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14131, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14132, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14133, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14134, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14135, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:granite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13682, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13683, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13684, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13685, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13686, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13687, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13688, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13689, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13690, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13691, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13692, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13693, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13694, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13695, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13696, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13697, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13698, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13699, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13700, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13701, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13702, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13703, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13704, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13705, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13706, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13707, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13708, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13709, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13710, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13711, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13712, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13713, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13714, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13715, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13716, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13717, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13718, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13719, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13720, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13721, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13722, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13723, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13724, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13725, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13726, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13727, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13728, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13729, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13730, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13731, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13732, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13733, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13734, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13735, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13736, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13737, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13738, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13739, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13740, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13741, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13742, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13743, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13744, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13745, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13746, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13747, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13748, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13749, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13750, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13751, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13752, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13753, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13754, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13755, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13756, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13757, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13758, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13759, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13760, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13761, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:granite_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 15456, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15457, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15458, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 15459, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15460, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15461, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15462, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15463, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15464, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15465, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15466, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15467, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15468, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15469, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15470, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15471, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15472, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15473, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15474, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15475, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15476, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15477, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15478, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15479, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15480, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15481, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15482, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15483, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15484, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15485, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15486, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15487, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15488, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15489, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15490, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15491, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15492, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15493, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15494, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15495, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15496, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15497, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15498, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15499, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15500, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15501, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15502, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15503, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15504, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15505, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15506, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15507, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15508, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15509, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15510, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15511, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15512, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15513, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15514, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15515, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15516, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15517, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15518, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15519, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15520, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15521, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15522, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15523, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15524, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15525, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15526, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15527, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15528, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15529, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15530, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15531, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15532, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15533, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15534, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15535, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15536, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15537, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15538, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15539, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15540, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15541, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15542, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15543, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15544, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15545, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15546, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15547, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15548, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15549, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15550, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15551, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15552, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15553, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15554, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15555, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15556, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15557, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15558, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15559, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15560, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15561, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15562, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15563, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15564, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15565, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15566, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15567, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15568, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15569, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15570, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15571, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15572, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15573, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15574, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15575, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15576, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15577, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15578, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15579, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15580, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15581, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15582, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15583, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15584, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15585, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15586, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15587, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15588, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15589, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15590, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15591, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15592, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15593, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15594, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15595, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15596, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15597, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15598, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15599, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15600, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15601, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15602, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15603, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15604, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15605, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15606, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15607, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15608, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15609, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15610, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15611, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15612, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15613, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15614, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15615, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15616, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15617, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15618, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15619, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15620, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15621, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15622, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15623, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15624, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15625, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15626, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15627, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15628, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15629, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15630, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15631, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15632, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15633, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15634, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15635, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15636, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15637, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15638, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15639, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15640, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15641, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15642, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15643, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15644, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15645, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15646, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15647, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15648, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15649, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15650, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15651, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15652, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15653, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15654, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15655, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15656, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15657, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15658, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15659, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15660, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15661, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15662, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15663, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15664, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15665, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15666, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15667, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15668, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15669, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15670, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15671, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15672, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15673, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15674, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15675, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15676, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15677, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15678, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15679, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15680, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15681, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15682, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15683, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15684, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15685, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15686, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15687, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15688, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15689, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15690, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15691, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15692, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15693, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15694, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15695, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15696, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15697, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15698, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15699, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15700, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15701, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15702, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15703, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15704, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15705, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15706, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15707, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15708, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15709, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15710, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15711, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15712, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15713, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15714, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15715, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15716, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15717, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15718, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15719, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15720, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15721, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15722, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15723, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15724, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15725, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15726, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15727, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15728, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15729, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15730, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15731, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15732, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15733, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15734, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15735, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15736, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15737, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15738, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15739, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15740, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15741, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15742, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15743, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15744, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15745, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15746, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15747, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15748, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15749, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15750, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15751, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15752, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15753, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15754, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15755, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15756, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15757, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15758, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15759, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15760, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15761, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15762, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15763, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15764, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15765, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15766, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15767, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15768, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15769, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15770, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15771, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15772, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15773, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15774, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15775, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15776, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15777, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15778, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15779, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:grass_block": { + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8, + "properties": { + "snowy": "true" + } + }, + { + "default": true, + "id": 9, + "properties": { + "snowy": "false" + } + } + ] + }, + "minecraft:gravel": { + "states": [ + { + "default": true, + "id": 118 + } + ] + }, + "minecraft:gray_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10871, + "properties": { + "rotation": "0" + } + }, + { + "id": 10872, + "properties": { + "rotation": "1" + } + }, + { + "id": 10873, + "properties": { + "rotation": "2" + } + }, + { + "id": 10874, + "properties": { + "rotation": "3" + } + }, + { + "id": 10875, + "properties": { + "rotation": "4" + } + }, + { + "id": 10876, + "properties": { + "rotation": "5" + } + }, + { + "id": 10877, + "properties": { + "rotation": "6" + } + }, + { + "id": 10878, + "properties": { + "rotation": "7" + } + }, + { + "id": 10879, + "properties": { + "rotation": "8" + } + }, + { + "id": 10880, + "properties": { + "rotation": "9" + } + }, + { + "id": 10881, + "properties": { + "rotation": "10" + } + }, + { + "id": 10882, + "properties": { + "rotation": "11" + } + }, + { + "id": 10883, + "properties": { + "rotation": "12" + } + }, + { + "id": 10884, + "properties": { + "rotation": "13" + } + }, + { + "id": 10885, + "properties": { + "rotation": "14" + } + }, + { + "id": 10886, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:gray_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1800, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1801, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1802, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1803, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1804, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1805, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1806, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1807, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1808, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1809, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1810, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1811, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1812, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1813, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1814, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1815, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:gray_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20853, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20854, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20855, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20856, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20857, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20858, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20859, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20860, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20861, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20862, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20863, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20864, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20865, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20866, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20867, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20868, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:gray_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21013, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21014, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:gray_carpet": { + "states": [ + { + "default": true, + "id": 10735 + } + ] + }, + "minecraft:gray_concrete": { + "states": [ + { + "default": true, + "id": 12735 + } + ] + }, + "minecraft:gray_concrete_powder": { + "states": [ + { + "default": true, + "id": 12751 + } + ] + }, + "minecraft:gray_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12692, + "properties": { + "facing": "north" + } + }, + { + "id": 12693, + "properties": { + "facing": "south" + } + }, + { + "id": 12694, + "properties": { + "facing": "west" + } + }, + { + "id": 12695, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:gray_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12610, + "properties": { + "facing": "north" + } + }, + { + "id": 12611, + "properties": { + "facing": "east" + } + }, + { + "id": 12612, + "properties": { + "facing": "south" + } + }, + { + "id": 12613, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12614, + "properties": { + "facing": "up" + } + }, + { + "id": 12615, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:gray_stained_glass": { + "states": [ + { + "default": true, + "id": 5952 + } + ] + }, + "minecraft:gray_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9596, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9597, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9598, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9599, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9600, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9601, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9602, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9603, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9604, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9605, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9606, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9607, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9608, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9609, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9610, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9611, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9612, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9613, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9614, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9615, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9616, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9617, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9618, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9619, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9620, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9621, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9622, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9623, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9624, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9625, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9626, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9627, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:gray_terracotta": { + "states": [ + { + "default": true, + "id": 9363 + } + ] + }, + "minecraft:gray_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11043, + "properties": { + "facing": "north" + } + }, + { + "id": 11044, + "properties": { + "facing": "south" + } + }, + { + "id": 11045, + "properties": { + "facing": "west" + } + }, + { + "id": 11046, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:gray_wool": { + "states": [ + { + "default": true, + "id": 2054 + } + ] + }, + "minecraft:green_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10967, + "properties": { + "rotation": "0" + } + }, + { + "id": 10968, + "properties": { + "rotation": "1" + } + }, + { + "id": 10969, + "properties": { + "rotation": "2" + } + }, + { + "id": 10970, + "properties": { + "rotation": "3" + } + }, + { + "id": 10971, + "properties": { + "rotation": "4" + } + }, + { + "id": 10972, + "properties": { + "rotation": "5" + } + }, + { + "id": 10973, + "properties": { + "rotation": "6" + } + }, + { + "id": 10974, + "properties": { + "rotation": "7" + } + }, + { + "id": 10975, + "properties": { + "rotation": "8" + } + }, + { + "id": 10976, + "properties": { + "rotation": "9" + } + }, + { + "id": 10977, + "properties": { + "rotation": "10" + } + }, + { + "id": 10978, + "properties": { + "rotation": "11" + } + }, + { + "id": 10979, + "properties": { + "rotation": "12" + } + }, + { + "id": 10980, + "properties": { + "rotation": "13" + } + }, + { + "id": 10981, + "properties": { + "rotation": "14" + } + }, + { + "id": 10982, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:green_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1896, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1897, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1898, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1899, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1900, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1901, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1902, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1903, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1904, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1905, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1906, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1907, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1908, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1909, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1910, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1911, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:green_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20949, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20950, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20951, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20952, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20953, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20954, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20955, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20956, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20957, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20958, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20959, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20960, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20961, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20962, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20963, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20964, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:green_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21025, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21026, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:green_carpet": { + "states": [ + { + "default": true, + "id": 10741 + } + ] + }, + "minecraft:green_concrete": { + "states": [ + { + "default": true, + "id": 12741 + } + ] + }, + "minecraft:green_concrete_powder": { + "states": [ + { + "default": true, + "id": 12757 + } + ] + }, + "minecraft:green_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12716, + "properties": { + "facing": "north" + } + }, + { + "id": 12717, + "properties": { + "facing": "south" + } + }, + { + "id": 12718, + "properties": { + "facing": "west" + } + }, + { + "id": 12719, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:green_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12646, + "properties": { + "facing": "north" + } + }, + { + "id": 12647, + "properties": { + "facing": "east" + } + }, + { + "id": 12648, + "properties": { + "facing": "south" + } + }, + { + "id": 12649, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12650, + "properties": { + "facing": "up" + } + }, + { + "id": 12651, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:green_stained_glass": { + "states": [ + { + "default": true, + "id": 5958 + } + ] + }, + "minecraft:green_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9788, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9789, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9790, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9791, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9792, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9793, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9794, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9795, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9796, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9797, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9798, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9799, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9800, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9801, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9802, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9803, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9804, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9805, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9806, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9807, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9808, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9809, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9810, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9811, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9812, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9813, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9814, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9815, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9816, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9817, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9818, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9819, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:green_terracotta": { + "states": [ + { + "default": true, + "id": 9369 + } + ] + }, + "minecraft:green_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11067, + "properties": { + "facing": "north" + } + }, + { + "id": 11068, + "properties": { + "facing": "south" + } + }, + { + "id": 11069, + "properties": { + "facing": "west" + } + }, + { + "id": 11070, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:green_wool": { + "states": [ + { + "default": true, + "id": 2060 + } + ] + }, + "minecraft:grindstone": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "id": 18438, + "properties": { + "face": "floor", + "facing": "north" + } + }, + { + "id": 18439, + "properties": { + "face": "floor", + "facing": "south" + } + }, + { + "id": 18440, + "properties": { + "face": "floor", + "facing": "west" + } + }, + { + "id": 18441, + "properties": { + "face": "floor", + "facing": "east" + } + }, + { + "default": true, + "id": 18442, + "properties": { + "face": "wall", + "facing": "north" + } + }, + { + "id": 18443, + "properties": { + "face": "wall", + "facing": "south" + } + }, + { + "id": 18444, + "properties": { + "face": "wall", + "facing": "west" + } + }, + { + "id": 18445, + "properties": { + "face": "wall", + "facing": "east" + } + }, + { + "id": 18446, + "properties": { + "face": "ceiling", + "facing": "north" + } + }, + { + "id": 18447, + "properties": { + "face": "ceiling", + "facing": "south" + } + }, + { + "id": 18448, + "properties": { + "face": "ceiling", + "facing": "west" + } + }, + { + "id": 18449, + "properties": { + "face": "ceiling", + "facing": "east" + } + } + ] + }, + "minecraft:hanging_roots": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24900, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24901, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:hay_block": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 10725, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 10726, + "properties": { + "axis": "y" + } + }, + { + "id": 10727, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:heavy_weighted_pressure_plate": { + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 9159, + "properties": { + "power": "0" + } + }, + { + "id": 9160, + "properties": { + "power": "1" + } + }, + { + "id": 9161, + "properties": { + "power": "2" + } + }, + { + "id": 9162, + "properties": { + "power": "3" + } + }, + { + "id": 9163, + "properties": { + "power": "4" + } + }, + { + "id": 9164, + "properties": { + "power": "5" + } + }, + { + "id": 9165, + "properties": { + "power": "6" + } + }, + { + "id": 9166, + "properties": { + "power": "7" + } + }, + { + "id": 9167, + "properties": { + "power": "8" + } + }, + { + "id": 9168, + "properties": { + "power": "9" + } + }, + { + "id": 9169, + "properties": { + "power": "10" + } + }, + { + "id": 9170, + "properties": { + "power": "11" + } + }, + { + "id": 9171, + "properties": { + "power": "12" + } + }, + { + "id": 9172, + "properties": { + "power": "13" + } + }, + { + "id": 9173, + "properties": { + "power": "14" + } + }, + { + "id": 9174, + "properties": { + "power": "15" + } + } + ] + }, + "minecraft:honey_block": { + "states": [ + { + "default": true, + "id": 19445 + } + ] + }, + "minecraft:honeycomb_block": { + "states": [ + { + "default": true, + "id": 19446 + } + ] + }, + "minecraft:hopper": { + "properties": { + "enabled": [ + "true", + "false" + ], + "facing": [ + "down", + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 9225, + "properties": { + "enabled": "true", + "facing": "down" + } + }, + { + "id": 9226, + "properties": { + "enabled": "true", + "facing": "north" + } + }, + { + "id": 9227, + "properties": { + "enabled": "true", + "facing": "south" + } + }, + { + "id": 9228, + "properties": { + "enabled": "true", + "facing": "west" + } + }, + { + "id": 9229, + "properties": { + "enabled": "true", + "facing": "east" + } + }, + { + "id": 9230, + "properties": { + "enabled": "false", + "facing": "down" + } + }, + { + "id": 9231, + "properties": { + "enabled": "false", + "facing": "north" + } + }, + { + "id": 9232, + "properties": { + "enabled": "false", + "facing": "south" + } + }, + { + "id": 9233, + "properties": { + "enabled": "false", + "facing": "west" + } + }, + { + "id": 9234, + "properties": { + "enabled": "false", + "facing": "east" + } + } + ] + }, + "minecraft:horn_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12831, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12832, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:horn_coral_block": { + "states": [ + { + "default": true, + "id": 12812 + } + ] + }, + "minecraft:horn_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12851, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12852, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:horn_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12925, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12926, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12927, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12928, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12929, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12930, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12931, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12932, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:ice": { + "states": [ + { + "default": true, + "id": 5780 + } + ] + }, + "minecraft:infested_chiseled_stone_bricks": { + "states": [ + { + "default": true, + "id": 6548 + } + ] + }, + "minecraft:infested_cobblestone": { + "states": [ + { + "default": true, + "id": 6544 + } + ] + }, + "minecraft:infested_cracked_stone_bricks": { + "states": [ + { + "default": true, + "id": 6547 + } + ] + }, + "minecraft:infested_deepslate": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 26554, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 26555, + "properties": { + "axis": "y" + } + }, + { + "id": 26556, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:infested_mossy_stone_bricks": { + "states": [ + { + "default": true, + "id": 6546 + } + ] + }, + "minecraft:infested_stone": { + "states": [ + { + "default": true, + "id": 6543 + } + ] + }, + "minecraft:infested_stone_bricks": { + "states": [ + { + "default": true, + "id": 6545 + } + ] + }, + "minecraft:iron_bars": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6741, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6742, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6743, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6744, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6745, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6746, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6747, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6748, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6749, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6750, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6751, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6752, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6753, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6754, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6755, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6756, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6757, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6758, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6759, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6760, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6761, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6762, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6763, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6764, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6765, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6766, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6767, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6768, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6769, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6770, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6771, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 6772, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:iron_block": { + "states": [ + { + "default": true, + "id": 2092 + } + ] + }, + "minecraft:iron_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5652, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5653, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5654, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5655, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5656, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5657, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5658, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5659, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5660, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5661, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5662, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 5663, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5664, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5665, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5666, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5667, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5668, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5669, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5670, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5671, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5672, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5673, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5674, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5675, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5676, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5677, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5678, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5679, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5680, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5681, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5682, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5683, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5684, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5685, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5686, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5687, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5688, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5689, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5690, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5691, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5692, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5693, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5694, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5695, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5696, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5697, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5698, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5699, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5700, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5701, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5702, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5703, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5704, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5705, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5706, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5707, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5708, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5709, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5710, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5711, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5712, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5713, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5714, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5715, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:iron_ore": { + "states": [ + { + "default": true, + "id": 125 + } + ] + }, + "minecraft:iron_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10399, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10400, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10401, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10402, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10403, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10404, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10405, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10406, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10407, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10408, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10409, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10410, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10411, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10412, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10413, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10414, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10415, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10416, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10417, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10418, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10419, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10420, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10421, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10422, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10423, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10424, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10425, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10426, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10427, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10428, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10429, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10430, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10431, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10432, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10433, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10434, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10435, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10436, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10437, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10438, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10439, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10440, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10441, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10442, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10443, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10444, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10445, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10446, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10447, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10448, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10449, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10450, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10451, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10452, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10453, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10454, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10455, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10456, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10457, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10458, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10459, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10460, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10461, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10462, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jack_o_lantern": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 5870, + "properties": { + "facing": "north" + } + }, + { + "id": 5871, + "properties": { + "facing": "south" + } + }, + { + "id": 5872, + "properties": { + "facing": "west" + } + }, + { + "id": 5873, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:jigsaw": { + "properties": { + "orientation": [ + "down_east", + "down_north", + "down_south", + "down_west", + "up_east", + "up_north", + "up_south", + "up_west", + "west_up", + "east_up", + "north_up", + "south_up" + ] + }, + "states": [ + { + "id": 19360, + "properties": { + "orientation": "down_east" + } + }, + { + "id": 19361, + "properties": { + "orientation": "down_north" + } + }, + { + "id": 19362, + "properties": { + "orientation": "down_south" + } + }, + { + "id": 19363, + "properties": { + "orientation": "down_west" + } + }, + { + "id": 19364, + "properties": { + "orientation": "up_east" + } + }, + { + "id": 19365, + "properties": { + "orientation": "up_north" + } + }, + { + "id": 19366, + "properties": { + "orientation": "up_south" + } + }, + { + "id": 19367, + "properties": { + "orientation": "up_west" + } + }, + { + "id": 19368, + "properties": { + "orientation": "west_up" + } + }, + { + "id": 19369, + "properties": { + "orientation": "east_up" + } + }, + { + "default": true, + "id": 19370, + "properties": { + "orientation": "north_up" + } + }, + { + "id": 19371, + "properties": { + "orientation": "south_up" + } + } + ] + }, + "minecraft:jukebox": { + "properties": { + "has_record": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5815, + "properties": { + "has_record": "true" + } + }, + { + "default": true, + "id": 5816, + "properties": { + "has_record": "false" + } + } + ] + }, + "minecraft:jungle_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8683, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8684, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8685, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8686, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8687, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8688, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8689, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8690, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8691, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8692, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8693, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8694, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8695, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8696, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8697, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8698, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8699, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8700, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8701, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8702, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8703, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8704, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8705, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8706, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:jungle_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11950, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11951, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11952, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11953, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11954, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11955, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11956, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11957, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11958, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11959, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11960, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11961, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11962, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11963, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11964, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11965, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11966, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11967, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11968, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11969, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11970, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11971, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11972, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11973, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11974, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11975, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11976, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11977, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11978, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11979, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11980, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11981, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11982, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11983, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11984, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11985, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11986, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11987, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11988, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11989, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11990, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11991, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11992, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11993, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11994, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11995, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11996, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11997, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11998, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11999, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12000, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12001, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12002, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12003, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12004, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12005, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12006, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12007, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12008, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12009, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12010, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12011, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12012, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12013, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:jungle_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11630, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11631, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11632, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11633, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11634, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11635, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11636, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11637, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11638, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11639, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11640, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11641, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11642, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11643, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11644, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11645, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11646, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11647, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11648, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11649, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11650, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11651, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11652, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11653, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11654, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11655, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11656, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11657, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11658, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11659, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11660, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11661, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:jungle_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11374, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11375, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11376, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11377, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11378, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11379, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11380, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11381, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11382, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11383, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11384, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11385, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11386, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11387, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11388, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11389, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11390, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11391, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11392, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11393, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11394, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11395, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11396, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11397, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11398, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11399, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11400, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11401, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11402, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11403, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11404, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11405, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:jungle_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5154, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5155, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5156, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5157, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5158, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5159, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5160, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5161, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5162, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5163, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5164, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5165, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5166, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5167, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5168, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5169, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5170, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5171, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5172, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5173, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5174, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5175, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5176, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5177, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5178, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5179, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5180, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5181, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5182, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5183, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5184, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5185, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5186, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5187, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5188, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5189, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5190, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5191, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5192, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5193, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5194, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5195, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5196, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5197, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5198, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5199, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5200, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5201, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5202, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5203, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5204, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5205, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5206, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5207, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5208, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5209, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5210, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5211, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5212, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5213, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5214, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5215, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5216, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5217, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 321, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 322, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 323, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 324, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 325, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 326, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 327, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 328, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 329, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 330, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 331, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 332, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 333, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 334, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 335, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 336, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 337, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 338, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 339, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 340, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 341, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 342, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 343, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 344, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 345, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 346, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 347, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 348, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 139, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 140, + "properties": { + "axis": "y" + } + }, + { + "id": 141, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:jungle_planks": { + "states": [ + { + "default": true, + "id": 18 + } + ] + }, + "minecraft:jungle_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5722, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5723, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:jungle_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 31, + "properties": { + "stage": "0" + } + }, + { + "id": 32, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:jungle_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4462, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4463, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4464, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4465, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4466, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4467, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4468, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4469, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4470, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4471, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4472, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4473, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4474, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4475, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4476, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4477, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4478, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4479, + "properties": { + "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": 4490, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4491, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4492, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4493, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11180, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11181, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11182, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11183, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11184, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11185, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7826, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7827, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7828, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7829, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7830, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7831, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7832, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7833, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7834, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7835, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7836, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7837, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7838, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7839, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7840, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7841, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7842, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7843, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7844, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7845, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7846, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7847, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7848, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7849, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7850, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7851, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7852, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7853, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7854, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7855, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7856, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7857, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7858, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7859, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7860, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7861, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7862, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7863, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7864, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7865, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7866, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7867, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7868, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7869, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7870, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7871, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7872, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7873, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7874, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7875, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7876, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7877, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7878, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7879, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7880, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7881, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7882, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7883, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7884, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7885, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7886, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7887, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7888, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7889, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7890, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7891, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7892, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7893, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7894, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7895, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7896, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7897, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7898, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7899, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7900, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7901, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7902, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7903, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7904, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7905, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6153, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6154, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6155, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6156, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6157, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6158, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6159, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6160, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6161, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6162, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6163, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6164, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6165, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6166, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6167, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6168, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6169, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6170, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6171, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6172, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6173, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6174, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6175, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6176, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6177, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6178, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6179, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6180, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6181, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6182, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6183, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6184, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6185, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6186, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6187, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6188, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6189, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6190, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6191, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6192, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6193, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6194, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6195, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6196, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6197, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6198, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6199, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6200, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6201, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6202, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6203, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6204, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6205, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6206, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6207, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6208, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6209, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6210, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6211, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6212, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6213, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6214, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6215, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6216, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5578, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5579, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5580, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5581, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5582, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5583, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5584, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5585, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4802, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4803, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4804, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4805, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4806, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4807, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4808, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4809, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 198, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 199, + "properties": { + "axis": "y" + } + }, + { + "id": 200, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:kelp": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + }, + "states": [ + { + "default": true, + "id": 12760, + "properties": { + "age": "0" + } + }, + { + "id": 12761, + "properties": { + "age": "1" + } + }, + { + "id": 12762, + "properties": { + "age": "2" + } + }, + { + "id": 12763, + "properties": { + "age": "3" + } + }, + { + "id": 12764, + "properties": { + "age": "4" + } + }, + { + "id": 12765, + "properties": { + "age": "5" + } + }, + { + "id": 12766, + "properties": { + "age": "6" + } + }, + { + "id": 12767, + "properties": { + "age": "7" + } + }, + { + "id": 12768, + "properties": { + "age": "8" + } + }, + { + "id": 12769, + "properties": { + "age": "9" + } + }, + { + "id": 12770, + "properties": { + "age": "10" + } + }, + { + "id": 12771, + "properties": { + "age": "11" + } + }, + { + "id": 12772, + "properties": { + "age": "12" + } + }, + { + "id": 12773, + "properties": { + "age": "13" + } + }, + { + "id": 12774, + "properties": { + "age": "14" + } + }, + { + "id": 12775, + "properties": { + "age": "15" + } + }, + { + "id": 12776, + "properties": { + "age": "16" + } + }, + { + "id": 12777, + "properties": { + "age": "17" + } + }, + { + "id": 12778, + "properties": { + "age": "18" + } + }, + { + "id": 12779, + "properties": { + "age": "19" + } + }, + { + "id": 12780, + "properties": { + "age": "20" + } + }, + { + "id": 12781, + "properties": { + "age": "21" + } + }, + { + "id": 12782, + "properties": { + "age": "22" + } + }, + { + "id": 12783, + "properties": { + "age": "23" + } + }, + { + "id": 12784, + "properties": { + "age": "24" + } + }, + { + "id": 12785, + "properties": { + "age": "25" + } + } + ] + }, + "minecraft:kelp_plant": { + "states": [ + { + "default": true, + "id": 12786 + } + ] + }, + "minecraft:ladder": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4654, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4655, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4656, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4657, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4658, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4659, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4660, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4661, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lantern": { + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18503, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 18504, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 18505, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18506, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lapis_block": { + "states": [ + { + "default": true, + "id": 522 + } + ] + }, + "minecraft:lapis_ore": { + "states": [ + { + "default": true, + "id": 520 + } + ] + }, + "minecraft:large_amethyst_bud": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21045, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 21046, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 21047, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 21048, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 21049, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 21050, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 21051, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 21052, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 21053, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21054, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 21055, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 21056, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:large_fern": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 10757, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 10758, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:lava": { + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 96, + "properties": { + "level": "0" + } + }, + { + "id": 97, + "properties": { + "level": "1" + } + }, + { + "id": 98, + "properties": { + "level": "2" + } + }, + { + "id": 99, + "properties": { + "level": "3" + } + }, + { + "id": 100, + "properties": { + "level": "4" + } + }, + { + "id": 101, + "properties": { + "level": "5" + } + }, + { + "id": 102, + "properties": { + "level": "6" + } + }, + { + "id": 103, + "properties": { + "level": "7" + } + }, + { + "id": 104, + "properties": { + "level": "8" + } + }, + { + "id": 105, + "properties": { + "level": "9" + } + }, + { + "id": 106, + "properties": { + "level": "10" + } + }, + { + "id": 107, + "properties": { + "level": "11" + } + }, + { + "id": 108, + "properties": { + "level": "12" + } + }, + { + "id": 109, + "properties": { + "level": "13" + } + }, + { + "id": 110, + "properties": { + "level": "14" + } + }, + { + "id": 111, + "properties": { + "level": "15" + } + } + ] + }, + "minecraft:lava_cauldron": { + "states": [ + { + "default": true, + "id": 7402 + } + ] + }, + "minecraft:lectern": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "has_book": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18450, + "properties": { + "facing": "north", + "has_book": "true", + "powered": "true" + } + }, + { + "id": 18451, + "properties": { + "facing": "north", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 18452, + "properties": { + "facing": "north", + "has_book": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 18453, + "properties": { + "facing": "north", + "has_book": "false", + "powered": "false" + } + }, + { + "id": 18454, + "properties": { + "facing": "south", + "has_book": "true", + "powered": "true" + } + }, + { + "id": 18455, + "properties": { + "facing": "south", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 18456, + "properties": { + "facing": "south", + "has_book": "false", + "powered": "true" + } + }, + { + "id": 18457, + "properties": { + "facing": "south", + "has_book": "false", + "powered": "false" + } + }, + { + "id": 18458, + "properties": { + "facing": "west", + "has_book": "true", + "powered": "true" + } + }, + { + "id": 18459, + "properties": { + "facing": "west", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 18460, + "properties": { + "facing": "west", + "has_book": "false", + "powered": "true" + } + }, + { + "id": 18461, + "properties": { + "facing": "west", + "has_book": "false", + "powered": "false" + } + }, + { + "id": 18462, + "properties": { + "facing": "east", + "has_book": "true", + "powered": "true" + } + }, + { + "id": 18463, + "properties": { + "facing": "east", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 18464, + "properties": { + "facing": "east", + "has_book": "false", + "powered": "true" + } + }, + { + "id": 18465, + "properties": { + "facing": "east", + "has_book": "false", + "powered": "false" + } + } + ] + }, + "minecraft:lever": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5626, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 5627, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5628, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5629, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5630, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5631, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5632, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5633, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 5634, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 5635, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5636, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5637, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5638, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5639, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5640, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5641, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 5642, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 5643, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5644, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5645, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5646, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5647, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5648, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5649, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:light": { + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10367, + "properties": { + "level": "0", + "waterlogged": "true" + } + }, + { + "id": 10368, + "properties": { + "level": "0", + "waterlogged": "false" + } + }, + { + "id": 10369, + "properties": { + "level": "1", + "waterlogged": "true" + } + }, + { + "id": 10370, + "properties": { + "level": "1", + "waterlogged": "false" + } + }, + { + "id": 10371, + "properties": { + "level": "2", + "waterlogged": "true" + } + }, + { + "id": 10372, + "properties": { + "level": "2", + "waterlogged": "false" + } + }, + { + "id": 10373, + "properties": { + "level": "3", + "waterlogged": "true" + } + }, + { + "id": 10374, + "properties": { + "level": "3", + "waterlogged": "false" + } + }, + { + "id": 10375, + "properties": { + "level": "4", + "waterlogged": "true" + } + }, + { + "id": 10376, + "properties": { + "level": "4", + "waterlogged": "false" + } + }, + { + "id": 10377, + "properties": { + "level": "5", + "waterlogged": "true" + } + }, + { + "id": 10378, + "properties": { + "level": "5", + "waterlogged": "false" + } + }, + { + "id": 10379, + "properties": { + "level": "6", + "waterlogged": "true" + } + }, + { + "id": 10380, + "properties": { + "level": "6", + "waterlogged": "false" + } + }, + { + "id": 10381, + "properties": { + "level": "7", + "waterlogged": "true" + } + }, + { + "id": 10382, + "properties": { + "level": "7", + "waterlogged": "false" + } + }, + { + "id": 10383, + "properties": { + "level": "8", + "waterlogged": "true" + } + }, + { + "id": 10384, + "properties": { + "level": "8", + "waterlogged": "false" + } + }, + { + "id": 10385, + "properties": { + "level": "9", + "waterlogged": "true" + } + }, + { + "id": 10386, + "properties": { + "level": "9", + "waterlogged": "false" + } + }, + { + "id": 10387, + "properties": { + "level": "10", + "waterlogged": "true" + } + }, + { + "id": 10388, + "properties": { + "level": "10", + "waterlogged": "false" + } + }, + { + "id": 10389, + "properties": { + "level": "11", + "waterlogged": "true" + } + }, + { + "id": 10390, + "properties": { + "level": "11", + "waterlogged": "false" + } + }, + { + "id": 10391, + "properties": { + "level": "12", + "waterlogged": "true" + } + }, + { + "id": 10392, + "properties": { + "level": "12", + "waterlogged": "false" + } + }, + { + "id": 10393, + "properties": { + "level": "13", + "waterlogged": "true" + } + }, + { + "id": 10394, + "properties": { + "level": "13", + "waterlogged": "false" + } + }, + { + "id": 10395, + "properties": { + "level": "14", + "waterlogged": "true" + } + }, + { + "id": 10396, + "properties": { + "level": "14", + "waterlogged": "false" + } + }, + { + "id": 10397, + "properties": { + "level": "15", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10398, + "properties": { + "level": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:light_blue_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10807, + "properties": { + "rotation": "0" + } + }, + { + "id": 10808, + "properties": { + "rotation": "1" + } + }, + { + "id": 10809, + "properties": { + "rotation": "2" + } + }, + { + "id": 10810, + "properties": { + "rotation": "3" + } + }, + { + "id": 10811, + "properties": { + "rotation": "4" + } + }, + { + "id": 10812, + "properties": { + "rotation": "5" + } + }, + { + "id": 10813, + "properties": { + "rotation": "6" + } + }, + { + "id": 10814, + "properties": { + "rotation": "7" + } + }, + { + "id": 10815, + "properties": { + "rotation": "8" + } + }, + { + "id": 10816, + "properties": { + "rotation": "9" + } + }, + { + "id": 10817, + "properties": { + "rotation": "10" + } + }, + { + "id": 10818, + "properties": { + "rotation": "11" + } + }, + { + "id": 10819, + "properties": { + "rotation": "12" + } + }, + { + "id": 10820, + "properties": { + "rotation": "13" + } + }, + { + "id": 10821, + "properties": { + "rotation": "14" + } + }, + { + "id": 10822, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:light_blue_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1736, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1737, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1738, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1739, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1740, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1741, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1742, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1743, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1744, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1745, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1746, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1747, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1748, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1749, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1750, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1751, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:light_blue_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20789, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20790, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20791, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20792, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20793, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20794, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20795, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20796, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20797, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20798, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20799, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20800, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20801, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20802, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20803, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20804, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:light_blue_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21005, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21006, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:light_blue_carpet": { + "states": [ + { + "default": true, + "id": 10731 + } + ] + }, + "minecraft:light_blue_concrete": { + "states": [ + { + "default": true, + "id": 12731 + } + ] + }, + "minecraft:light_blue_concrete_powder": { + "states": [ + { + "default": true, + "id": 12747 + } + ] + }, + "minecraft:light_blue_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12676, + "properties": { + "facing": "north" + } + }, + { + "id": 12677, + "properties": { + "facing": "south" + } + }, + { + "id": 12678, + "properties": { + "facing": "west" + } + }, + { + "id": 12679, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_blue_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12586, + "properties": { + "facing": "north" + } + }, + { + "id": 12587, + "properties": { + "facing": "east" + } + }, + { + "id": 12588, + "properties": { + "facing": "south" + } + }, + { + "id": 12589, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12590, + "properties": { + "facing": "up" + } + }, + { + "id": 12591, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:light_blue_stained_glass": { + "states": [ + { + "default": true, + "id": 5948 + } + ] + }, + "minecraft:light_blue_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9468, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9469, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9470, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9471, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9472, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9473, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9474, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9475, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9476, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9477, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9478, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9479, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9480, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9481, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9482, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9483, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9484, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9485, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9486, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9487, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9488, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9489, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9490, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9491, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9492, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9493, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9494, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9495, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9496, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9497, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9498, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9499, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:light_blue_terracotta": { + "states": [ + { + "default": true, + "id": 9359 + } + ] + }, + "minecraft:light_blue_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11027, + "properties": { + "facing": "north" + } + }, + { + "id": 11028, + "properties": { + "facing": "south" + } + }, + { + "id": 11029, + "properties": { + "facing": "west" + } + }, + { + "id": 11030, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_blue_wool": { + "states": [ + { + "default": true, + "id": 2050 + } + ] + }, + "minecraft:light_gray_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10887, + "properties": { + "rotation": "0" + } + }, + { + "id": 10888, + "properties": { + "rotation": "1" + } + }, + { + "id": 10889, + "properties": { + "rotation": "2" + } + }, + { + "id": 10890, + "properties": { + "rotation": "3" + } + }, + { + "id": 10891, + "properties": { + "rotation": "4" + } + }, + { + "id": 10892, + "properties": { + "rotation": "5" + } + }, + { + "id": 10893, + "properties": { + "rotation": "6" + } + }, + { + "id": 10894, + "properties": { + "rotation": "7" + } + }, + { + "id": 10895, + "properties": { + "rotation": "8" + } + }, + { + "id": 10896, + "properties": { + "rotation": "9" + } + }, + { + "id": 10897, + "properties": { + "rotation": "10" + } + }, + { + "id": 10898, + "properties": { + "rotation": "11" + } + }, + { + "id": 10899, + "properties": { + "rotation": "12" + } + }, + { + "id": 10900, + "properties": { + "rotation": "13" + } + }, + { + "id": 10901, + "properties": { + "rotation": "14" + } + }, + { + "id": 10902, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:light_gray_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1816, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1817, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1818, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1819, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1820, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1821, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1822, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1823, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1824, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1825, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1826, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1827, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1828, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1829, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1830, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1831, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:light_gray_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20869, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20870, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20871, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20872, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20873, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20874, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20875, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20876, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20877, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20878, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20879, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20880, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20881, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20882, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20883, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20884, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:light_gray_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21015, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21016, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:light_gray_carpet": { + "states": [ + { + "default": true, + "id": 10736 + } + ] + }, + "minecraft:light_gray_concrete": { + "states": [ + { + "default": true, + "id": 12736 + } + ] + }, + "minecraft:light_gray_concrete_powder": { + "states": [ + { + "default": true, + "id": 12752 + } + ] + }, + "minecraft:light_gray_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12696, + "properties": { + "facing": "north" + } + }, + { + "id": 12697, + "properties": { + "facing": "south" + } + }, + { + "id": 12698, + "properties": { + "facing": "west" + } + }, + { + "id": 12699, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_gray_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12616, + "properties": { + "facing": "north" + } + }, + { + "id": 12617, + "properties": { + "facing": "east" + } + }, + { + "id": 12618, + "properties": { + "facing": "south" + } + }, + { + "id": 12619, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12620, + "properties": { + "facing": "up" + } + }, + { + "id": 12621, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:light_gray_stained_glass": { + "states": [ + { + "default": true, + "id": 5953 + } + ] + }, + "minecraft:light_gray_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9628, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9629, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9630, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9631, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9632, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9633, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9634, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9635, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9636, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9637, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9638, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9639, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9640, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9641, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9642, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9643, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9644, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9645, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9646, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9647, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9648, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9649, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9650, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9651, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9652, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9653, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9654, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9655, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9656, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9657, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9658, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9659, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:light_gray_terracotta": { + "states": [ + { + "default": true, + "id": 9364 + } + ] + }, + "minecraft:light_gray_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11047, + "properties": { + "facing": "north" + } + }, + { + "id": 11048, + "properties": { + "facing": "south" + } + }, + { + "id": 11049, + "properties": { + "facing": "west" + } + }, + { + "id": 11050, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_gray_wool": { + "states": [ + { + "default": true, + "id": 2055 + } + ] + }, + "minecraft:light_weighted_pressure_plate": { + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 9143, + "properties": { + "power": "0" + } + }, + { + "id": 9144, + "properties": { + "power": "1" + } + }, + { + "id": 9145, + "properties": { + "power": "2" + } + }, + { + "id": 9146, + "properties": { + "power": "3" + } + }, + { + "id": 9147, + "properties": { + "power": "4" + } + }, + { + "id": 9148, + "properties": { + "power": "5" + } + }, + { + "id": 9149, + "properties": { + "power": "6" + } + }, + { + "id": 9150, + "properties": { + "power": "7" + } + }, + { + "id": 9151, + "properties": { + "power": "8" + } + }, + { + "id": 9152, + "properties": { + "power": "9" + } + }, + { + "id": 9153, + "properties": { + "power": "10" + } + }, + { + "id": 9154, + "properties": { + "power": "11" + } + }, + { + "id": 9155, + "properties": { + "power": "12" + } + }, + { + "id": 9156, + "properties": { + "power": "13" + } + }, + { + "id": 9157, + "properties": { + "power": "14" + } + }, + { + "id": 9158, + "properties": { + "power": "15" + } + } + ] + }, + "minecraft:lightning_rod": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24724, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24725, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24726, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24727, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24728, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24729, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24730, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24731, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24732, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24733, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24734, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24735, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24736, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24737, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24738, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24739, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24740, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24741, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24742, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24743, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24744, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24745, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24746, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24747, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lilac": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 10749, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 10750, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:lily_of_the_valley": { + "states": [ + { + "default": true, + "id": 2088 + } + ] + }, + "minecraft:lily_pad": { + "states": [ + { + "default": true, + "id": 7271 + } + ] + }, + "minecraft:lime_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10839, + "properties": { + "rotation": "0" + } + }, + { + "id": 10840, + "properties": { + "rotation": "1" + } + }, + { + "id": 10841, + "properties": { + "rotation": "2" + } + }, + { + "id": 10842, + "properties": { + "rotation": "3" + } + }, + { + "id": 10843, + "properties": { + "rotation": "4" + } + }, + { + "id": 10844, + "properties": { + "rotation": "5" + } + }, + { + "id": 10845, + "properties": { + "rotation": "6" + } + }, + { + "id": 10846, + "properties": { + "rotation": "7" + } + }, + { + "id": 10847, + "properties": { + "rotation": "8" + } + }, + { + "id": 10848, + "properties": { + "rotation": "9" + } + }, + { + "id": 10849, + "properties": { + "rotation": "10" + } + }, + { + "id": 10850, + "properties": { + "rotation": "11" + } + }, + { + "id": 10851, + "properties": { + "rotation": "12" + } + }, + { + "id": 10852, + "properties": { + "rotation": "13" + } + }, + { + "id": 10853, + "properties": { + "rotation": "14" + } + }, + { + "id": 10854, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:lime_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1768, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1769, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1770, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1771, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1772, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1773, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1774, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1775, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1776, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1777, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1778, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1779, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1780, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1781, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1782, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1783, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:lime_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20821, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20822, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20823, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20824, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20825, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20826, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20827, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20828, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20829, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20830, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20831, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20832, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20833, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20834, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20835, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20836, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lime_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21009, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21010, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:lime_carpet": { + "states": [ + { + "default": true, + "id": 10733 + } + ] + }, + "minecraft:lime_concrete": { + "states": [ + { + "default": true, + "id": 12733 + } + ] + }, + "minecraft:lime_concrete_powder": { + "states": [ + { + "default": true, + "id": 12749 + } + ] + }, + "minecraft:lime_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12684, + "properties": { + "facing": "north" + } + }, + { + "id": 12685, + "properties": { + "facing": "south" + } + }, + { + "id": 12686, + "properties": { + "facing": "west" + } + }, + { + "id": 12687, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:lime_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12598, + "properties": { + "facing": "north" + } + }, + { + "id": 12599, + "properties": { + "facing": "east" + } + }, + { + "id": 12600, + "properties": { + "facing": "south" + } + }, + { + "id": 12601, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12602, + "properties": { + "facing": "up" + } + }, + { + "id": 12603, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:lime_stained_glass": { + "states": [ + { + "default": true, + "id": 5950 + } + ] + }, + "minecraft:lime_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9532, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9533, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9534, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9535, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9536, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9537, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9538, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9539, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9540, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9541, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9542, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9543, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9544, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9545, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9546, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9547, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9548, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9549, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9550, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9551, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9552, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9553, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9554, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9555, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9556, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9557, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9558, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9559, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9560, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9561, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9562, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9563, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:lime_terracotta": { + "states": [ + { + "default": true, + "id": 9361 + } + ] + }, + "minecraft:lime_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11035, + "properties": { + "facing": "north" + } + }, + { + "id": 11036, + "properties": { + "facing": "south" + } + }, + { + "id": 11037, + "properties": { + "facing": "west" + } + }, + { + "id": 11038, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:lime_wool": { + "states": [ + { + "default": true, + "id": 2052 + } + ] + }, + "minecraft:lodestone": { + "states": [ + { + "default": true, + "id": 19459 + } + ] + }, + "minecraft:loom": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 18404, + "properties": { + "facing": "north" + } + }, + { + "id": 18405, + "properties": { + "facing": "south" + } + }, + { + "id": 18406, + "properties": { + "facing": "west" + } + }, + { + "id": 18407, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:magenta_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10791, + "properties": { + "rotation": "0" + } + }, + { + "id": 10792, + "properties": { + "rotation": "1" + } + }, + { + "id": 10793, + "properties": { + "rotation": "2" + } + }, + { + "id": 10794, + "properties": { + "rotation": "3" + } + }, + { + "id": 10795, + "properties": { + "rotation": "4" + } + }, + { + "id": 10796, + "properties": { + "rotation": "5" + } + }, + { + "id": 10797, + "properties": { + "rotation": "6" + } + }, + { + "id": 10798, + "properties": { + "rotation": "7" + } + }, + { + "id": 10799, + "properties": { + "rotation": "8" + } + }, + { + "id": 10800, + "properties": { + "rotation": "9" + } + }, + { + "id": 10801, + "properties": { + "rotation": "10" + } + }, + { + "id": 10802, + "properties": { + "rotation": "11" + } + }, + { + "id": 10803, + "properties": { + "rotation": "12" + } + }, + { + "id": 10804, + "properties": { + "rotation": "13" + } + }, + { + "id": 10805, + "properties": { + "rotation": "14" + } + }, + { + "id": 10806, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:magenta_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1720, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1721, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1722, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1723, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1724, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1725, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1726, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1727, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1728, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1729, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1730, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1731, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1732, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1733, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1734, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1735, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:magenta_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20773, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20774, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20775, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20776, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20777, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20778, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20779, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20780, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20781, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20782, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20783, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20784, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20785, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20786, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20787, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20788, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:magenta_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21003, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21004, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:magenta_carpet": { + "states": [ + { + "default": true, + "id": 10730 + } + ] + }, + "minecraft:magenta_concrete": { + "states": [ + { + "default": true, + "id": 12730 + } + ] + }, + "minecraft:magenta_concrete_powder": { + "states": [ + { + "default": true, + "id": 12746 + } + ] + }, + "minecraft:magenta_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12672, + "properties": { + "facing": "north" + } + }, + { + "id": 12673, + "properties": { + "facing": "south" + } + }, + { + "id": 12674, + "properties": { + "facing": "west" + } + }, + { + "id": 12675, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:magenta_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12580, + "properties": { + "facing": "north" + } + }, + { + "id": 12581, + "properties": { + "facing": "east" + } + }, + { + "id": 12582, + "properties": { + "facing": "south" + } + }, + { + "id": 12583, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12584, + "properties": { + "facing": "up" + } + }, + { + "id": 12585, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:magenta_stained_glass": { + "states": [ + { + "default": true, + "id": 5947 + } + ] + }, + "minecraft:magenta_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9436, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9437, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9438, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9439, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9440, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9441, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9442, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9443, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9444, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9445, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9446, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9447, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9448, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9449, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9450, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9451, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9452, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9453, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9454, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9455, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9456, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9457, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9458, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9459, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9460, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9461, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9462, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9463, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9464, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9465, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9466, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9467, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:magenta_terracotta": { + "states": [ + { + "default": true, + "id": 9358 + } + ] + }, + "minecraft:magenta_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11023, + "properties": { + "facing": "north" + } + }, + { + "id": 11024, + "properties": { + "facing": "south" + } + }, + { + "id": 11025, + "properties": { + "facing": "west" + } + }, + { + "id": 11026, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:magenta_wool": { + "states": [ + { + "default": true, + "id": 2049 + } + ] + }, + "minecraft:magma_block": { + "states": [ + { + "default": true, + "id": 12543 + } + ] + }, + "minecraft:mangrove_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8779, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8780, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8781, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8782, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8783, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8784, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8785, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8786, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8787, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8788, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8789, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8790, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8791, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8792, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8793, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8794, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8795, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8796, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8797, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8798, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8799, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8800, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8801, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8802, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12206, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12207, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12208, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12209, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12210, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12211, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12212, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12213, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12214, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12215, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12216, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 12217, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12218, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12219, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12220, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12221, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12222, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12223, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12224, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12225, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12226, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12227, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12228, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12229, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12230, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12231, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12232, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12233, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12234, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12235, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12236, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12237, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12238, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12239, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12240, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12241, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12242, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12243, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12244, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12245, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12246, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12247, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12248, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12249, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12250, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12251, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12252, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12253, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12254, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12255, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12256, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12257, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12258, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12259, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12260, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12261, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12262, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12263, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12264, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12265, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12266, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12267, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12268, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12269, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11758, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11759, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11760, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11761, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11762, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11763, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11764, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11765, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11766, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11767, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11768, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11769, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11770, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11771, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11772, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11773, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11774, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11775, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11776, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11777, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11778, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11779, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11780, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11781, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11782, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11783, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11784, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11785, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11786, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11787, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11788, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11789, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:mangrove_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11502, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11503, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11504, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11505, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11506, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11507, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11508, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11509, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11510, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11511, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11512, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11513, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11514, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11515, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11516, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11517, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11518, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11519, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11520, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11521, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11522, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11523, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11524, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11525, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11526, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11527, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11528, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11529, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11530, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11531, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11532, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11533, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5410, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5411, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5412, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5413, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5414, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5415, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5416, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5417, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5418, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5419, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5420, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5421, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5422, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5423, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5424, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5425, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5426, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5427, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5428, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5429, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5430, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5431, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5432, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5433, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5434, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5435, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5436, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5437, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5438, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5439, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5440, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5441, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5442, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5443, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5444, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5445, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5446, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5447, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5448, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5449, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5450, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5451, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5452, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5453, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5454, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5455, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5456, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5457, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5458, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5459, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5460, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5461, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5462, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5463, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5464, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5465, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5466, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5467, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5468, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5469, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5470, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5471, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5472, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5473, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 433, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 434, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 435, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 436, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 437, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 438, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 439, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 440, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 441, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 442, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 443, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 444, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 445, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 446, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 447, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 448, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 449, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 450, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 451, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 452, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 453, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 454, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 455, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 456, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 457, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 458, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 459, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 460, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 151, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 152, + "properties": { + "axis": "y" + } + }, + { + "id": 153, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:mangrove_planks": { + "states": [ + { + "default": true, + "id": 22 + } + ] + }, + "minecraft:mangrove_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5730, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5731, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_propagule": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4" + ], + "hanging": [ + "true", + "false" + ], + "stage": [ + "0", + "1" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 39, + "properties": { + "age": "0", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 40, + "properties": { + "age": "0", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 41, + "properties": { + "age": "0", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 42, + "properties": { + "age": "0", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 43, + "properties": { + "age": "0", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 44, + "properties": { + "age": "0", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 45, + "properties": { + "age": "0", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 46, + "properties": { + "age": "0", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 47, + "properties": { + "age": "1", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 48, + "properties": { + "age": "1", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 49, + "properties": { + "age": "1", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 50, + "properties": { + "age": "1", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 51, + "properties": { + "age": "1", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 52, + "properties": { + "age": "1", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 53, + "properties": { + "age": "1", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 54, + "properties": { + "age": "1", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 55, + "properties": { + "age": "2", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 56, + "properties": { + "age": "2", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 57, + "properties": { + "age": "2", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 58, + "properties": { + "age": "2", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 59, + "properties": { + "age": "2", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 60, + "properties": { + "age": "2", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 61, + "properties": { + "age": "2", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 62, + "properties": { + "age": "2", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 63, + "properties": { + "age": "3", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 64, + "properties": { + "age": "3", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 65, + "properties": { + "age": "3", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 66, + "properties": { + "age": "3", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 67, + "properties": { + "age": "3", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 68, + "properties": { + "age": "3", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 69, + "properties": { + "age": "3", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 70, + "properties": { + "age": "3", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 71, + "properties": { + "age": "4", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 72, + "properties": { + "age": "4", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 73, + "properties": { + "age": "4", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 74, + "properties": { + "age": "4", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 75, + "properties": { + "age": "4", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 76, + "properties": { + "age": "4", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 77, + "properties": { + "age": "4", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 78, + "properties": { + "age": "4", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_roots": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 154, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 155, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4526, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4527, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4528, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4529, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4530, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4531, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4532, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4533, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4534, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4535, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4536, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4537, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4538, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4539, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4540, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4541, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4542, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4543, + "properties": { + "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": 4554, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4555, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4556, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4557, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11204, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11205, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11206, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11207, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11208, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11209, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10124, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10125, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10126, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10127, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10128, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10129, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10130, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10131, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10132, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10133, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10134, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10135, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10136, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10137, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10138, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10139, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10140, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10141, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10142, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10143, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10144, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10145, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10146, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10147, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10148, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10149, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10150, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10151, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10152, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10153, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10154, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10155, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10156, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10157, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10158, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10159, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10160, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10161, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10162, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10163, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10164, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10165, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10166, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10167, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10168, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10169, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10170, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10171, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10172, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10173, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10174, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10175, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10176, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10177, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10178, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10179, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10180, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10181, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10182, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10183, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10184, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10185, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10186, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10187, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10188, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10189, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10190, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10191, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10192, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10193, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10194, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10195, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10196, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10197, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10198, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10199, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10200, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10201, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10202, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10203, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6409, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6410, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6411, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6412, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6413, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6414, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6415, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6416, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6417, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6418, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6419, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6420, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6421, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6422, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6423, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6424, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6425, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6426, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6427, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6428, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6429, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6430, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6431, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6432, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6433, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6434, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6435, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6436, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6437, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6438, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6439, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6440, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6441, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6442, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6443, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6444, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6445, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6446, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6447, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6448, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6449, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6450, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6451, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6452, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6453, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6454, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6455, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6456, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6457, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6458, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6459, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6460, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6461, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6462, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6463, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6464, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6465, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6466, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6467, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6468, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6469, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6470, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6471, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6472, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5594, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5595, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5596, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5597, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5598, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5599, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5600, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5601, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4818, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4819, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4820, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4821, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4822, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4823, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4824, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4825, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 210, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 211, + "properties": { + "axis": "y" + } + }, + { + "id": 212, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:medium_amethyst_bud": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21057, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 21058, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 21059, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 21060, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 21061, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 21062, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 21063, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 21064, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 21065, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21066, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 21067, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 21068, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:melon": { + "states": [ + { + "default": true, + "id": 6812 + } + ] + }, + "minecraft:melon_stem": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 6829, + "properties": { + "age": "0" + } + }, + { + "id": 6830, + "properties": { + "age": "1" + } + }, + { + "id": 6831, + "properties": { + "age": "2" + } + }, + { + "id": 6832, + "properties": { + "age": "3" + } + }, + { + "id": 6833, + "properties": { + "age": "4" + } + }, + { + "id": 6834, + "properties": { + "age": "5" + } + }, + { + "id": 6835, + "properties": { + "age": "6" + } + }, + { + "id": 6836, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:moss_block": { + "states": [ + { + "default": true, + "id": 24843 + } + ] + }, + "minecraft:moss_carpet": { + "states": [ + { + "default": true, + "id": 24826 + } + ] + }, + "minecraft:mossy_cobblestone": { + "states": [ + { + "default": true, + "id": 2353 + } + ] + }, + "minecraft:mossy_cobblestone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14106, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14107, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14108, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14109, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14110, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14111, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_cobblestone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13282, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13283, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13284, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13285, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13286, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13287, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13288, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13289, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13290, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13291, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13292, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13293, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13294, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13295, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13296, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13297, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13298, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13299, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13300, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13301, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13302, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13303, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13304, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13305, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13306, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13307, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13308, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13309, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13310, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13311, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13312, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13313, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13314, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13315, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13316, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13317, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13318, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13319, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13320, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13321, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13322, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13323, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13324, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13325, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13326, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13327, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13328, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13329, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13330, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13331, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13332, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13333, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13334, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13335, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13336, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13337, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13338, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13339, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13340, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13341, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13342, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13343, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13344, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13345, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13346, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13347, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13348, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13349, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13350, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13351, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13352, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13353, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13354, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13355, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13356, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13357, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13358, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13359, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13360, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13361, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_cobblestone_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 8243, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8244, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8245, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 8246, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8247, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8248, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8249, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8250, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8251, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8252, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8253, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8254, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8255, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8256, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8257, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8258, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8259, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8260, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8261, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8262, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8263, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8264, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8265, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8266, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8267, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8268, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8269, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8270, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8271, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8272, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8273, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8274, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8275, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8276, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8277, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8278, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8279, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8280, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8281, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8282, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8283, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8284, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8285, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8286, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8287, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8288, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8289, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8290, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8291, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8292, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8293, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8294, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8295, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8296, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8297, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8298, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8299, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8300, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8301, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8302, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8303, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8304, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8305, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8306, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8307, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8308, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8309, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8310, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8311, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8312, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8313, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8314, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8315, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8316, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8317, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8318, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8319, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8320, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8321, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8322, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8323, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8324, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8325, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8326, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8327, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8328, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8329, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8330, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8331, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8332, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8333, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8334, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8335, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8336, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8337, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8338, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8339, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8340, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8341, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8342, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8343, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8344, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8345, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8346, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8347, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8348, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8349, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8350, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8351, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8352, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8353, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8354, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8355, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8356, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8357, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8358, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8359, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8360, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8361, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8362, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8363, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8364, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8365, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8366, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8367, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8368, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8369, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8370, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8371, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8372, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8373, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8374, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8375, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8376, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8377, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8378, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8379, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8380, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8381, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8382, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8383, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8384, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8385, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8386, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8387, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8388, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8389, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8390, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8391, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8392, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8393, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8394, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8395, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8396, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8397, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8398, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8399, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8400, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8401, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8402, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8403, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8404, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8405, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8406, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8407, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8408, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8409, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8410, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8411, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8412, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8413, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8414, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8415, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8416, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8417, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8418, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8419, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8420, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8421, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8422, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8423, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8424, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8425, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8426, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8427, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8428, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8429, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8430, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8431, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8432, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8433, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8434, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8435, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8436, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8437, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8438, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8439, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8440, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8441, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8442, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8443, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8444, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8445, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8446, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8447, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8448, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8449, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8450, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8451, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8452, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8453, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8454, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8455, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8456, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8457, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8458, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8459, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8460, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8461, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8462, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8463, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8464, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8465, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8466, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8467, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8468, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8469, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8470, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8471, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8472, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8473, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8474, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8475, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8476, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8477, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8478, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8479, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8480, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8481, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8482, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8483, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8484, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8485, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8486, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8487, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8488, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8489, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8490, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8491, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8492, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8493, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8494, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8495, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8496, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8497, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8498, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8499, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8500, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8501, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8502, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8503, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8504, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8505, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8506, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8507, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8508, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8509, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8510, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8511, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8512, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8513, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8514, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8515, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8516, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8517, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8518, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8519, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8520, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8521, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8522, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8523, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8524, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8525, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8526, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8527, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8528, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8529, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8530, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8531, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8532, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8533, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8534, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8535, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8536, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8537, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8538, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8539, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8540, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8541, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8542, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8543, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8544, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8545, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8546, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8547, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8548, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8549, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8550, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8551, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8552, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8553, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8554, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8555, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8556, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8557, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8558, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8559, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8560, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8561, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8562, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8563, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8564, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8565, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8566, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:mossy_stone_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14094, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14095, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14096, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14097, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14098, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14099, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_stone_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13122, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13123, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13124, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13125, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13126, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13127, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13128, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13129, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13130, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13131, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13132, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13133, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13134, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13135, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13136, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13137, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13138, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13139, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13140, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13141, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13142, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13143, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13144, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13145, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13146, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13147, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13148, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13149, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13150, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13151, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13152, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13153, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13154, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13155, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13156, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13157, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13158, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13159, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13160, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13161, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13162, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13163, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13164, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13165, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13166, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13167, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13168, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13169, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13170, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13171, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13172, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13173, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13174, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13175, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13176, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13177, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13178, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13179, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13180, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13181, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13182, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13183, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13184, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13185, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13186, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13187, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13188, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13189, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13190, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13191, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13192, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13193, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13194, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13195, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13196, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13197, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13198, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13199, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13200, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13201, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_stone_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 15132, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15133, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15134, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 15135, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15136, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15137, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15138, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15139, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15140, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15141, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15142, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15143, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15144, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15145, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15146, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15147, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15148, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15149, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15150, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15151, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15152, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15153, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15154, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15155, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15156, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15157, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15158, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15159, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15160, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15161, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15162, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15163, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15164, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15165, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15166, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15167, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15168, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15169, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15170, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15171, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15172, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15173, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15174, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15175, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15176, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15177, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15178, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15179, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15180, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15181, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15182, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15183, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15184, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15185, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15186, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15187, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15188, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15189, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15190, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15191, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15192, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15193, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15194, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15195, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15196, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15197, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15198, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15199, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15200, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15201, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15202, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15203, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15204, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15205, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15206, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15207, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15208, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15209, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15210, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15211, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15212, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15213, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15214, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15215, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15216, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15217, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15218, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15219, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15220, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15221, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15222, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15223, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15224, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15225, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15226, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15227, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15228, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15229, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15230, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15231, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15232, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15233, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15234, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15235, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15236, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15237, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15238, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15239, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15240, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15241, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15242, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15243, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15244, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15245, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15246, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15247, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15248, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15249, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15250, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15251, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15252, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15253, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15254, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15255, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15256, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15257, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15258, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15259, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15260, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15261, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15262, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15263, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15264, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15265, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15266, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15267, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15268, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15269, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15270, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15271, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15272, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15273, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15274, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15275, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15276, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15277, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15278, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15279, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15280, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15281, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15282, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15283, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15284, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15285, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15286, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15287, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15288, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15289, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15290, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15291, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15292, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15293, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15294, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15295, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15296, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15297, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15298, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15299, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15300, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15301, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15302, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15303, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15304, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15305, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15306, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15307, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15308, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15309, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15310, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15311, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15312, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15313, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15314, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15315, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15316, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15317, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15318, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15319, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15320, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15321, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15322, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15323, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15324, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15325, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15326, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15327, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15328, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15329, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15330, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15331, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15332, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15333, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15334, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15335, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15336, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15337, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15338, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15339, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15340, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15341, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15342, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15343, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15344, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15345, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15346, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15347, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15348, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15349, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15350, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15351, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15352, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15353, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15354, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15355, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15356, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15357, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15358, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15359, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15360, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15361, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15362, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15363, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15364, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15365, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15366, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15367, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15368, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15369, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15370, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15371, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15372, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15373, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15374, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15375, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15376, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15377, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15378, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15379, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15380, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15381, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15382, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15383, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15384, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15385, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15386, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15387, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15388, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15389, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15390, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15391, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15392, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15393, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15394, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15395, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15396, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15397, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15398, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15399, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15400, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15401, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15402, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15403, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15404, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15405, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15406, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15407, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15408, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15409, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15410, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15411, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15412, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15413, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15414, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15415, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15416, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15417, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15418, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15419, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15420, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15421, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15422, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15423, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15424, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15425, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15426, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15427, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15428, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15429, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15430, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15431, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15432, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15433, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15434, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15435, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15436, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15437, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15438, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15439, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15440, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15441, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15442, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15443, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15444, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15445, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15446, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15447, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15448, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15449, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15450, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15451, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15452, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15453, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15454, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15455, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:mossy_stone_bricks": { + "states": [ + { + "default": true, + "id": 6538 + } + ] + }, + "minecraft:moving_piston": { + "properties": { + "type": [ + "normal", + "sticky" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "default": true, + "id": 2063, + "properties": { + "type": "normal", + "facing": "north" + } + }, + { + "id": 2064, + "properties": { + "type": "sticky", + "facing": "north" + } + }, + { + "id": 2065, + "properties": { + "type": "normal", + "facing": "east" + } + }, + { + "id": 2066, + "properties": { + "type": "sticky", + "facing": "east" + } + }, + { + "id": 2067, + "properties": { + "type": "normal", + "facing": "south" + } + }, + { + "id": 2068, + "properties": { + "type": "sticky", + "facing": "south" + } + }, + { + "id": 2069, + "properties": { + "type": "normal", + "facing": "west" + } + }, + { + "id": 2070, + "properties": { + "type": "sticky", + "facing": "west" + } + }, + { + "id": 2071, + "properties": { + "type": "normal", + "facing": "up" + } + }, + { + "id": 2072, + "properties": { + "type": "sticky", + "facing": "up" + } + }, + { + "id": 2073, + "properties": { + "type": "normal", + "facing": "down" + } + }, + { + "id": 2074, + "properties": { + "type": "sticky", + "facing": "down" + } + } + ] + }, + "minecraft:mud": { + "states": [ + { + "default": true, + "id": 24903 + } + ] + }, + "minecraft:mud_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11270, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11271, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11272, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11273, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11274, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11275, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mud_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7189, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7190, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7191, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7192, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7193, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7194, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7195, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7196, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7197, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7198, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7199, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7200, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7201, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7202, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7203, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7204, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7205, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7206, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7207, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7208, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7209, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7210, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7211, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7212, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7213, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7214, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7215, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7216, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7217, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7218, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7219, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7220, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7221, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7222, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7223, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7224, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7225, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7226, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7227, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7228, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7229, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7230, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7231, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7232, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7233, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7234, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7235, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7236, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7237, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7238, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7239, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7240, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7241, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7242, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7243, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7244, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7245, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7246, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7247, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7248, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7249, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7250, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7251, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7252, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7253, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7254, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7255, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7256, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7257, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7258, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7259, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7260, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7261, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7262, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7263, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7264, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7265, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7266, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7267, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7268, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mud_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 16104, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16105, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16106, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 16107, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16108, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16109, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16110, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16111, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16112, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16113, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16114, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16115, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16116, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16117, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16118, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16119, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16120, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16121, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16122, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16123, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16124, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16125, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16126, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16127, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16128, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16129, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16130, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16131, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16132, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16133, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16134, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16135, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16136, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16137, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16138, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16139, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16140, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16141, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16142, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16143, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16144, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16145, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16146, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16147, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16148, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16149, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16150, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16151, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16152, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16153, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16154, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16155, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16156, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16157, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16158, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16159, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16160, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16161, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16162, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16163, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16164, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16165, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16166, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16167, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16168, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16169, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16170, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16171, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16172, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16173, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16174, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16175, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16176, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16177, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16178, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16179, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16180, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16181, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16182, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16183, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16184, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16185, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16186, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16187, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16188, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16189, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16190, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16191, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16192, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16193, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16194, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16195, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16196, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16197, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16198, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16199, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16200, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16201, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16202, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16203, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16204, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16205, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16206, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16207, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16208, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16209, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16210, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16211, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16212, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16213, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16214, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16215, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16216, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16217, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16218, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16219, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16220, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16221, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16222, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16223, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16224, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16225, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16226, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16227, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16228, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16229, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16230, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16231, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16232, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16233, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16234, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16235, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16236, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16237, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16238, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16239, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16240, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16241, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16242, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16243, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16244, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16245, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16246, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16247, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16248, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16249, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16250, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16251, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16252, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16253, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16254, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16255, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16256, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16257, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16258, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16259, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16260, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16261, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16262, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16263, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16264, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16265, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16266, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16267, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16268, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16269, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16270, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16271, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16272, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16273, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16274, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16275, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16276, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16277, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16278, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16279, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16280, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16281, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16282, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16283, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16284, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16285, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16286, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16287, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16288, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16289, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16290, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16291, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16292, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16293, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16294, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16295, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16296, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16297, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16298, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16299, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16300, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16301, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16302, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16303, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16304, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16305, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16306, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16307, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16308, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16309, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16310, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16311, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16312, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16313, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16314, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16315, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16316, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16317, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16318, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16319, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16320, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16321, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16322, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16323, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16324, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16325, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16326, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16327, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16328, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16329, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16330, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16331, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16332, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16333, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16334, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16335, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16336, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16337, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16338, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16339, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16340, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16341, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16342, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16343, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16344, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16345, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16346, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16347, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16348, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16349, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16350, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16351, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16352, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16353, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16354, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16355, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16356, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16357, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16358, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16359, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16360, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16361, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16362, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16363, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16364, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16365, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16366, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16367, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16368, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16369, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16370, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16371, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16372, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16373, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16374, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16375, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16376, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16377, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16378, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16379, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16380, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16381, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16382, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16383, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16384, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16385, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16386, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16387, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16388, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16389, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16390, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16391, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16392, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16393, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16394, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16395, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16396, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16397, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16398, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16399, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16400, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16401, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16402, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16403, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16404, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16405, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16406, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16407, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16408, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16409, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16410, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16411, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16412, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16413, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16414, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16415, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16416, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16417, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16418, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16419, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16420, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16421, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16422, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16423, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16424, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16425, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16426, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16427, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:mud_bricks": { + "states": [ + { + "default": true, + "id": 6542 + } + ] + }, + "minecraft:muddy_mangrove_roots": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 156, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 157, + "properties": { + "axis": "y" + } + }, + { + "id": 158, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:mushroom_stem": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 6677, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6678, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6679, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6680, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6681, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6682, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6683, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6684, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6685, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6686, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6687, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6688, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6689, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6690, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6691, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6692, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6693, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6694, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6695, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6696, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6697, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6698, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6699, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6700, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6701, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6702, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6703, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6704, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6705, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6706, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6707, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6708, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6709, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6710, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6711, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6712, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6713, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6714, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6715, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6716, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6717, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6718, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6719, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6720, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6721, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6722, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6723, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6724, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6725, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6726, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6727, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6728, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6729, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6730, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6731, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6732, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6733, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6734, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6735, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6736, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6737, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6738, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6739, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6740, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:mycelium": { + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7269, + "properties": { + "snowy": "true" + } + }, + { + "default": true, + "id": 7270, + "properties": { + "snowy": "false" + } + } + ] + }, + "minecraft:nether_brick_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7273, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7274, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7275, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7276, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7277, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7278, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7279, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7280, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7281, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7282, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7283, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7284, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7285, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7286, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7287, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7288, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7289, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7290, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7291, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7292, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7293, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7294, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7295, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7296, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7297, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7298, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7299, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7300, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7301, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7302, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7303, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7304, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:nether_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11276, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11277, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11278, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11279, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11280, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11281, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:nether_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7305, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7306, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7307, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7308, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7309, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7310, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7311, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7312, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7313, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7314, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7315, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7316, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7317, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7318, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7319, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7320, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7321, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7322, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7323, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7324, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7325, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7326, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7327, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7328, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7329, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7330, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7331, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7332, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7333, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7334, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7335, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7336, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7337, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7338, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7339, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7340, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7341, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7342, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7343, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7344, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7345, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7346, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7347, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7348, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7349, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7350, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7351, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7352, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7353, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7354, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7355, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7356, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7357, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7358, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7359, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7360, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7361, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7362, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7363, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7364, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7365, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7366, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7367, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7368, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7369, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7370, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7371, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7372, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7373, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7374, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7375, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7376, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7377, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7378, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7379, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7380, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7381, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7382, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7383, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7384, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:nether_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 16428, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16429, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16430, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 16431, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16432, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16433, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16434, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16435, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16436, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16437, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16438, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16439, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16440, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16441, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16442, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16443, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16444, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16445, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16446, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16447, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16448, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16449, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16450, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16451, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16452, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16453, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16454, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16455, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16456, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16457, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16458, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16459, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16460, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16461, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16462, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16463, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16464, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16465, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16466, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16467, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16468, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16469, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16470, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16471, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16472, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16473, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16474, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16475, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16476, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16477, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16478, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16479, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16480, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16481, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16482, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16483, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16484, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16485, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16486, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16487, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16488, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16489, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16490, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16491, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16492, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16493, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16494, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16495, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16496, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16497, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16498, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16499, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16500, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16501, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16502, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16503, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16504, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16505, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16506, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16507, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16508, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16509, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16510, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16511, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16512, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16513, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16514, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16515, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16516, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16517, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16518, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16519, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16520, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16521, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16522, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16523, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16524, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16525, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16526, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16527, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16528, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16529, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16530, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16531, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16532, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16533, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16534, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16535, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16536, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16537, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16538, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16539, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16540, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16541, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16542, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16543, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16544, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16545, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16546, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16547, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16548, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16549, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16550, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16551, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16552, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16553, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16554, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16555, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16556, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16557, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16558, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16559, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16560, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16561, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16562, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16563, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16564, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16565, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16566, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16567, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16568, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16569, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16570, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16571, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16572, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16573, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16574, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16575, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16576, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16577, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16578, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16579, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16580, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16581, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16582, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16583, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16584, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16585, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16586, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16587, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16588, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16589, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16590, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16591, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16592, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16593, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16594, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16595, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16596, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16597, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16598, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16599, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16600, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16601, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16602, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16603, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16604, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16605, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16606, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16607, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16608, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16609, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16610, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16611, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16612, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16613, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16614, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16615, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16616, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16617, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16618, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16619, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16620, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16621, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16622, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16623, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16624, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16625, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16626, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16627, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16628, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16629, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16630, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16631, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16632, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16633, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16634, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16635, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16636, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16637, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16638, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16639, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16640, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16641, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16642, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16643, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16644, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16645, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16646, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16647, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16648, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16649, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16650, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16651, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16652, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16653, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16654, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16655, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16656, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16657, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16658, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16659, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16660, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16661, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16662, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16663, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16664, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16665, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16666, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16667, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16668, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16669, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16670, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16671, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16672, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16673, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16674, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16675, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16676, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16677, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16678, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16679, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16680, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16681, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16682, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16683, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16684, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16685, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16686, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16687, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16688, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16689, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16690, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16691, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16692, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16693, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16694, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16695, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16696, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16697, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16698, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16699, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16700, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16701, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16702, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16703, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16704, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16705, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16706, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16707, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16708, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16709, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16710, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16711, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16712, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16713, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16714, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16715, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16716, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16717, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16718, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16719, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16720, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16721, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16722, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16723, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16724, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16725, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16726, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16727, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16728, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16729, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16730, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16731, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16732, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16733, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16734, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16735, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16736, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16737, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16738, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16739, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16740, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16741, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16742, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16743, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16744, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16745, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16746, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16747, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16748, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16749, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16750, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16751, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:nether_bricks": { + "states": [ + { + "default": true, + "id": 7272 + } + ] + }, + "minecraft:nether_gold_ore": { + "states": [ + { + "default": true, + "id": 129 + } + ] + }, + "minecraft:nether_portal": { + "properties": { + "axis": [ + "x", + "z" + ] + }, + "states": [ + { + "default": true, + "id": 5864, + "properties": { + "axis": "x" + } + }, + { + "id": 5865, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:nether_quartz_ore": { + "states": [ + { + "default": true, + "id": 9224 + } + ] + }, + "minecraft:nether_sprouts": { + "states": [ + { + "default": true, + "id": 18595 + } + ] + }, + "minecraft:nether_wart": { + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 7385, + "properties": { + "age": "0" + } + }, + { + "id": 7386, + "properties": { + "age": "1" + } + }, + { + "id": 7387, + "properties": { + "age": "2" + } + }, + { + "id": 7388, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:nether_wart_block": { + "states": [ + { + "default": true, + "id": 12544 + } + ] + }, + "minecraft:netherite_block": { + "states": [ + { + "default": true, + "id": 19447 + } + ] + }, + "minecraft:netherrack": { + "states": [ + { + "default": true, + "id": 5849 + } + ] + }, + "minecraft:note_block": { + "properties": { + "instrument": [ + "harp", + "basedrum", + "snare", + "hat", + "bass", + "flute", + "bell", + "guitar", + "chime", + "xylophone", + "iron_xylophone", + "cow_bell", + "didgeridoo", + "bit", + "banjo", + "pling", + "zombie", + "skeleton", + "creeper", + "dragon", + "wither_skeleton", + "piglin", + "custom_head" + ], + "note": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 538, + "properties": { + "instrument": "harp", + "note": "0", + "powered": "true" + } + }, + { + "default": true, + "id": 539, + "properties": { + "instrument": "harp", + "note": "0", + "powered": "false" + } + }, + { + "id": 540, + "properties": { + "instrument": "harp", + "note": "1", + "powered": "true" + } + }, + { + "id": 541, + "properties": { + "instrument": "harp", + "note": "1", + "powered": "false" + } + }, + { + "id": 542, + "properties": { + "instrument": "harp", + "note": "2", + "powered": "true" + } + }, + { + "id": 543, + "properties": { + "instrument": "harp", + "note": "2", + "powered": "false" + } + }, + { + "id": 544, + "properties": { + "instrument": "harp", + "note": "3", + "powered": "true" + } + }, + { + "id": 545, + "properties": { + "instrument": "harp", + "note": "3", + "powered": "false" + } + }, + { + "id": 546, + "properties": { + "instrument": "harp", + "note": "4", + "powered": "true" + } + }, + { + "id": 547, + "properties": { + "instrument": "harp", + "note": "4", + "powered": "false" + } + }, + { + "id": 548, + "properties": { + "instrument": "harp", + "note": "5", + "powered": "true" + } + }, + { + "id": 549, + "properties": { + "instrument": "harp", + "note": "5", + "powered": "false" + } + }, + { + "id": 550, + "properties": { + "instrument": "harp", + "note": "6", + "powered": "true" + } + }, + { + "id": 551, + "properties": { + "instrument": "harp", + "note": "6", + "powered": "false" + } + }, + { + "id": 552, + "properties": { + "instrument": "harp", + "note": "7", + "powered": "true" + } + }, + { + "id": 553, + "properties": { + "instrument": "harp", + "note": "7", + "powered": "false" + } + }, + { + "id": 554, + "properties": { + "instrument": "harp", + "note": "8", + "powered": "true" + } + }, + { + "id": 555, + "properties": { + "instrument": "harp", + "note": "8", + "powered": "false" + } + }, + { + "id": 556, + "properties": { + "instrument": "harp", + "note": "9", + "powered": "true" + } + }, + { + "id": 557, + "properties": { + "instrument": "harp", + "note": "9", + "powered": "false" + } + }, + { + "id": 558, + "properties": { + "instrument": "harp", + "note": "10", + "powered": "true" + } + }, + { + "id": 559, + "properties": { + "instrument": "harp", + "note": "10", + "powered": "false" + } + }, + { + "id": 560, + "properties": { + "instrument": "harp", + "note": "11", + "powered": "true" + } + }, + { + "id": 561, + "properties": { + "instrument": "harp", + "note": "11", + "powered": "false" + } + }, + { + "id": 562, + "properties": { + "instrument": "harp", + "note": "12", + "powered": "true" + } + }, + { + "id": 563, + "properties": { + "instrument": "harp", + "note": "12", + "powered": "false" + } + }, + { + "id": 564, + "properties": { + "instrument": "harp", + "note": "13", + "powered": "true" + } + }, + { + "id": 565, + "properties": { + "instrument": "harp", + "note": "13", + "powered": "false" + } + }, + { + "id": 566, + "properties": { + "instrument": "harp", + "note": "14", + "powered": "true" + } + }, + { + "id": 567, + "properties": { + "instrument": "harp", + "note": "14", + "powered": "false" + } + }, + { + "id": 568, + "properties": { + "instrument": "harp", + "note": "15", + "powered": "true" + } + }, + { + "id": 569, + "properties": { + "instrument": "harp", + "note": "15", + "powered": "false" + } + }, + { + "id": 570, + "properties": { + "instrument": "harp", + "note": "16", + "powered": "true" + } + }, + { + "id": 571, + "properties": { + "instrument": "harp", + "note": "16", + "powered": "false" + } + }, + { + "id": 572, + "properties": { + "instrument": "harp", + "note": "17", + "powered": "true" + } + }, + { + "id": 573, + "properties": { + "instrument": "harp", + "note": "17", + "powered": "false" + } + }, + { + "id": 574, + "properties": { + "instrument": "harp", + "note": "18", + "powered": "true" + } + }, + { + "id": 575, + "properties": { + "instrument": "harp", + "note": "18", + "powered": "false" + } + }, + { + "id": 576, + "properties": { + "instrument": "harp", + "note": "19", + "powered": "true" + } + }, + { + "id": 577, + "properties": { + "instrument": "harp", + "note": "19", + "powered": "false" + } + }, + { + "id": 578, + "properties": { + "instrument": "harp", + "note": "20", + "powered": "true" + } + }, + { + "id": 579, + "properties": { + "instrument": "harp", + "note": "20", + "powered": "false" + } + }, + { + "id": 580, + "properties": { + "instrument": "harp", + "note": "21", + "powered": "true" + } + }, + { + "id": 581, + "properties": { + "instrument": "harp", + "note": "21", + "powered": "false" + } + }, + { + "id": 582, + "properties": { + "instrument": "harp", + "note": "22", + "powered": "true" + } + }, + { + "id": 583, + "properties": { + "instrument": "harp", + "note": "22", + "powered": "false" + } + }, + { + "id": 584, + "properties": { + "instrument": "harp", + "note": "23", + "powered": "true" + } + }, + { + "id": 585, + "properties": { + "instrument": "harp", + "note": "23", + "powered": "false" + } + }, + { + "id": 586, + "properties": { + "instrument": "harp", + "note": "24", + "powered": "true" + } + }, + { + "id": 587, + "properties": { + "instrument": "harp", + "note": "24", + "powered": "false" + } + }, + { + "id": 588, + "properties": { + "instrument": "basedrum", + "note": "0", + "powered": "true" + } + }, + { + "id": 589, + "properties": { + "instrument": "basedrum", + "note": "0", + "powered": "false" + } + }, + { + "id": 590, + "properties": { + "instrument": "basedrum", + "note": "1", + "powered": "true" + } + }, + { + "id": 591, + "properties": { + "instrument": "basedrum", + "note": "1", + "powered": "false" + } + }, + { + "id": 592, + "properties": { + "instrument": "basedrum", + "note": "2", + "powered": "true" + } + }, + { + "id": 593, + "properties": { + "instrument": "basedrum", + "note": "2", + "powered": "false" + } + }, + { + "id": 594, + "properties": { + "instrument": "basedrum", + "note": "3", + "powered": "true" + } + }, + { + "id": 595, + "properties": { + "instrument": "basedrum", + "note": "3", + "powered": "false" + } + }, + { + "id": 596, + "properties": { + "instrument": "basedrum", + "note": "4", + "powered": "true" + } + }, + { + "id": 597, + "properties": { + "instrument": "basedrum", + "note": "4", + "powered": "false" + } + }, + { + "id": 598, + "properties": { + "instrument": "basedrum", + "note": "5", + "powered": "true" + } + }, + { + "id": 599, + "properties": { + "instrument": "basedrum", + "note": "5", + "powered": "false" + } + }, + { + "id": 600, + "properties": { + "instrument": "basedrum", + "note": "6", + "powered": "true" + } + }, + { + "id": 601, + "properties": { + "instrument": "basedrum", + "note": "6", + "powered": "false" + } + }, + { + "id": 602, + "properties": { + "instrument": "basedrum", + "note": "7", + "powered": "true" + } + }, + { + "id": 603, + "properties": { + "instrument": "basedrum", + "note": "7", + "powered": "false" + } + }, + { + "id": 604, + "properties": { + "instrument": "basedrum", + "note": "8", + "powered": "true" + } + }, + { + "id": 605, + "properties": { + "instrument": "basedrum", + "note": "8", + "powered": "false" + } + }, + { + "id": 606, + "properties": { + "instrument": "basedrum", + "note": "9", + "powered": "true" + } + }, + { + "id": 607, + "properties": { + "instrument": "basedrum", + "note": "9", + "powered": "false" + } + }, + { + "id": 608, + "properties": { + "instrument": "basedrum", + "note": "10", + "powered": "true" + } + }, + { + "id": 609, + "properties": { + "instrument": "basedrum", + "note": "10", + "powered": "false" + } + }, + { + "id": 610, + "properties": { + "instrument": "basedrum", + "note": "11", + "powered": "true" + } + }, + { + "id": 611, + "properties": { + "instrument": "basedrum", + "note": "11", + "powered": "false" + } + }, + { + "id": 612, + "properties": { + "instrument": "basedrum", + "note": "12", + "powered": "true" + } + }, + { + "id": 613, + "properties": { + "instrument": "basedrum", + "note": "12", + "powered": "false" + } + }, + { + "id": 614, + "properties": { + "instrument": "basedrum", + "note": "13", + "powered": "true" + } + }, + { + "id": 615, + "properties": { + "instrument": "basedrum", + "note": "13", + "powered": "false" + } + }, + { + "id": 616, + "properties": { + "instrument": "basedrum", + "note": "14", + "powered": "true" + } + }, + { + "id": 617, + "properties": { + "instrument": "basedrum", + "note": "14", + "powered": "false" + } + }, + { + "id": 618, + "properties": { + "instrument": "basedrum", + "note": "15", + "powered": "true" + } + }, + { + "id": 619, + "properties": { + "instrument": "basedrum", + "note": "15", + "powered": "false" + } + }, + { + "id": 620, + "properties": { + "instrument": "basedrum", + "note": "16", + "powered": "true" + } + }, + { + "id": 621, + "properties": { + "instrument": "basedrum", + "note": "16", + "powered": "false" + } + }, + { + "id": 622, + "properties": { + "instrument": "basedrum", + "note": "17", + "powered": "true" + } + }, + { + "id": 623, + "properties": { + "instrument": "basedrum", + "note": "17", + "powered": "false" + } + }, + { + "id": 624, + "properties": { + "instrument": "basedrum", + "note": "18", + "powered": "true" + } + }, + { + "id": 625, + "properties": { + "instrument": "basedrum", + "note": "18", + "powered": "false" + } + }, + { + "id": 626, + "properties": { + "instrument": "basedrum", + "note": "19", + "powered": "true" + } + }, + { + "id": 627, + "properties": { + "instrument": "basedrum", + "note": "19", + "powered": "false" + } + }, + { + "id": 628, + "properties": { + "instrument": "basedrum", + "note": "20", + "powered": "true" + } + }, + { + "id": 629, + "properties": { + "instrument": "basedrum", + "note": "20", + "powered": "false" + } + }, + { + "id": 630, + "properties": { + "instrument": "basedrum", + "note": "21", + "powered": "true" + } + }, + { + "id": 631, + "properties": { + "instrument": "basedrum", + "note": "21", + "powered": "false" + } + }, + { + "id": 632, + "properties": { + "instrument": "basedrum", + "note": "22", + "powered": "true" + } + }, + { + "id": 633, + "properties": { + "instrument": "basedrum", + "note": "22", + "powered": "false" + } + }, + { + "id": 634, + "properties": { + "instrument": "basedrum", + "note": "23", + "powered": "true" + } + }, + { + "id": 635, + "properties": { + "instrument": "basedrum", + "note": "23", + "powered": "false" + } + }, + { + "id": 636, + "properties": { + "instrument": "basedrum", + "note": "24", + "powered": "true" + } + }, + { + "id": 637, + "properties": { + "instrument": "basedrum", + "note": "24", + "powered": "false" + } + }, + { + "id": 638, + "properties": { + "instrument": "snare", + "note": "0", + "powered": "true" + } + }, + { + "id": 639, + "properties": { + "instrument": "snare", + "note": "0", + "powered": "false" + } + }, + { + "id": 640, + "properties": { + "instrument": "snare", + "note": "1", + "powered": "true" + } + }, + { + "id": 641, + "properties": { + "instrument": "snare", + "note": "1", + "powered": "false" + } + }, + { + "id": 642, + "properties": { + "instrument": "snare", + "note": "2", + "powered": "true" + } + }, + { + "id": 643, + "properties": { + "instrument": "snare", + "note": "2", + "powered": "false" + } + }, + { + "id": 644, + "properties": { + "instrument": "snare", + "note": "3", + "powered": "true" + } + }, + { + "id": 645, + "properties": { + "instrument": "snare", + "note": "3", + "powered": "false" + } + }, + { + "id": 646, + "properties": { + "instrument": "snare", + "note": "4", + "powered": "true" + } + }, + { + "id": 647, + "properties": { + "instrument": "snare", + "note": "4", + "powered": "false" + } + }, + { + "id": 648, + "properties": { + "instrument": "snare", + "note": "5", + "powered": "true" + } + }, + { + "id": 649, + "properties": { + "instrument": "snare", + "note": "5", + "powered": "false" + } + }, + { + "id": 650, + "properties": { + "instrument": "snare", + "note": "6", + "powered": "true" + } + }, + { + "id": 651, + "properties": { + "instrument": "snare", + "note": "6", + "powered": "false" + } + }, + { + "id": 652, + "properties": { + "instrument": "snare", + "note": "7", + "powered": "true" + } + }, + { + "id": 653, + "properties": { + "instrument": "snare", + "note": "7", + "powered": "false" + } + }, + { + "id": 654, + "properties": { + "instrument": "snare", + "note": "8", + "powered": "true" + } + }, + { + "id": 655, + "properties": { + "instrument": "snare", + "note": "8", + "powered": "false" + } + }, + { + "id": 656, + "properties": { + "instrument": "snare", + "note": "9", + "powered": "true" + } + }, + { + "id": 657, + "properties": { + "instrument": "snare", + "note": "9", + "powered": "false" + } + }, + { + "id": 658, + "properties": { + "instrument": "snare", + "note": "10", + "powered": "true" + } + }, + { + "id": 659, + "properties": { + "instrument": "snare", + "note": "10", + "powered": "false" + } + }, + { + "id": 660, + "properties": { + "instrument": "snare", + "note": "11", + "powered": "true" + } + }, + { + "id": 661, + "properties": { + "instrument": "snare", + "note": "11", + "powered": "false" + } + }, + { + "id": 662, + "properties": { + "instrument": "snare", + "note": "12", + "powered": "true" + } + }, + { + "id": 663, + "properties": { + "instrument": "snare", + "note": "12", + "powered": "false" + } + }, + { + "id": 664, + "properties": { + "instrument": "snare", + "note": "13", + "powered": "true" + } + }, + { + "id": 665, + "properties": { + "instrument": "snare", + "note": "13", + "powered": "false" + } + }, + { + "id": 666, + "properties": { + "instrument": "snare", + "note": "14", + "powered": "true" + } + }, + { + "id": 667, + "properties": { + "instrument": "snare", + "note": "14", + "powered": "false" + } + }, + { + "id": 668, + "properties": { + "instrument": "snare", + "note": "15", + "powered": "true" + } + }, + { + "id": 669, + "properties": { + "instrument": "snare", + "note": "15", + "powered": "false" + } + }, + { + "id": 670, + "properties": { + "instrument": "snare", + "note": "16", + "powered": "true" + } + }, + { + "id": 671, + "properties": { + "instrument": "snare", + "note": "16", + "powered": "false" + } + }, + { + "id": 672, + "properties": { + "instrument": "snare", + "note": "17", + "powered": "true" + } + }, + { + "id": 673, + "properties": { + "instrument": "snare", + "note": "17", + "powered": "false" + } + }, + { + "id": 674, + "properties": { + "instrument": "snare", + "note": "18", + "powered": "true" + } + }, + { + "id": 675, + "properties": { + "instrument": "snare", + "note": "18", + "powered": "false" + } + }, + { + "id": 676, + "properties": { + "instrument": "snare", + "note": "19", + "powered": "true" + } + }, + { + "id": 677, + "properties": { + "instrument": "snare", + "note": "19", + "powered": "false" + } + }, + { + "id": 678, + "properties": { + "instrument": "snare", + "note": "20", + "powered": "true" + } + }, + { + "id": 679, + "properties": { + "instrument": "snare", + "note": "20", + "powered": "false" + } + }, + { + "id": 680, + "properties": { + "instrument": "snare", + "note": "21", + "powered": "true" + } + }, + { + "id": 681, + "properties": { + "instrument": "snare", + "note": "21", + "powered": "false" + } + }, + { + "id": 682, + "properties": { + "instrument": "snare", + "note": "22", + "powered": "true" + } + }, + { + "id": 683, + "properties": { + "instrument": "snare", + "note": "22", + "powered": "false" + } + }, + { + "id": 684, + "properties": { + "instrument": "snare", + "note": "23", + "powered": "true" + } + }, + { + "id": 685, + "properties": { + "instrument": "snare", + "note": "23", + "powered": "false" + } + }, + { + "id": 686, + "properties": { + "instrument": "snare", + "note": "24", + "powered": "true" + } + }, + { + "id": 687, + "properties": { + "instrument": "snare", + "note": "24", + "powered": "false" + } + }, + { + "id": 688, + "properties": { + "instrument": "hat", + "note": "0", + "powered": "true" + } + }, + { + "id": 689, + "properties": { + "instrument": "hat", + "note": "0", + "powered": "false" + } + }, + { + "id": 690, + "properties": { + "instrument": "hat", + "note": "1", + "powered": "true" + } + }, + { + "id": 691, + "properties": { + "instrument": "hat", + "note": "1", + "powered": "false" + } + }, + { + "id": 692, + "properties": { + "instrument": "hat", + "note": "2", + "powered": "true" + } + }, + { + "id": 693, + "properties": { + "instrument": "hat", + "note": "2", + "powered": "false" + } + }, + { + "id": 694, + "properties": { + "instrument": "hat", + "note": "3", + "powered": "true" + } + }, + { + "id": 695, + "properties": { + "instrument": "hat", + "note": "3", + "powered": "false" + } + }, + { + "id": 696, + "properties": { + "instrument": "hat", + "note": "4", + "powered": "true" + } + }, + { + "id": 697, + "properties": { + "instrument": "hat", + "note": "4", + "powered": "false" + } + }, + { + "id": 698, + "properties": { + "instrument": "hat", + "note": "5", + "powered": "true" + } + }, + { + "id": 699, + "properties": { + "instrument": "hat", + "note": "5", + "powered": "false" + } + }, + { + "id": 700, + "properties": { + "instrument": "hat", + "note": "6", + "powered": "true" + } + }, + { + "id": 701, + "properties": { + "instrument": "hat", + "note": "6", + "powered": "false" + } + }, + { + "id": 702, + "properties": { + "instrument": "hat", + "note": "7", + "powered": "true" + } + }, + { + "id": 703, + "properties": { + "instrument": "hat", + "note": "7", + "powered": "false" + } + }, + { + "id": 704, + "properties": { + "instrument": "hat", + "note": "8", + "powered": "true" + } + }, + { + "id": 705, + "properties": { + "instrument": "hat", + "note": "8", + "powered": "false" + } + }, + { + "id": 706, + "properties": { + "instrument": "hat", + "note": "9", + "powered": "true" + } + }, + { + "id": 707, + "properties": { + "instrument": "hat", + "note": "9", + "powered": "false" + } + }, + { + "id": 708, + "properties": { + "instrument": "hat", + "note": "10", + "powered": "true" + } + }, + { + "id": 709, + "properties": { + "instrument": "hat", + "note": "10", + "powered": "false" + } + }, + { + "id": 710, + "properties": { + "instrument": "hat", + "note": "11", + "powered": "true" + } + }, + { + "id": 711, + "properties": { + "instrument": "hat", + "note": "11", + "powered": "false" + } + }, + { + "id": 712, + "properties": { + "instrument": "hat", + "note": "12", + "powered": "true" + } + }, + { + "id": 713, + "properties": { + "instrument": "hat", + "note": "12", + "powered": "false" + } + }, + { + "id": 714, + "properties": { + "instrument": "hat", + "note": "13", + "powered": "true" + } + }, + { + "id": 715, + "properties": { + "instrument": "hat", + "note": "13", + "powered": "false" + } + }, + { + "id": 716, + "properties": { + "instrument": "hat", + "note": "14", + "powered": "true" + } + }, + { + "id": 717, + "properties": { + "instrument": "hat", + "note": "14", + "powered": "false" + } + }, + { + "id": 718, + "properties": { + "instrument": "hat", + "note": "15", + "powered": "true" + } + }, + { + "id": 719, + "properties": { + "instrument": "hat", + "note": "15", + "powered": "false" + } + }, + { + "id": 720, + "properties": { + "instrument": "hat", + "note": "16", + "powered": "true" + } + }, + { + "id": 721, + "properties": { + "instrument": "hat", + "note": "16", + "powered": "false" + } + }, + { + "id": 722, + "properties": { + "instrument": "hat", + "note": "17", + "powered": "true" + } + }, + { + "id": 723, + "properties": { + "instrument": "hat", + "note": "17", + "powered": "false" + } + }, + { + "id": 724, + "properties": { + "instrument": "hat", + "note": "18", + "powered": "true" + } + }, + { + "id": 725, + "properties": { + "instrument": "hat", + "note": "18", + "powered": "false" + } + }, + { + "id": 726, + "properties": { + "instrument": "hat", + "note": "19", + "powered": "true" + } + }, + { + "id": 727, + "properties": { + "instrument": "hat", + "note": "19", + "powered": "false" + } + }, + { + "id": 728, + "properties": { + "instrument": "hat", + "note": "20", + "powered": "true" + } + }, + { + "id": 729, + "properties": { + "instrument": "hat", + "note": "20", + "powered": "false" + } + }, + { + "id": 730, + "properties": { + "instrument": "hat", + "note": "21", + "powered": "true" + } + }, + { + "id": 731, + "properties": { + "instrument": "hat", + "note": "21", + "powered": "false" + } + }, + { + "id": 732, + "properties": { + "instrument": "hat", + "note": "22", + "powered": "true" + } + }, + { + "id": 733, + "properties": { + "instrument": "hat", + "note": "22", + "powered": "false" + } + }, + { + "id": 734, + "properties": { + "instrument": "hat", + "note": "23", + "powered": "true" + } + }, + { + "id": 735, + "properties": { + "instrument": "hat", + "note": "23", + "powered": "false" + } + }, + { + "id": 736, + "properties": { + "instrument": "hat", + "note": "24", + "powered": "true" + } + }, + { + "id": 737, + "properties": { + "instrument": "hat", + "note": "24", + "powered": "false" + } + }, + { + "id": 738, + "properties": { + "instrument": "bass", + "note": "0", + "powered": "true" + } + }, + { + "id": 739, + "properties": { + "instrument": "bass", + "note": "0", + "powered": "false" + } + }, + { + "id": 740, + "properties": { + "instrument": "bass", + "note": "1", + "powered": "true" + } + }, + { + "id": 741, + "properties": { + "instrument": "bass", + "note": "1", + "powered": "false" + } + }, + { + "id": 742, + "properties": { + "instrument": "bass", + "note": "2", + "powered": "true" + } + }, + { + "id": 743, + "properties": { + "instrument": "bass", + "note": "2", + "powered": "false" + } + }, + { + "id": 744, + "properties": { + "instrument": "bass", + "note": "3", + "powered": "true" + } + }, + { + "id": 745, + "properties": { + "instrument": "bass", + "note": "3", + "powered": "false" + } + }, + { + "id": 746, + "properties": { + "instrument": "bass", + "note": "4", + "powered": "true" + } + }, + { + "id": 747, + "properties": { + "instrument": "bass", + "note": "4", + "powered": "false" + } + }, + { + "id": 748, + "properties": { + "instrument": "bass", + "note": "5", + "powered": "true" + } + }, + { + "id": 749, + "properties": { + "instrument": "bass", + "note": "5", + "powered": "false" + } + }, + { + "id": 750, + "properties": { + "instrument": "bass", + "note": "6", + "powered": "true" + } + }, + { + "id": 751, + "properties": { + "instrument": "bass", + "note": "6", + "powered": "false" + } + }, + { + "id": 752, + "properties": { + "instrument": "bass", + "note": "7", + "powered": "true" + } + }, + { + "id": 753, + "properties": { + "instrument": "bass", + "note": "7", + "powered": "false" + } + }, + { + "id": 754, + "properties": { + "instrument": "bass", + "note": "8", + "powered": "true" + } + }, + { + "id": 755, + "properties": { + "instrument": "bass", + "note": "8", + "powered": "false" + } + }, + { + "id": 756, + "properties": { + "instrument": "bass", + "note": "9", + "powered": "true" + } + }, + { + "id": 757, + "properties": { + "instrument": "bass", + "note": "9", + "powered": "false" + } + }, + { + "id": 758, + "properties": { + "instrument": "bass", + "note": "10", + "powered": "true" + } + }, + { + "id": 759, + "properties": { + "instrument": "bass", + "note": "10", + "powered": "false" + } + }, + { + "id": 760, + "properties": { + "instrument": "bass", + "note": "11", + "powered": "true" + } + }, + { + "id": 761, + "properties": { + "instrument": "bass", + "note": "11", + "powered": "false" + } + }, + { + "id": 762, + "properties": { + "instrument": "bass", + "note": "12", + "powered": "true" + } + }, + { + "id": 763, + "properties": { + "instrument": "bass", + "note": "12", + "powered": "false" + } + }, + { + "id": 764, + "properties": { + "instrument": "bass", + "note": "13", + "powered": "true" + } + }, + { + "id": 765, + "properties": { + "instrument": "bass", + "note": "13", + "powered": "false" + } + }, + { + "id": 766, + "properties": { + "instrument": "bass", + "note": "14", + "powered": "true" + } + }, + { + "id": 767, + "properties": { + "instrument": "bass", + "note": "14", + "powered": "false" + } + }, + { + "id": 768, + "properties": { + "instrument": "bass", + "note": "15", + "powered": "true" + } + }, + { + "id": 769, + "properties": { + "instrument": "bass", + "note": "15", + "powered": "false" + } + }, + { + "id": 770, + "properties": { + "instrument": "bass", + "note": "16", + "powered": "true" + } + }, + { + "id": 771, + "properties": { + "instrument": "bass", + "note": "16", + "powered": "false" + } + }, + { + "id": 772, + "properties": { + "instrument": "bass", + "note": "17", + "powered": "true" + } + }, + { + "id": 773, + "properties": { + "instrument": "bass", + "note": "17", + "powered": "false" + } + }, + { + "id": 774, + "properties": { + "instrument": "bass", + "note": "18", + "powered": "true" + } + }, + { + "id": 775, + "properties": { + "instrument": "bass", + "note": "18", + "powered": "false" + } + }, + { + "id": 776, + "properties": { + "instrument": "bass", + "note": "19", + "powered": "true" + } + }, + { + "id": 777, + "properties": { + "instrument": "bass", + "note": "19", + "powered": "false" + } + }, + { + "id": 778, + "properties": { + "instrument": "bass", + "note": "20", + "powered": "true" + } + }, + { + "id": 779, + "properties": { + "instrument": "bass", + "note": "20", + "powered": "false" + } + }, + { + "id": 780, + "properties": { + "instrument": "bass", + "note": "21", + "powered": "true" + } + }, + { + "id": 781, + "properties": { + "instrument": "bass", + "note": "21", + "powered": "false" + } + }, + { + "id": 782, + "properties": { + "instrument": "bass", + "note": "22", + "powered": "true" + } + }, + { + "id": 783, + "properties": { + "instrument": "bass", + "note": "22", + "powered": "false" + } + }, + { + "id": 784, + "properties": { + "instrument": "bass", + "note": "23", + "powered": "true" + } + }, + { + "id": 785, + "properties": { + "instrument": "bass", + "note": "23", + "powered": "false" + } + }, + { + "id": 786, + "properties": { + "instrument": "bass", + "note": "24", + "powered": "true" + } + }, + { + "id": 787, + "properties": { + "instrument": "bass", + "note": "24", + "powered": "false" + } + }, + { + "id": 788, + "properties": { + "instrument": "flute", + "note": "0", + "powered": "true" + } + }, + { + "id": 789, + "properties": { + "instrument": "flute", + "note": "0", + "powered": "false" + } + }, + { + "id": 790, + "properties": { + "instrument": "flute", + "note": "1", + "powered": "true" + } + }, + { + "id": 791, + "properties": { + "instrument": "flute", + "note": "1", + "powered": "false" + } + }, + { + "id": 792, + "properties": { + "instrument": "flute", + "note": "2", + "powered": "true" + } + }, + { + "id": 793, + "properties": { + "instrument": "flute", + "note": "2", + "powered": "false" + } + }, + { + "id": 794, + "properties": { + "instrument": "flute", + "note": "3", + "powered": "true" + } + }, + { + "id": 795, + "properties": { + "instrument": "flute", + "note": "3", + "powered": "false" + } + }, + { + "id": 796, + "properties": { + "instrument": "flute", + "note": "4", + "powered": "true" + } + }, + { + "id": 797, + "properties": { + "instrument": "flute", + "note": "4", + "powered": "false" + } + }, + { + "id": 798, + "properties": { + "instrument": "flute", + "note": "5", + "powered": "true" + } + }, + { + "id": 799, + "properties": { + "instrument": "flute", + "note": "5", + "powered": "false" + } + }, + { + "id": 800, + "properties": { + "instrument": "flute", + "note": "6", + "powered": "true" + } + }, + { + "id": 801, + "properties": { + "instrument": "flute", + "note": "6", + "powered": "false" + } + }, + { + "id": 802, + "properties": { + "instrument": "flute", + "note": "7", + "powered": "true" + } + }, + { + "id": 803, + "properties": { + "instrument": "flute", + "note": "7", + "powered": "false" + } + }, + { + "id": 804, + "properties": { + "instrument": "flute", + "note": "8", + "powered": "true" + } + }, + { + "id": 805, + "properties": { + "instrument": "flute", + "note": "8", + "powered": "false" + } + }, + { + "id": 806, + "properties": { + "instrument": "flute", + "note": "9", + "powered": "true" + } + }, + { + "id": 807, + "properties": { + "instrument": "flute", + "note": "9", + "powered": "false" + } + }, + { + "id": 808, + "properties": { + "instrument": "flute", + "note": "10", + "powered": "true" + } + }, + { + "id": 809, + "properties": { + "instrument": "flute", + "note": "10", + "powered": "false" + } + }, + { + "id": 810, + "properties": { + "instrument": "flute", + "note": "11", + "powered": "true" + } + }, + { + "id": 811, + "properties": { + "instrument": "flute", + "note": "11", + "powered": "false" + } + }, + { + "id": 812, + "properties": { + "instrument": "flute", + "note": "12", + "powered": "true" + } + }, + { + "id": 813, + "properties": { + "instrument": "flute", + "note": "12", + "powered": "false" + } + }, + { + "id": 814, + "properties": { + "instrument": "flute", + "note": "13", + "powered": "true" + } + }, + { + "id": 815, + "properties": { + "instrument": "flute", + "note": "13", + "powered": "false" + } + }, + { + "id": 816, + "properties": { + "instrument": "flute", + "note": "14", + "powered": "true" + } + }, + { + "id": 817, + "properties": { + "instrument": "flute", + "note": "14", + "powered": "false" + } + }, + { + "id": 818, + "properties": { + "instrument": "flute", + "note": "15", + "powered": "true" + } + }, + { + "id": 819, + "properties": { + "instrument": "flute", + "note": "15", + "powered": "false" + } + }, + { + "id": 820, + "properties": { + "instrument": "flute", + "note": "16", + "powered": "true" + } + }, + { + "id": 821, + "properties": { + "instrument": "flute", + "note": "16", + "powered": "false" + } + }, + { + "id": 822, + "properties": { + "instrument": "flute", + "note": "17", + "powered": "true" + } + }, + { + "id": 823, + "properties": { + "instrument": "flute", + "note": "17", + "powered": "false" + } + }, + { + "id": 824, + "properties": { + "instrument": "flute", + "note": "18", + "powered": "true" + } + }, + { + "id": 825, + "properties": { + "instrument": "flute", + "note": "18", + "powered": "false" + } + }, + { + "id": 826, + "properties": { + "instrument": "flute", + "note": "19", + "powered": "true" + } + }, + { + "id": 827, + "properties": { + "instrument": "flute", + "note": "19", + "powered": "false" + } + }, + { + "id": 828, + "properties": { + "instrument": "flute", + "note": "20", + "powered": "true" + } + }, + { + "id": 829, + "properties": { + "instrument": "flute", + "note": "20", + "powered": "false" + } + }, + { + "id": 830, + "properties": { + "instrument": "flute", + "note": "21", + "powered": "true" + } + }, + { + "id": 831, + "properties": { + "instrument": "flute", + "note": "21", + "powered": "false" + } + }, + { + "id": 832, + "properties": { + "instrument": "flute", + "note": "22", + "powered": "true" + } + }, + { + "id": 833, + "properties": { + "instrument": "flute", + "note": "22", + "powered": "false" + } + }, + { + "id": 834, + "properties": { + "instrument": "flute", + "note": "23", + "powered": "true" + } + }, + { + "id": 835, + "properties": { + "instrument": "flute", + "note": "23", + "powered": "false" + } + }, + { + "id": 836, + "properties": { + "instrument": "flute", + "note": "24", + "powered": "true" + } + }, + { + "id": 837, + "properties": { + "instrument": "flute", + "note": "24", + "powered": "false" + } + }, + { + "id": 838, + "properties": { + "instrument": "bell", + "note": "0", + "powered": "true" + } + }, + { + "id": 839, + "properties": { + "instrument": "bell", + "note": "0", + "powered": "false" + } + }, + { + "id": 840, + "properties": { + "instrument": "bell", + "note": "1", + "powered": "true" + } + }, + { + "id": 841, + "properties": { + "instrument": "bell", + "note": "1", + "powered": "false" + } + }, + { + "id": 842, + "properties": { + "instrument": "bell", + "note": "2", + "powered": "true" + } + }, + { + "id": 843, + "properties": { + "instrument": "bell", + "note": "2", + "powered": "false" + } + }, + { + "id": 844, + "properties": { + "instrument": "bell", + "note": "3", + "powered": "true" + } + }, + { + "id": 845, + "properties": { + "instrument": "bell", + "note": "3", + "powered": "false" + } + }, + { + "id": 846, + "properties": { + "instrument": "bell", + "note": "4", + "powered": "true" + } + }, + { + "id": 847, + "properties": { + "instrument": "bell", + "note": "4", + "powered": "false" + } + }, + { + "id": 848, + "properties": { + "instrument": "bell", + "note": "5", + "powered": "true" + } + }, + { + "id": 849, + "properties": { + "instrument": "bell", + "note": "5", + "powered": "false" + } + }, + { + "id": 850, + "properties": { + "instrument": "bell", + "note": "6", + "powered": "true" + } + }, + { + "id": 851, + "properties": { + "instrument": "bell", + "note": "6", + "powered": "false" + } + }, + { + "id": 852, + "properties": { + "instrument": "bell", + "note": "7", + "powered": "true" + } + }, + { + "id": 853, + "properties": { + "instrument": "bell", + "note": "7", + "powered": "false" + } + }, + { + "id": 854, + "properties": { + "instrument": "bell", + "note": "8", + "powered": "true" + } + }, + { + "id": 855, + "properties": { + "instrument": "bell", + "note": "8", + "powered": "false" + } + }, + { + "id": 856, + "properties": { + "instrument": "bell", + "note": "9", + "powered": "true" + } + }, + { + "id": 857, + "properties": { + "instrument": "bell", + "note": "9", + "powered": "false" + } + }, + { + "id": 858, + "properties": { + "instrument": "bell", + "note": "10", + "powered": "true" + } + }, + { + "id": 859, + "properties": { + "instrument": "bell", + "note": "10", + "powered": "false" + } + }, + { + "id": 860, + "properties": { + "instrument": "bell", + "note": "11", + "powered": "true" + } + }, + { + "id": 861, + "properties": { + "instrument": "bell", + "note": "11", + "powered": "false" + } + }, + { + "id": 862, + "properties": { + "instrument": "bell", + "note": "12", + "powered": "true" + } + }, + { + "id": 863, + "properties": { + "instrument": "bell", + "note": "12", + "powered": "false" + } + }, + { + "id": 864, + "properties": { + "instrument": "bell", + "note": "13", + "powered": "true" + } + }, + { + "id": 865, + "properties": { + "instrument": "bell", + "note": "13", + "powered": "false" + } + }, + { + "id": 866, + "properties": { + "instrument": "bell", + "note": "14", + "powered": "true" + } + }, + { + "id": 867, + "properties": { + "instrument": "bell", + "note": "14", + "powered": "false" + } + }, + { + "id": 868, + "properties": { + "instrument": "bell", + "note": "15", + "powered": "true" + } + }, + { + "id": 869, + "properties": { + "instrument": "bell", + "note": "15", + "powered": "false" + } + }, + { + "id": 870, + "properties": { + "instrument": "bell", + "note": "16", + "powered": "true" + } + }, + { + "id": 871, + "properties": { + "instrument": "bell", + "note": "16", + "powered": "false" + } + }, + { + "id": 872, + "properties": { + "instrument": "bell", + "note": "17", + "powered": "true" + } + }, + { + "id": 873, + "properties": { + "instrument": "bell", + "note": "17", + "powered": "false" + } + }, + { + "id": 874, + "properties": { + "instrument": "bell", + "note": "18", + "powered": "true" + } + }, + { + "id": 875, + "properties": { + "instrument": "bell", + "note": "18", + "powered": "false" + } + }, + { + "id": 876, + "properties": { + "instrument": "bell", + "note": "19", + "powered": "true" + } + }, + { + "id": 877, + "properties": { + "instrument": "bell", + "note": "19", + "powered": "false" + } + }, + { + "id": 878, + "properties": { + "instrument": "bell", + "note": "20", + "powered": "true" + } + }, + { + "id": 879, + "properties": { + "instrument": "bell", + "note": "20", + "powered": "false" + } + }, + { + "id": 880, + "properties": { + "instrument": "bell", + "note": "21", + "powered": "true" + } + }, + { + "id": 881, + "properties": { + "instrument": "bell", + "note": "21", + "powered": "false" + } + }, + { + "id": 882, + "properties": { + "instrument": "bell", + "note": "22", + "powered": "true" + } + }, + { + "id": 883, + "properties": { + "instrument": "bell", + "note": "22", + "powered": "false" + } + }, + { + "id": 884, + "properties": { + "instrument": "bell", + "note": "23", + "powered": "true" + } + }, + { + "id": 885, + "properties": { + "instrument": "bell", + "note": "23", + "powered": "false" + } + }, + { + "id": 886, + "properties": { + "instrument": "bell", + "note": "24", + "powered": "true" + } + }, + { + "id": 887, + "properties": { + "instrument": "bell", + "note": "24", + "powered": "false" + } + }, + { + "id": 888, + "properties": { + "instrument": "guitar", + "note": "0", + "powered": "true" + } + }, + { + "id": 889, + "properties": { + "instrument": "guitar", + "note": "0", + "powered": "false" + } + }, + { + "id": 890, + "properties": { + "instrument": "guitar", + "note": "1", + "powered": "true" + } + }, + { + "id": 891, + "properties": { + "instrument": "guitar", + "note": "1", + "powered": "false" + } + }, + { + "id": 892, + "properties": { + "instrument": "guitar", + "note": "2", + "powered": "true" + } + }, + { + "id": 893, + "properties": { + "instrument": "guitar", + "note": "2", + "powered": "false" + } + }, + { + "id": 894, + "properties": { + "instrument": "guitar", + "note": "3", + "powered": "true" + } + }, + { + "id": 895, + "properties": { + "instrument": "guitar", + "note": "3", + "powered": "false" + } + }, + { + "id": 896, + "properties": { + "instrument": "guitar", + "note": "4", + "powered": "true" + } + }, + { + "id": 897, + "properties": { + "instrument": "guitar", + "note": "4", + "powered": "false" + } + }, + { + "id": 898, + "properties": { + "instrument": "guitar", + "note": "5", + "powered": "true" + } + }, + { + "id": 899, + "properties": { + "instrument": "guitar", + "note": "5", + "powered": "false" + } + }, + { + "id": 900, + "properties": { + "instrument": "guitar", + "note": "6", + "powered": "true" + } + }, + { + "id": 901, + "properties": { + "instrument": "guitar", + "note": "6", + "powered": "false" + } + }, + { + "id": 902, + "properties": { + "instrument": "guitar", + "note": "7", + "powered": "true" + } + }, + { + "id": 903, + "properties": { + "instrument": "guitar", + "note": "7", + "powered": "false" + } + }, + { + "id": 904, + "properties": { + "instrument": "guitar", + "note": "8", + "powered": "true" + } + }, + { + "id": 905, + "properties": { + "instrument": "guitar", + "note": "8", + "powered": "false" + } + }, + { + "id": 906, + "properties": { + "instrument": "guitar", + "note": "9", + "powered": "true" + } + }, + { + "id": 907, + "properties": { + "instrument": "guitar", + "note": "9", + "powered": "false" + } + }, + { + "id": 908, + "properties": { + "instrument": "guitar", + "note": "10", + "powered": "true" + } + }, + { + "id": 909, + "properties": { + "instrument": "guitar", + "note": "10", + "powered": "false" + } + }, + { + "id": 910, + "properties": { + "instrument": "guitar", + "note": "11", + "powered": "true" + } + }, + { + "id": 911, + "properties": { + "instrument": "guitar", + "note": "11", + "powered": "false" + } + }, + { + "id": 912, + "properties": { + "instrument": "guitar", + "note": "12", + "powered": "true" + } + }, + { + "id": 913, + "properties": { + "instrument": "guitar", + "note": "12", + "powered": "false" + } + }, + { + "id": 914, + "properties": { + "instrument": "guitar", + "note": "13", + "powered": "true" + } + }, + { + "id": 915, + "properties": { + "instrument": "guitar", + "note": "13", + "powered": "false" + } + }, + { + "id": 916, + "properties": { + "instrument": "guitar", + "note": "14", + "powered": "true" + } + }, + { + "id": 917, + "properties": { + "instrument": "guitar", + "note": "14", + "powered": "false" + } + }, + { + "id": 918, + "properties": { + "instrument": "guitar", + "note": "15", + "powered": "true" + } + }, + { + "id": 919, + "properties": { + "instrument": "guitar", + "note": "15", + "powered": "false" + } + }, + { + "id": 920, + "properties": { + "instrument": "guitar", + "note": "16", + "powered": "true" + } + }, + { + "id": 921, + "properties": { + "instrument": "guitar", + "note": "16", + "powered": "false" + } + }, + { + "id": 922, + "properties": { + "instrument": "guitar", + "note": "17", + "powered": "true" + } + }, + { + "id": 923, + "properties": { + "instrument": "guitar", + "note": "17", + "powered": "false" + } + }, + { + "id": 924, + "properties": { + "instrument": "guitar", + "note": "18", + "powered": "true" + } + }, + { + "id": 925, + "properties": { + "instrument": "guitar", + "note": "18", + "powered": "false" + } + }, + { + "id": 926, + "properties": { + "instrument": "guitar", + "note": "19", + "powered": "true" + } + }, + { + "id": 927, + "properties": { + "instrument": "guitar", + "note": "19", + "powered": "false" + } + }, + { + "id": 928, + "properties": { + "instrument": "guitar", + "note": "20", + "powered": "true" + } + }, + { + "id": 929, + "properties": { + "instrument": "guitar", + "note": "20", + "powered": "false" + } + }, + { + "id": 930, + "properties": { + "instrument": "guitar", + "note": "21", + "powered": "true" + } + }, + { + "id": 931, + "properties": { + "instrument": "guitar", + "note": "21", + "powered": "false" + } + }, + { + "id": 932, + "properties": { + "instrument": "guitar", + "note": "22", + "powered": "true" + } + }, + { + "id": 933, + "properties": { + "instrument": "guitar", + "note": "22", + "powered": "false" + } + }, + { + "id": 934, + "properties": { + "instrument": "guitar", + "note": "23", + "powered": "true" + } + }, + { + "id": 935, + "properties": { + "instrument": "guitar", + "note": "23", + "powered": "false" + } + }, + { + "id": 936, + "properties": { + "instrument": "guitar", + "note": "24", + "powered": "true" + } + }, + { + "id": 937, + "properties": { + "instrument": "guitar", + "note": "24", + "powered": "false" + } + }, + { + "id": 938, + "properties": { + "instrument": "chime", + "note": "0", + "powered": "true" + } + }, + { + "id": 939, + "properties": { + "instrument": "chime", + "note": "0", + "powered": "false" + } + }, + { + "id": 940, + "properties": { + "instrument": "chime", + "note": "1", + "powered": "true" + } + }, + { + "id": 941, + "properties": { + "instrument": "chime", + "note": "1", + "powered": "false" + } + }, + { + "id": 942, + "properties": { + "instrument": "chime", + "note": "2", + "powered": "true" + } + }, + { + "id": 943, + "properties": { + "instrument": "chime", + "note": "2", + "powered": "false" + } + }, + { + "id": 944, + "properties": { + "instrument": "chime", + "note": "3", + "powered": "true" + } + }, + { + "id": 945, + "properties": { + "instrument": "chime", + "note": "3", + "powered": "false" + } + }, + { + "id": 946, + "properties": { + "instrument": "chime", + "note": "4", + "powered": "true" + } + }, + { + "id": 947, + "properties": { + "instrument": "chime", + "note": "4", + "powered": "false" + } + }, + { + "id": 948, + "properties": { + "instrument": "chime", + "note": "5", + "powered": "true" + } + }, + { + "id": 949, + "properties": { + "instrument": "chime", + "note": "5", + "powered": "false" + } + }, + { + "id": 950, + "properties": { + "instrument": "chime", + "note": "6", + "powered": "true" + } + }, + { + "id": 951, + "properties": { + "instrument": "chime", + "note": "6", + "powered": "false" + } + }, + { + "id": 952, + "properties": { + "instrument": "chime", + "note": "7", + "powered": "true" + } + }, + { + "id": 953, + "properties": { + "instrument": "chime", + "note": "7", + "powered": "false" + } + }, + { + "id": 954, + "properties": { + "instrument": "chime", + "note": "8", + "powered": "true" + } + }, + { + "id": 955, + "properties": { + "instrument": "chime", + "note": "8", + "powered": "false" + } + }, + { + "id": 956, + "properties": { + "instrument": "chime", + "note": "9", + "powered": "true" + } + }, + { + "id": 957, + "properties": { + "instrument": "chime", + "note": "9", + "powered": "false" + } + }, + { + "id": 958, + "properties": { + "instrument": "chime", + "note": "10", + "powered": "true" + } + }, + { + "id": 959, + "properties": { + "instrument": "chime", + "note": "10", + "powered": "false" + } + }, + { + "id": 960, + "properties": { + "instrument": "chime", + "note": "11", + "powered": "true" + } + }, + { + "id": 961, + "properties": { + "instrument": "chime", + "note": "11", + "powered": "false" + } + }, + { + "id": 962, + "properties": { + "instrument": "chime", + "note": "12", + "powered": "true" + } + }, + { + "id": 963, + "properties": { + "instrument": "chime", + "note": "12", + "powered": "false" + } + }, + { + "id": 964, + "properties": { + "instrument": "chime", + "note": "13", + "powered": "true" + } + }, + { + "id": 965, + "properties": { + "instrument": "chime", + "note": "13", + "powered": "false" + } + }, + { + "id": 966, + "properties": { + "instrument": "chime", + "note": "14", + "powered": "true" + } + }, + { + "id": 967, + "properties": { + "instrument": "chime", + "note": "14", + "powered": "false" + } + }, + { + "id": 968, + "properties": { + "instrument": "chime", + "note": "15", + "powered": "true" + } + }, + { + "id": 969, + "properties": { + "instrument": "chime", + "note": "15", + "powered": "false" + } + }, + { + "id": 970, + "properties": { + "instrument": "chime", + "note": "16", + "powered": "true" + } + }, + { + "id": 971, + "properties": { + "instrument": "chime", + "note": "16", + "powered": "false" + } + }, + { + "id": 972, + "properties": { + "instrument": "chime", + "note": "17", + "powered": "true" + } + }, + { + "id": 973, + "properties": { + "instrument": "chime", + "note": "17", + "powered": "false" + } + }, + { + "id": 974, + "properties": { + "instrument": "chime", + "note": "18", + "powered": "true" + } + }, + { + "id": 975, + "properties": { + "instrument": "chime", + "note": "18", + "powered": "false" + } + }, + { + "id": 976, + "properties": { + "instrument": "chime", + "note": "19", + "powered": "true" + } + }, + { + "id": 977, + "properties": { + "instrument": "chime", + "note": "19", + "powered": "false" + } + }, + { + "id": 978, + "properties": { + "instrument": "chime", + "note": "20", + "powered": "true" + } + }, + { + "id": 979, + "properties": { + "instrument": "chime", + "note": "20", + "powered": "false" + } + }, + { + "id": 980, + "properties": { + "instrument": "chime", + "note": "21", + "powered": "true" + } + }, + { + "id": 981, + "properties": { + "instrument": "chime", + "note": "21", + "powered": "false" + } + }, + { + "id": 982, + "properties": { + "instrument": "chime", + "note": "22", + "powered": "true" + } + }, + { + "id": 983, + "properties": { + "instrument": "chime", + "note": "22", + "powered": "false" + } + }, + { + "id": 984, + "properties": { + "instrument": "chime", + "note": "23", + "powered": "true" + } + }, + { + "id": 985, + "properties": { + "instrument": "chime", + "note": "23", + "powered": "false" + } + }, + { + "id": 986, + "properties": { + "instrument": "chime", + "note": "24", + "powered": "true" + } + }, + { + "id": 987, + "properties": { + "instrument": "chime", + "note": "24", + "powered": "false" + } + }, + { + "id": 988, + "properties": { + "instrument": "xylophone", + "note": "0", + "powered": "true" + } + }, + { + "id": 989, + "properties": { + "instrument": "xylophone", + "note": "0", + "powered": "false" + } + }, + { + "id": 990, + "properties": { + "instrument": "xylophone", + "note": "1", + "powered": "true" + } + }, + { + "id": 991, + "properties": { + "instrument": "xylophone", + "note": "1", + "powered": "false" + } + }, + { + "id": 992, + "properties": { + "instrument": "xylophone", + "note": "2", + "powered": "true" + } + }, + { + "id": 993, + "properties": { + "instrument": "xylophone", + "note": "2", + "powered": "false" + } + }, + { + "id": 994, + "properties": { + "instrument": "xylophone", + "note": "3", + "powered": "true" + } + }, + { + "id": 995, + "properties": { + "instrument": "xylophone", + "note": "3", + "powered": "false" + } + }, + { + "id": 996, + "properties": { + "instrument": "xylophone", + "note": "4", + "powered": "true" + } + }, + { + "id": 997, + "properties": { + "instrument": "xylophone", + "note": "4", + "powered": "false" + } + }, + { + "id": 998, + "properties": { + "instrument": "xylophone", + "note": "5", + "powered": "true" + } + }, + { + "id": 999, + "properties": { + "instrument": "xylophone", + "note": "5", + "powered": "false" + } + }, + { + "id": 1000, + "properties": { + "instrument": "xylophone", + "note": "6", + "powered": "true" + } + }, + { + "id": 1001, + "properties": { + "instrument": "xylophone", + "note": "6", + "powered": "false" + } + }, + { + "id": 1002, + "properties": { + "instrument": "xylophone", + "note": "7", + "powered": "true" + } + }, + { + "id": 1003, + "properties": { + "instrument": "xylophone", + "note": "7", + "powered": "false" + } + }, + { + "id": 1004, + "properties": { + "instrument": "xylophone", + "note": "8", + "powered": "true" + } + }, + { + "id": 1005, + "properties": { + "instrument": "xylophone", + "note": "8", + "powered": "false" + } + }, + { + "id": 1006, + "properties": { + "instrument": "xylophone", + "note": "9", + "powered": "true" + } + }, + { + "id": 1007, + "properties": { + "instrument": "xylophone", + "note": "9", + "powered": "false" + } + }, + { + "id": 1008, + "properties": { + "instrument": "xylophone", + "note": "10", + "powered": "true" + } + }, + { + "id": 1009, + "properties": { + "instrument": "xylophone", + "note": "10", + "powered": "false" + } + }, + { + "id": 1010, + "properties": { + "instrument": "xylophone", + "note": "11", + "powered": "true" + } + }, + { + "id": 1011, + "properties": { + "instrument": "xylophone", + "note": "11", + "powered": "false" + } + }, + { + "id": 1012, + "properties": { + "instrument": "xylophone", + "note": "12", + "powered": "true" + } + }, + { + "id": 1013, + "properties": { + "instrument": "xylophone", + "note": "12", + "powered": "false" + } + }, + { + "id": 1014, + "properties": { + "instrument": "xylophone", + "note": "13", + "powered": "true" + } + }, + { + "id": 1015, + "properties": { + "instrument": "xylophone", + "note": "13", + "powered": "false" + } + }, + { + "id": 1016, + "properties": { + "instrument": "xylophone", + "note": "14", + "powered": "true" + } + }, + { + "id": 1017, + "properties": { + "instrument": "xylophone", + "note": "14", + "powered": "false" + } + }, + { + "id": 1018, + "properties": { + "instrument": "xylophone", + "note": "15", + "powered": "true" + } + }, + { + "id": 1019, + "properties": { + "instrument": "xylophone", + "note": "15", + "powered": "false" + } + }, + { + "id": 1020, + "properties": { + "instrument": "xylophone", + "note": "16", + "powered": "true" + } + }, + { + "id": 1021, + "properties": { + "instrument": "xylophone", + "note": "16", + "powered": "false" + } + }, + { + "id": 1022, + "properties": { + "instrument": "xylophone", + "note": "17", + "powered": "true" + } + }, + { + "id": 1023, + "properties": { + "instrument": "xylophone", + "note": "17", + "powered": "false" + } + }, + { + "id": 1024, + "properties": { + "instrument": "xylophone", + "note": "18", + "powered": "true" + } + }, + { + "id": 1025, + "properties": { + "instrument": "xylophone", + "note": "18", + "powered": "false" + } + }, + { + "id": 1026, + "properties": { + "instrument": "xylophone", + "note": "19", + "powered": "true" + } + }, + { + "id": 1027, + "properties": { + "instrument": "xylophone", + "note": "19", + "powered": "false" + } + }, + { + "id": 1028, + "properties": { + "instrument": "xylophone", + "note": "20", + "powered": "true" + } + }, + { + "id": 1029, + "properties": { + "instrument": "xylophone", + "note": "20", + "powered": "false" + } + }, + { + "id": 1030, + "properties": { + "instrument": "xylophone", + "note": "21", + "powered": "true" + } + }, + { + "id": 1031, + "properties": { + "instrument": "xylophone", + "note": "21", + "powered": "false" + } + }, + { + "id": 1032, + "properties": { + "instrument": "xylophone", + "note": "22", + "powered": "true" + } + }, + { + "id": 1033, + "properties": { + "instrument": "xylophone", + "note": "22", + "powered": "false" + } + }, + { + "id": 1034, + "properties": { + "instrument": "xylophone", + "note": "23", + "powered": "true" + } + }, + { + "id": 1035, + "properties": { + "instrument": "xylophone", + "note": "23", + "powered": "false" + } + }, + { + "id": 1036, + "properties": { + "instrument": "xylophone", + "note": "24", + "powered": "true" + } + }, + { + "id": 1037, + "properties": { + "instrument": "xylophone", + "note": "24", + "powered": "false" + } + }, + { + "id": 1038, + "properties": { + "instrument": "iron_xylophone", + "note": "0", + "powered": "true" + } + }, + { + "id": 1039, + "properties": { + "instrument": "iron_xylophone", + "note": "0", + "powered": "false" + } + }, + { + "id": 1040, + "properties": { + "instrument": "iron_xylophone", + "note": "1", + "powered": "true" + } + }, + { + "id": 1041, + "properties": { + "instrument": "iron_xylophone", + "note": "1", + "powered": "false" + } + }, + { + "id": 1042, + "properties": { + "instrument": "iron_xylophone", + "note": "2", + "powered": "true" + } + }, + { + "id": 1043, + "properties": { + "instrument": "iron_xylophone", + "note": "2", + "powered": "false" + } + }, + { + "id": 1044, + "properties": { + "instrument": "iron_xylophone", + "note": "3", + "powered": "true" + } + }, + { + "id": 1045, + "properties": { + "instrument": "iron_xylophone", + "note": "3", + "powered": "false" + } + }, + { + "id": 1046, + "properties": { + "instrument": "iron_xylophone", + "note": "4", + "powered": "true" + } + }, + { + "id": 1047, + "properties": { + "instrument": "iron_xylophone", + "note": "4", + "powered": "false" + } + }, + { + "id": 1048, + "properties": { + "instrument": "iron_xylophone", + "note": "5", + "powered": "true" + } + }, + { + "id": 1049, + "properties": { + "instrument": "iron_xylophone", + "note": "5", + "powered": "false" + } + }, + { + "id": 1050, + "properties": { + "instrument": "iron_xylophone", + "note": "6", + "powered": "true" + } + }, + { + "id": 1051, + "properties": { + "instrument": "iron_xylophone", + "note": "6", + "powered": "false" + } + }, + { + "id": 1052, + "properties": { + "instrument": "iron_xylophone", + "note": "7", + "powered": "true" + } + }, + { + "id": 1053, + "properties": { + "instrument": "iron_xylophone", + "note": "7", + "powered": "false" + } + }, + { + "id": 1054, + "properties": { + "instrument": "iron_xylophone", + "note": "8", + "powered": "true" + } + }, + { + "id": 1055, + "properties": { + "instrument": "iron_xylophone", + "note": "8", + "powered": "false" + } + }, + { + "id": 1056, + "properties": { + "instrument": "iron_xylophone", + "note": "9", + "powered": "true" + } + }, + { + "id": 1057, + "properties": { + "instrument": "iron_xylophone", + "note": "9", + "powered": "false" + } + }, + { + "id": 1058, + "properties": { + "instrument": "iron_xylophone", + "note": "10", + "powered": "true" + } + }, + { + "id": 1059, + "properties": { + "instrument": "iron_xylophone", + "note": "10", + "powered": "false" + } + }, + { + "id": 1060, + "properties": { + "instrument": "iron_xylophone", + "note": "11", + "powered": "true" + } + }, + { + "id": 1061, + "properties": { + "instrument": "iron_xylophone", + "note": "11", + "powered": "false" + } + }, + { + "id": 1062, + "properties": { + "instrument": "iron_xylophone", + "note": "12", + "powered": "true" + } + }, + { + "id": 1063, + "properties": { + "instrument": "iron_xylophone", + "note": "12", + "powered": "false" + } + }, + { + "id": 1064, + "properties": { + "instrument": "iron_xylophone", + "note": "13", + "powered": "true" + } + }, + { + "id": 1065, + "properties": { + "instrument": "iron_xylophone", + "note": "13", + "powered": "false" + } + }, + { + "id": 1066, + "properties": { + "instrument": "iron_xylophone", + "note": "14", + "powered": "true" + } + }, + { + "id": 1067, + "properties": { + "instrument": "iron_xylophone", + "note": "14", + "powered": "false" + } + }, + { + "id": 1068, + "properties": { + "instrument": "iron_xylophone", + "note": "15", + "powered": "true" + } + }, + { + "id": 1069, + "properties": { + "instrument": "iron_xylophone", + "note": "15", + "powered": "false" + } + }, + { + "id": 1070, + "properties": { + "instrument": "iron_xylophone", + "note": "16", + "powered": "true" + } + }, + { + "id": 1071, + "properties": { + "instrument": "iron_xylophone", + "note": "16", + "powered": "false" + } + }, + { + "id": 1072, + "properties": { + "instrument": "iron_xylophone", + "note": "17", + "powered": "true" + } + }, + { + "id": 1073, + "properties": { + "instrument": "iron_xylophone", + "note": "17", + "powered": "false" + } + }, + { + "id": 1074, + "properties": { + "instrument": "iron_xylophone", + "note": "18", + "powered": "true" + } + }, + { + "id": 1075, + "properties": { + "instrument": "iron_xylophone", + "note": "18", + "powered": "false" + } + }, + { + "id": 1076, + "properties": { + "instrument": "iron_xylophone", + "note": "19", + "powered": "true" + } + }, + { + "id": 1077, + "properties": { + "instrument": "iron_xylophone", + "note": "19", + "powered": "false" + } + }, + { + "id": 1078, + "properties": { + "instrument": "iron_xylophone", + "note": "20", + "powered": "true" + } + }, + { + "id": 1079, + "properties": { + "instrument": "iron_xylophone", + "note": "20", + "powered": "false" + } + }, + { + "id": 1080, + "properties": { + "instrument": "iron_xylophone", + "note": "21", + "powered": "true" + } + }, + { + "id": 1081, + "properties": { + "instrument": "iron_xylophone", + "note": "21", + "powered": "false" + } + }, + { + "id": 1082, + "properties": { + "instrument": "iron_xylophone", + "note": "22", + "powered": "true" + } + }, + { + "id": 1083, + "properties": { + "instrument": "iron_xylophone", + "note": "22", + "powered": "false" + } + }, + { + "id": 1084, + "properties": { + "instrument": "iron_xylophone", + "note": "23", + "powered": "true" + } + }, + { + "id": 1085, + "properties": { + "instrument": "iron_xylophone", + "note": "23", + "powered": "false" + } + }, + { + "id": 1086, + "properties": { + "instrument": "iron_xylophone", + "note": "24", + "powered": "true" + } + }, + { + "id": 1087, + "properties": { + "instrument": "iron_xylophone", + "note": "24", + "powered": "false" + } + }, + { + "id": 1088, + "properties": { + "instrument": "cow_bell", + "note": "0", + "powered": "true" + } + }, + { + "id": 1089, + "properties": { + "instrument": "cow_bell", + "note": "0", + "powered": "false" + } + }, + { + "id": 1090, + "properties": { + "instrument": "cow_bell", + "note": "1", + "powered": "true" + } + }, + { + "id": 1091, + "properties": { + "instrument": "cow_bell", + "note": "1", + "powered": "false" + } + }, + { + "id": 1092, + "properties": { + "instrument": "cow_bell", + "note": "2", + "powered": "true" + } + }, + { + "id": 1093, + "properties": { + "instrument": "cow_bell", + "note": "2", + "powered": "false" + } + }, + { + "id": 1094, + "properties": { + "instrument": "cow_bell", + "note": "3", + "powered": "true" + } + }, + { + "id": 1095, + "properties": { + "instrument": "cow_bell", + "note": "3", + "powered": "false" + } + }, + { + "id": 1096, + "properties": { + "instrument": "cow_bell", + "note": "4", + "powered": "true" + } + }, + { + "id": 1097, + "properties": { + "instrument": "cow_bell", + "note": "4", + "powered": "false" + } + }, + { + "id": 1098, + "properties": { + "instrument": "cow_bell", + "note": "5", + "powered": "true" + } + }, + { + "id": 1099, + "properties": { + "instrument": "cow_bell", + "note": "5", + "powered": "false" + } + }, + { + "id": 1100, + "properties": { + "instrument": "cow_bell", + "note": "6", + "powered": "true" + } + }, + { + "id": 1101, + "properties": { + "instrument": "cow_bell", + "note": "6", + "powered": "false" + } + }, + { + "id": 1102, + "properties": { + "instrument": "cow_bell", + "note": "7", + "powered": "true" + } + }, + { + "id": 1103, + "properties": { + "instrument": "cow_bell", + "note": "7", + "powered": "false" + } + }, + { + "id": 1104, + "properties": { + "instrument": "cow_bell", + "note": "8", + "powered": "true" + } + }, + { + "id": 1105, + "properties": { + "instrument": "cow_bell", + "note": "8", + "powered": "false" + } + }, + { + "id": 1106, + "properties": { + "instrument": "cow_bell", + "note": "9", + "powered": "true" + } + }, + { + "id": 1107, + "properties": { + "instrument": "cow_bell", + "note": "9", + "powered": "false" + } + }, + { + "id": 1108, + "properties": { + "instrument": "cow_bell", + "note": "10", + "powered": "true" + } + }, + { + "id": 1109, + "properties": { + "instrument": "cow_bell", + "note": "10", + "powered": "false" + } + }, + { + "id": 1110, + "properties": { + "instrument": "cow_bell", + "note": "11", + "powered": "true" + } + }, + { + "id": 1111, + "properties": { + "instrument": "cow_bell", + "note": "11", + "powered": "false" + } + }, + { + "id": 1112, + "properties": { + "instrument": "cow_bell", + "note": "12", + "powered": "true" + } + }, + { + "id": 1113, + "properties": { + "instrument": "cow_bell", + "note": "12", + "powered": "false" + } + }, + { + "id": 1114, + "properties": { + "instrument": "cow_bell", + "note": "13", + "powered": "true" + } + }, + { + "id": 1115, + "properties": { + "instrument": "cow_bell", + "note": "13", + "powered": "false" + } + }, + { + "id": 1116, + "properties": { + "instrument": "cow_bell", + "note": "14", + "powered": "true" + } + }, + { + "id": 1117, + "properties": { + "instrument": "cow_bell", + "note": "14", + "powered": "false" + } + }, + { + "id": 1118, + "properties": { + "instrument": "cow_bell", + "note": "15", + "powered": "true" + } + }, + { + "id": 1119, + "properties": { + "instrument": "cow_bell", + "note": "15", + "powered": "false" + } + }, + { + "id": 1120, + "properties": { + "instrument": "cow_bell", + "note": "16", + "powered": "true" + } + }, + { + "id": 1121, + "properties": { + "instrument": "cow_bell", + "note": "16", + "powered": "false" + } + }, + { + "id": 1122, + "properties": { + "instrument": "cow_bell", + "note": "17", + "powered": "true" + } + }, + { + "id": 1123, + "properties": { + "instrument": "cow_bell", + "note": "17", + "powered": "false" + } + }, + { + "id": 1124, + "properties": { + "instrument": "cow_bell", + "note": "18", + "powered": "true" + } + }, + { + "id": 1125, + "properties": { + "instrument": "cow_bell", + "note": "18", + "powered": "false" + } + }, + { + "id": 1126, + "properties": { + "instrument": "cow_bell", + "note": "19", + "powered": "true" + } + }, + { + "id": 1127, + "properties": { + "instrument": "cow_bell", + "note": "19", + "powered": "false" + } + }, + { + "id": 1128, + "properties": { + "instrument": "cow_bell", + "note": "20", + "powered": "true" + } + }, + { + "id": 1129, + "properties": { + "instrument": "cow_bell", + "note": "20", + "powered": "false" + } + }, + { + "id": 1130, + "properties": { + "instrument": "cow_bell", + "note": "21", + "powered": "true" + } + }, + { + "id": 1131, + "properties": { + "instrument": "cow_bell", + "note": "21", + "powered": "false" + } + }, + { + "id": 1132, + "properties": { + "instrument": "cow_bell", + "note": "22", + "powered": "true" + } + }, + { + "id": 1133, + "properties": { + "instrument": "cow_bell", + "note": "22", + "powered": "false" + } + }, + { + "id": 1134, + "properties": { + "instrument": "cow_bell", + "note": "23", + "powered": "true" + } + }, + { + "id": 1135, + "properties": { + "instrument": "cow_bell", + "note": "23", + "powered": "false" + } + }, + { + "id": 1136, + "properties": { + "instrument": "cow_bell", + "note": "24", + "powered": "true" + } + }, + { + "id": 1137, + "properties": { + "instrument": "cow_bell", + "note": "24", + "powered": "false" + } + }, + { + "id": 1138, + "properties": { + "instrument": "didgeridoo", + "note": "0", + "powered": "true" + } + }, + { + "id": 1139, + "properties": { + "instrument": "didgeridoo", + "note": "0", + "powered": "false" + } + }, + { + "id": 1140, + "properties": { + "instrument": "didgeridoo", + "note": "1", + "powered": "true" + } + }, + { + "id": 1141, + "properties": { + "instrument": "didgeridoo", + "note": "1", + "powered": "false" + } + }, + { + "id": 1142, + "properties": { + "instrument": "didgeridoo", + "note": "2", + "powered": "true" + } + }, + { + "id": 1143, + "properties": { + "instrument": "didgeridoo", + "note": "2", + "powered": "false" + } + }, + { + "id": 1144, + "properties": { + "instrument": "didgeridoo", + "note": "3", + "powered": "true" + } + }, + { + "id": 1145, + "properties": { + "instrument": "didgeridoo", + "note": "3", + "powered": "false" + } + }, + { + "id": 1146, + "properties": { + "instrument": "didgeridoo", + "note": "4", + "powered": "true" + } + }, + { + "id": 1147, + "properties": { + "instrument": "didgeridoo", + "note": "4", + "powered": "false" + } + }, + { + "id": 1148, + "properties": { + "instrument": "didgeridoo", + "note": "5", + "powered": "true" + } + }, + { + "id": 1149, + "properties": { + "instrument": "didgeridoo", + "note": "5", + "powered": "false" + } + }, + { + "id": 1150, + "properties": { + "instrument": "didgeridoo", + "note": "6", + "powered": "true" + } + }, + { + "id": 1151, + "properties": { + "instrument": "didgeridoo", + "note": "6", + "powered": "false" + } + }, + { + "id": 1152, + "properties": { + "instrument": "didgeridoo", + "note": "7", + "powered": "true" + } + }, + { + "id": 1153, + "properties": { + "instrument": "didgeridoo", + "note": "7", + "powered": "false" + } + }, + { + "id": 1154, + "properties": { + "instrument": "didgeridoo", + "note": "8", + "powered": "true" + } + }, + { + "id": 1155, + "properties": { + "instrument": "didgeridoo", + "note": "8", + "powered": "false" + } + }, + { + "id": 1156, + "properties": { + "instrument": "didgeridoo", + "note": "9", + "powered": "true" + } + }, + { + "id": 1157, + "properties": { + "instrument": "didgeridoo", + "note": "9", + "powered": "false" + } + }, + { + "id": 1158, + "properties": { + "instrument": "didgeridoo", + "note": "10", + "powered": "true" + } + }, + { + "id": 1159, + "properties": { + "instrument": "didgeridoo", + "note": "10", + "powered": "false" + } + }, + { + "id": 1160, + "properties": { + "instrument": "didgeridoo", + "note": "11", + "powered": "true" + } + }, + { + "id": 1161, + "properties": { + "instrument": "didgeridoo", + "note": "11", + "powered": "false" + } + }, + { + "id": 1162, + "properties": { + "instrument": "didgeridoo", + "note": "12", + "powered": "true" + } + }, + { + "id": 1163, + "properties": { + "instrument": "didgeridoo", + "note": "12", + "powered": "false" + } + }, + { + "id": 1164, + "properties": { + "instrument": "didgeridoo", + "note": "13", + "powered": "true" + } + }, + { + "id": 1165, + "properties": { + "instrument": "didgeridoo", + "note": "13", + "powered": "false" + } + }, + { + "id": 1166, + "properties": { + "instrument": "didgeridoo", + "note": "14", + "powered": "true" + } + }, + { + "id": 1167, + "properties": { + "instrument": "didgeridoo", + "note": "14", + "powered": "false" + } + }, + { + "id": 1168, + "properties": { + "instrument": "didgeridoo", + "note": "15", + "powered": "true" + } + }, + { + "id": 1169, + "properties": { + "instrument": "didgeridoo", + "note": "15", + "powered": "false" + } + }, + { + "id": 1170, + "properties": { + "instrument": "didgeridoo", + "note": "16", + "powered": "true" + } + }, + { + "id": 1171, + "properties": { + "instrument": "didgeridoo", + "note": "16", + "powered": "false" + } + }, + { + "id": 1172, + "properties": { + "instrument": "didgeridoo", + "note": "17", + "powered": "true" + } + }, + { + "id": 1173, + "properties": { + "instrument": "didgeridoo", + "note": "17", + "powered": "false" + } + }, + { + "id": 1174, + "properties": { + "instrument": "didgeridoo", + "note": "18", + "powered": "true" + } + }, + { + "id": 1175, + "properties": { + "instrument": "didgeridoo", + "note": "18", + "powered": "false" + } + }, + { + "id": 1176, + "properties": { + "instrument": "didgeridoo", + "note": "19", + "powered": "true" + } + }, + { + "id": 1177, + "properties": { + "instrument": "didgeridoo", + "note": "19", + "powered": "false" + } + }, + { + "id": 1178, + "properties": { + "instrument": "didgeridoo", + "note": "20", + "powered": "true" + } + }, + { + "id": 1179, + "properties": { + "instrument": "didgeridoo", + "note": "20", + "powered": "false" + } + }, + { + "id": 1180, + "properties": { + "instrument": "didgeridoo", + "note": "21", + "powered": "true" + } + }, + { + "id": 1181, + "properties": { + "instrument": "didgeridoo", + "note": "21", + "powered": "false" + } + }, + { + "id": 1182, + "properties": { + "instrument": "didgeridoo", + "note": "22", + "powered": "true" + } + }, + { + "id": 1183, + "properties": { + "instrument": "didgeridoo", + "note": "22", + "powered": "false" + } + }, + { + "id": 1184, + "properties": { + "instrument": "didgeridoo", + "note": "23", + "powered": "true" + } + }, + { + "id": 1185, + "properties": { + "instrument": "didgeridoo", + "note": "23", + "powered": "false" + } + }, + { + "id": 1186, + "properties": { + "instrument": "didgeridoo", + "note": "24", + "powered": "true" + } + }, + { + "id": 1187, + "properties": { + "instrument": "didgeridoo", + "note": "24", + "powered": "false" + } + }, + { + "id": 1188, + "properties": { + "instrument": "bit", + "note": "0", + "powered": "true" + } + }, + { + "id": 1189, + "properties": { + "instrument": "bit", + "note": "0", + "powered": "false" + } + }, + { + "id": 1190, + "properties": { + "instrument": "bit", + "note": "1", + "powered": "true" + } + }, + { + "id": 1191, + "properties": { + "instrument": "bit", + "note": "1", + "powered": "false" + } + }, + { + "id": 1192, + "properties": { + "instrument": "bit", + "note": "2", + "powered": "true" + } + }, + { + "id": 1193, + "properties": { + "instrument": "bit", + "note": "2", + "powered": "false" + } + }, + { + "id": 1194, + "properties": { + "instrument": "bit", + "note": "3", + "powered": "true" + } + }, + { + "id": 1195, + "properties": { + "instrument": "bit", + "note": "3", + "powered": "false" + } + }, + { + "id": 1196, + "properties": { + "instrument": "bit", + "note": "4", + "powered": "true" + } + }, + { + "id": 1197, + "properties": { + "instrument": "bit", + "note": "4", + "powered": "false" + } + }, + { + "id": 1198, + "properties": { + "instrument": "bit", + "note": "5", + "powered": "true" + } + }, + { + "id": 1199, + "properties": { + "instrument": "bit", + "note": "5", + "powered": "false" + } + }, + { + "id": 1200, + "properties": { + "instrument": "bit", + "note": "6", + "powered": "true" + } + }, + { + "id": 1201, + "properties": { + "instrument": "bit", + "note": "6", + "powered": "false" + } + }, + { + "id": 1202, + "properties": { + "instrument": "bit", + "note": "7", + "powered": "true" + } + }, + { + "id": 1203, + "properties": { + "instrument": "bit", + "note": "7", + "powered": "false" + } + }, + { + "id": 1204, + "properties": { + "instrument": "bit", + "note": "8", + "powered": "true" + } + }, + { + "id": 1205, + "properties": { + "instrument": "bit", + "note": "8", + "powered": "false" + } + }, + { + "id": 1206, + "properties": { + "instrument": "bit", + "note": "9", + "powered": "true" + } + }, + { + "id": 1207, + "properties": { + "instrument": "bit", + "note": "9", + "powered": "false" + } + }, + { + "id": 1208, + "properties": { + "instrument": "bit", + "note": "10", + "powered": "true" + } + }, + { + "id": 1209, + "properties": { + "instrument": "bit", + "note": "10", + "powered": "false" + } + }, + { + "id": 1210, + "properties": { + "instrument": "bit", + "note": "11", + "powered": "true" + } + }, + { + "id": 1211, + "properties": { + "instrument": "bit", + "note": "11", + "powered": "false" + } + }, + { + "id": 1212, + "properties": { + "instrument": "bit", + "note": "12", + "powered": "true" + } + }, + { + "id": 1213, + "properties": { + "instrument": "bit", + "note": "12", + "powered": "false" + } + }, + { + "id": 1214, + "properties": { + "instrument": "bit", + "note": "13", + "powered": "true" + } + }, + { + "id": 1215, + "properties": { + "instrument": "bit", + "note": "13", + "powered": "false" + } + }, + { + "id": 1216, + "properties": { + "instrument": "bit", + "note": "14", + "powered": "true" + } + }, + { + "id": 1217, + "properties": { + "instrument": "bit", + "note": "14", + "powered": "false" + } + }, + { + "id": 1218, + "properties": { + "instrument": "bit", + "note": "15", + "powered": "true" + } + }, + { + "id": 1219, + "properties": { + "instrument": "bit", + "note": "15", + "powered": "false" + } + }, + { + "id": 1220, + "properties": { + "instrument": "bit", + "note": "16", + "powered": "true" + } + }, + { + "id": 1221, + "properties": { + "instrument": "bit", + "note": "16", + "powered": "false" + } + }, + { + "id": 1222, + "properties": { + "instrument": "bit", + "note": "17", + "powered": "true" + } + }, + { + "id": 1223, + "properties": { + "instrument": "bit", + "note": "17", + "powered": "false" + } + }, + { + "id": 1224, + "properties": { + "instrument": "bit", + "note": "18", + "powered": "true" + } + }, + { + "id": 1225, + "properties": { + "instrument": "bit", + "note": "18", + "powered": "false" + } + }, + { + "id": 1226, + "properties": { + "instrument": "bit", + "note": "19", + "powered": "true" + } + }, + { + "id": 1227, + "properties": { + "instrument": "bit", + "note": "19", + "powered": "false" + } + }, + { + "id": 1228, + "properties": { + "instrument": "bit", + "note": "20", + "powered": "true" + } + }, + { + "id": 1229, + "properties": { + "instrument": "bit", + "note": "20", + "powered": "false" + } + }, + { + "id": 1230, + "properties": { + "instrument": "bit", + "note": "21", + "powered": "true" + } + }, + { + "id": 1231, + "properties": { + "instrument": "bit", + "note": "21", + "powered": "false" + } + }, + { + "id": 1232, + "properties": { + "instrument": "bit", + "note": "22", + "powered": "true" + } + }, + { + "id": 1233, + "properties": { + "instrument": "bit", + "note": "22", + "powered": "false" + } + }, + { + "id": 1234, + "properties": { + "instrument": "bit", + "note": "23", + "powered": "true" + } + }, + { + "id": 1235, + "properties": { + "instrument": "bit", + "note": "23", + "powered": "false" + } + }, + { + "id": 1236, + "properties": { + "instrument": "bit", + "note": "24", + "powered": "true" + } + }, + { + "id": 1237, + "properties": { + "instrument": "bit", + "note": "24", + "powered": "false" + } + }, + { + "id": 1238, + "properties": { + "instrument": "banjo", + "note": "0", + "powered": "true" + } + }, + { + "id": 1239, + "properties": { + "instrument": "banjo", + "note": "0", + "powered": "false" + } + }, + { + "id": 1240, + "properties": { + "instrument": "banjo", + "note": "1", + "powered": "true" + } + }, + { + "id": 1241, + "properties": { + "instrument": "banjo", + "note": "1", + "powered": "false" + } + }, + { + "id": 1242, + "properties": { + "instrument": "banjo", + "note": "2", + "powered": "true" + } + }, + { + "id": 1243, + "properties": { + "instrument": "banjo", + "note": "2", + "powered": "false" + } + }, + { + "id": 1244, + "properties": { + "instrument": "banjo", + "note": "3", + "powered": "true" + } + }, + { + "id": 1245, + "properties": { + "instrument": "banjo", + "note": "3", + "powered": "false" + } + }, + { + "id": 1246, + "properties": { + "instrument": "banjo", + "note": "4", + "powered": "true" + } + }, + { + "id": 1247, + "properties": { + "instrument": "banjo", + "note": "4", + "powered": "false" + } + }, + { + "id": 1248, + "properties": { + "instrument": "banjo", + "note": "5", + "powered": "true" + } + }, + { + "id": 1249, + "properties": { + "instrument": "banjo", + "note": "5", + "powered": "false" + } + }, + { + "id": 1250, + "properties": { + "instrument": "banjo", + "note": "6", + "powered": "true" + } + }, + { + "id": 1251, + "properties": { + "instrument": "banjo", + "note": "6", + "powered": "false" + } + }, + { + "id": 1252, + "properties": { + "instrument": "banjo", + "note": "7", + "powered": "true" + } + }, + { + "id": 1253, + "properties": { + "instrument": "banjo", + "note": "7", + "powered": "false" + } + }, + { + "id": 1254, + "properties": { + "instrument": "banjo", + "note": "8", + "powered": "true" + } + }, + { + "id": 1255, + "properties": { + "instrument": "banjo", + "note": "8", + "powered": "false" + } + }, + { + "id": 1256, + "properties": { + "instrument": "banjo", + "note": "9", + "powered": "true" + } + }, + { + "id": 1257, + "properties": { + "instrument": "banjo", + "note": "9", + "powered": "false" + } + }, + { + "id": 1258, + "properties": { + "instrument": "banjo", + "note": "10", + "powered": "true" + } + }, + { + "id": 1259, + "properties": { + "instrument": "banjo", + "note": "10", + "powered": "false" + } + }, + { + "id": 1260, + "properties": { + "instrument": "banjo", + "note": "11", + "powered": "true" + } + }, + { + "id": 1261, + "properties": { + "instrument": "banjo", + "note": "11", + "powered": "false" + } + }, + { + "id": 1262, + "properties": { + "instrument": "banjo", + "note": "12", + "powered": "true" + } + }, + { + "id": 1263, + "properties": { + "instrument": "banjo", + "note": "12", + "powered": "false" + } + }, + { + "id": 1264, + "properties": { + "instrument": "banjo", + "note": "13", + "powered": "true" + } + }, + { + "id": 1265, + "properties": { + "instrument": "banjo", + "note": "13", + "powered": "false" + } + }, + { + "id": 1266, + "properties": { + "instrument": "banjo", + "note": "14", + "powered": "true" + } + }, + { + "id": 1267, + "properties": { + "instrument": "banjo", + "note": "14", + "powered": "false" + } + }, + { + "id": 1268, + "properties": { + "instrument": "banjo", + "note": "15", + "powered": "true" + } + }, + { + "id": 1269, + "properties": { + "instrument": "banjo", + "note": "15", + "powered": "false" + } + }, + { + "id": 1270, + "properties": { + "instrument": "banjo", + "note": "16", + "powered": "true" + } + }, + { + "id": 1271, + "properties": { + "instrument": "banjo", + "note": "16", + "powered": "false" + } + }, + { + "id": 1272, + "properties": { + "instrument": "banjo", + "note": "17", + "powered": "true" + } + }, + { + "id": 1273, + "properties": { + "instrument": "banjo", + "note": "17", + "powered": "false" + } + }, + { + "id": 1274, + "properties": { + "instrument": "banjo", + "note": "18", + "powered": "true" + } + }, + { + "id": 1275, + "properties": { + "instrument": "banjo", + "note": "18", + "powered": "false" + } + }, + { + "id": 1276, + "properties": { + "instrument": "banjo", + "note": "19", + "powered": "true" + } + }, + { + "id": 1277, + "properties": { + "instrument": "banjo", + "note": "19", + "powered": "false" + } + }, + { + "id": 1278, + "properties": { + "instrument": "banjo", + "note": "20", + "powered": "true" + } + }, + { + "id": 1279, + "properties": { + "instrument": "banjo", + "note": "20", + "powered": "false" + } + }, + { + "id": 1280, + "properties": { + "instrument": "banjo", + "note": "21", + "powered": "true" + } + }, + { + "id": 1281, + "properties": { + "instrument": "banjo", + "note": "21", + "powered": "false" + } + }, + { + "id": 1282, + "properties": { + "instrument": "banjo", + "note": "22", + "powered": "true" + } + }, + { + "id": 1283, + "properties": { + "instrument": "banjo", + "note": "22", + "powered": "false" + } + }, + { + "id": 1284, + "properties": { + "instrument": "banjo", + "note": "23", + "powered": "true" + } + }, + { + "id": 1285, + "properties": { + "instrument": "banjo", + "note": "23", + "powered": "false" + } + }, + { + "id": 1286, + "properties": { + "instrument": "banjo", + "note": "24", + "powered": "true" + } + }, + { + "id": 1287, + "properties": { + "instrument": "banjo", + "note": "24", + "powered": "false" + } + }, + { + "id": 1288, + "properties": { + "instrument": "pling", + "note": "0", + "powered": "true" + } + }, + { + "id": 1289, + "properties": { + "instrument": "pling", + "note": "0", + "powered": "false" + } + }, + { + "id": 1290, + "properties": { + "instrument": "pling", + "note": "1", + "powered": "true" + } + }, + { + "id": 1291, + "properties": { + "instrument": "pling", + "note": "1", + "powered": "false" + } + }, + { + "id": 1292, + "properties": { + "instrument": "pling", + "note": "2", + "powered": "true" + } + }, + { + "id": 1293, + "properties": { + "instrument": "pling", + "note": "2", + "powered": "false" + } + }, + { + "id": 1294, + "properties": { + "instrument": "pling", + "note": "3", + "powered": "true" + } + }, + { + "id": 1295, + "properties": { + "instrument": "pling", + "note": "3", + "powered": "false" + } + }, + { + "id": 1296, + "properties": { + "instrument": "pling", + "note": "4", + "powered": "true" + } + }, + { + "id": 1297, + "properties": { + "instrument": "pling", + "note": "4", + "powered": "false" + } + }, + { + "id": 1298, + "properties": { + "instrument": "pling", + "note": "5", + "powered": "true" + } + }, + { + "id": 1299, + "properties": { + "instrument": "pling", + "note": "5", + "powered": "false" + } + }, + { + "id": 1300, + "properties": { + "instrument": "pling", + "note": "6", + "powered": "true" + } + }, + { + "id": 1301, + "properties": { + "instrument": "pling", + "note": "6", + "powered": "false" + } + }, + { + "id": 1302, + "properties": { + "instrument": "pling", + "note": "7", + "powered": "true" + } + }, + { + "id": 1303, + "properties": { + "instrument": "pling", + "note": "7", + "powered": "false" + } + }, + { + "id": 1304, + "properties": { + "instrument": "pling", + "note": "8", + "powered": "true" + } + }, + { + "id": 1305, + "properties": { + "instrument": "pling", + "note": "8", + "powered": "false" + } + }, + { + "id": 1306, + "properties": { + "instrument": "pling", + "note": "9", + "powered": "true" + } + }, + { + "id": 1307, + "properties": { + "instrument": "pling", + "note": "9", + "powered": "false" + } + }, + { + "id": 1308, + "properties": { + "instrument": "pling", + "note": "10", + "powered": "true" + } + }, + { + "id": 1309, + "properties": { + "instrument": "pling", + "note": "10", + "powered": "false" + } + }, + { + "id": 1310, + "properties": { + "instrument": "pling", + "note": "11", + "powered": "true" + } + }, + { + "id": 1311, + "properties": { + "instrument": "pling", + "note": "11", + "powered": "false" + } + }, + { + "id": 1312, + "properties": { + "instrument": "pling", + "note": "12", + "powered": "true" + } + }, + { + "id": 1313, + "properties": { + "instrument": "pling", + "note": "12", + "powered": "false" + } + }, + { + "id": 1314, + "properties": { + "instrument": "pling", + "note": "13", + "powered": "true" + } + }, + { + "id": 1315, + "properties": { + "instrument": "pling", + "note": "13", + "powered": "false" + } + }, + { + "id": 1316, + "properties": { + "instrument": "pling", + "note": "14", + "powered": "true" + } + }, + { + "id": 1317, + "properties": { + "instrument": "pling", + "note": "14", + "powered": "false" + } + }, + { + "id": 1318, + "properties": { + "instrument": "pling", + "note": "15", + "powered": "true" + } + }, + { + "id": 1319, + "properties": { + "instrument": "pling", + "note": "15", + "powered": "false" + } + }, + { + "id": 1320, + "properties": { + "instrument": "pling", + "note": "16", + "powered": "true" + } + }, + { + "id": 1321, + "properties": { + "instrument": "pling", + "note": "16", + "powered": "false" + } + }, + { + "id": 1322, + "properties": { + "instrument": "pling", + "note": "17", + "powered": "true" + } + }, + { + "id": 1323, + "properties": { + "instrument": "pling", + "note": "17", + "powered": "false" + } + }, + { + "id": 1324, + "properties": { + "instrument": "pling", + "note": "18", + "powered": "true" + } + }, + { + "id": 1325, + "properties": { + "instrument": "pling", + "note": "18", + "powered": "false" + } + }, + { + "id": 1326, + "properties": { + "instrument": "pling", + "note": "19", + "powered": "true" + } + }, + { + "id": 1327, + "properties": { + "instrument": "pling", + "note": "19", + "powered": "false" + } + }, + { + "id": 1328, + "properties": { + "instrument": "pling", + "note": "20", + "powered": "true" + } + }, + { + "id": 1329, + "properties": { + "instrument": "pling", + "note": "20", + "powered": "false" + } + }, + { + "id": 1330, + "properties": { + "instrument": "pling", + "note": "21", + "powered": "true" + } + }, + { + "id": 1331, + "properties": { + "instrument": "pling", + "note": "21", + "powered": "false" + } + }, + { + "id": 1332, + "properties": { + "instrument": "pling", + "note": "22", + "powered": "true" + } + }, + { + "id": 1333, + "properties": { + "instrument": "pling", + "note": "22", + "powered": "false" + } + }, + { + "id": 1334, + "properties": { + "instrument": "pling", + "note": "23", + "powered": "true" + } + }, + { + "id": 1335, + "properties": { + "instrument": "pling", + "note": "23", + "powered": "false" + } + }, + { + "id": 1336, + "properties": { + "instrument": "pling", + "note": "24", + "powered": "true" + } + }, + { + "id": 1337, + "properties": { + "instrument": "pling", + "note": "24", + "powered": "false" + } + }, + { + "id": 1338, + "properties": { + "instrument": "zombie", + "note": "0", + "powered": "true" + } + }, + { + "id": 1339, + "properties": { + "instrument": "zombie", + "note": "0", + "powered": "false" + } + }, + { + "id": 1340, + "properties": { + "instrument": "zombie", + "note": "1", + "powered": "true" + } + }, + { + "id": 1341, + "properties": { + "instrument": "zombie", + "note": "1", + "powered": "false" + } + }, + { + "id": 1342, + "properties": { + "instrument": "zombie", + "note": "2", + "powered": "true" + } + }, + { + "id": 1343, + "properties": { + "instrument": "zombie", + "note": "2", + "powered": "false" + } + }, + { + "id": 1344, + "properties": { + "instrument": "zombie", + "note": "3", + "powered": "true" + } + }, + { + "id": 1345, + "properties": { + "instrument": "zombie", + "note": "3", + "powered": "false" + } + }, + { + "id": 1346, + "properties": { + "instrument": "zombie", + "note": "4", + "powered": "true" + } + }, + { + "id": 1347, + "properties": { + "instrument": "zombie", + "note": "4", + "powered": "false" + } + }, + { + "id": 1348, + "properties": { + "instrument": "zombie", + "note": "5", + "powered": "true" + } + }, + { + "id": 1349, + "properties": { + "instrument": "zombie", + "note": "5", + "powered": "false" + } + }, + { + "id": 1350, + "properties": { + "instrument": "zombie", + "note": "6", + "powered": "true" + } + }, + { + "id": 1351, + "properties": { + "instrument": "zombie", + "note": "6", + "powered": "false" + } + }, + { + "id": 1352, + "properties": { + "instrument": "zombie", + "note": "7", + "powered": "true" + } + }, + { + "id": 1353, + "properties": { + "instrument": "zombie", + "note": "7", + "powered": "false" + } + }, + { + "id": 1354, + "properties": { + "instrument": "zombie", + "note": "8", + "powered": "true" + } + }, + { + "id": 1355, + "properties": { + "instrument": "zombie", + "note": "8", + "powered": "false" + } + }, + { + "id": 1356, + "properties": { + "instrument": "zombie", + "note": "9", + "powered": "true" + } + }, + { + "id": 1357, + "properties": { + "instrument": "zombie", + "note": "9", + "powered": "false" + } + }, + { + "id": 1358, + "properties": { + "instrument": "zombie", + "note": "10", + "powered": "true" + } + }, + { + "id": 1359, + "properties": { + "instrument": "zombie", + "note": "10", + "powered": "false" + } + }, + { + "id": 1360, + "properties": { + "instrument": "zombie", + "note": "11", + "powered": "true" + } + }, + { + "id": 1361, + "properties": { + "instrument": "zombie", + "note": "11", + "powered": "false" + } + }, + { + "id": 1362, + "properties": { + "instrument": "zombie", + "note": "12", + "powered": "true" + } + }, + { + "id": 1363, + "properties": { + "instrument": "zombie", + "note": "12", + "powered": "false" + } + }, + { + "id": 1364, + "properties": { + "instrument": "zombie", + "note": "13", + "powered": "true" + } + }, + { + "id": 1365, + "properties": { + "instrument": "zombie", + "note": "13", + "powered": "false" + } + }, + { + "id": 1366, + "properties": { + "instrument": "zombie", + "note": "14", + "powered": "true" + } + }, + { + "id": 1367, + "properties": { + "instrument": "zombie", + "note": "14", + "powered": "false" + } + }, + { + "id": 1368, + "properties": { + "instrument": "zombie", + "note": "15", + "powered": "true" + } + }, + { + "id": 1369, + "properties": { + "instrument": "zombie", + "note": "15", + "powered": "false" + } + }, + { + "id": 1370, + "properties": { + "instrument": "zombie", + "note": "16", + "powered": "true" + } + }, + { + "id": 1371, + "properties": { + "instrument": "zombie", + "note": "16", + "powered": "false" + } + }, + { + "id": 1372, + "properties": { + "instrument": "zombie", + "note": "17", + "powered": "true" + } + }, + { + "id": 1373, + "properties": { + "instrument": "zombie", + "note": "17", + "powered": "false" + } + }, + { + "id": 1374, + "properties": { + "instrument": "zombie", + "note": "18", + "powered": "true" + } + }, + { + "id": 1375, + "properties": { + "instrument": "zombie", + "note": "18", + "powered": "false" + } + }, + { + "id": 1376, + "properties": { + "instrument": "zombie", + "note": "19", + "powered": "true" + } + }, + { + "id": 1377, + "properties": { + "instrument": "zombie", + "note": "19", + "powered": "false" + } + }, + { + "id": 1378, + "properties": { + "instrument": "zombie", + "note": "20", + "powered": "true" + } + }, + { + "id": 1379, + "properties": { + "instrument": "zombie", + "note": "20", + "powered": "false" + } + }, + { + "id": 1380, + "properties": { + "instrument": "zombie", + "note": "21", + "powered": "true" + } + }, + { + "id": 1381, + "properties": { + "instrument": "zombie", + "note": "21", + "powered": "false" + } + }, + { + "id": 1382, + "properties": { + "instrument": "zombie", + "note": "22", + "powered": "true" + } + }, + { + "id": 1383, + "properties": { + "instrument": "zombie", + "note": "22", + "powered": "false" + } + }, + { + "id": 1384, + "properties": { + "instrument": "zombie", + "note": "23", + "powered": "true" + } + }, + { + "id": 1385, + "properties": { + "instrument": "zombie", + "note": "23", + "powered": "false" + } + }, + { + "id": 1386, + "properties": { + "instrument": "zombie", + "note": "24", + "powered": "true" + } + }, + { + "id": 1387, + "properties": { + "instrument": "zombie", + "note": "24", + "powered": "false" + } + }, + { + "id": 1388, + "properties": { + "instrument": "skeleton", + "note": "0", + "powered": "true" + } + }, + { + "id": 1389, + "properties": { + "instrument": "skeleton", + "note": "0", + "powered": "false" + } + }, + { + "id": 1390, + "properties": { + "instrument": "skeleton", + "note": "1", + "powered": "true" + } + }, + { + "id": 1391, + "properties": { + "instrument": "skeleton", + "note": "1", + "powered": "false" + } + }, + { + "id": 1392, + "properties": { + "instrument": "skeleton", + "note": "2", + "powered": "true" + } + }, + { + "id": 1393, + "properties": { + "instrument": "skeleton", + "note": "2", + "powered": "false" + } + }, + { + "id": 1394, + "properties": { + "instrument": "skeleton", + "note": "3", + "powered": "true" + } + }, + { + "id": 1395, + "properties": { + "instrument": "skeleton", + "note": "3", + "powered": "false" + } + }, + { + "id": 1396, + "properties": { + "instrument": "skeleton", + "note": "4", + "powered": "true" + } + }, + { + "id": 1397, + "properties": { + "instrument": "skeleton", + "note": "4", + "powered": "false" + } + }, + { + "id": 1398, + "properties": { + "instrument": "skeleton", + "note": "5", + "powered": "true" + } + }, + { + "id": 1399, + "properties": { + "instrument": "skeleton", + "note": "5", + "powered": "false" + } + }, + { + "id": 1400, + "properties": { + "instrument": "skeleton", + "note": "6", + "powered": "true" + } + }, + { + "id": 1401, + "properties": { + "instrument": "skeleton", + "note": "6", + "powered": "false" + } + }, + { + "id": 1402, + "properties": { + "instrument": "skeleton", + "note": "7", + "powered": "true" + } + }, + { + "id": 1403, + "properties": { + "instrument": "skeleton", + "note": "7", + "powered": "false" + } + }, + { + "id": 1404, + "properties": { + "instrument": "skeleton", + "note": "8", + "powered": "true" + } + }, + { + "id": 1405, + "properties": { + "instrument": "skeleton", + "note": "8", + "powered": "false" + } + }, + { + "id": 1406, + "properties": { + "instrument": "skeleton", + "note": "9", + "powered": "true" + } + }, + { + "id": 1407, + "properties": { + "instrument": "skeleton", + "note": "9", + "powered": "false" + } + }, + { + "id": 1408, + "properties": { + "instrument": "skeleton", + "note": "10", + "powered": "true" + } + }, + { + "id": 1409, + "properties": { + "instrument": "skeleton", + "note": "10", + "powered": "false" + } + }, + { + "id": 1410, + "properties": { + "instrument": "skeleton", + "note": "11", + "powered": "true" + } + }, + { + "id": 1411, + "properties": { + "instrument": "skeleton", + "note": "11", + "powered": "false" + } + }, + { + "id": 1412, + "properties": { + "instrument": "skeleton", + "note": "12", + "powered": "true" + } + }, + { + "id": 1413, + "properties": { + "instrument": "skeleton", + "note": "12", + "powered": "false" + } + }, + { + "id": 1414, + "properties": { + "instrument": "skeleton", + "note": "13", + "powered": "true" + } + }, + { + "id": 1415, + "properties": { + "instrument": "skeleton", + "note": "13", + "powered": "false" + } + }, + { + "id": 1416, + "properties": { + "instrument": "skeleton", + "note": "14", + "powered": "true" + } + }, + { + "id": 1417, + "properties": { + "instrument": "skeleton", + "note": "14", + "powered": "false" + } + }, + { + "id": 1418, + "properties": { + "instrument": "skeleton", + "note": "15", + "powered": "true" + } + }, + { + "id": 1419, + "properties": { + "instrument": "skeleton", + "note": "15", + "powered": "false" + } + }, + { + "id": 1420, + "properties": { + "instrument": "skeleton", + "note": "16", + "powered": "true" + } + }, + { + "id": 1421, + "properties": { + "instrument": "skeleton", + "note": "16", + "powered": "false" + } + }, + { + "id": 1422, + "properties": { + "instrument": "skeleton", + "note": "17", + "powered": "true" + } + }, + { + "id": 1423, + "properties": { + "instrument": "skeleton", + "note": "17", + "powered": "false" + } + }, + { + "id": 1424, + "properties": { + "instrument": "skeleton", + "note": "18", + "powered": "true" + } + }, + { + "id": 1425, + "properties": { + "instrument": "skeleton", + "note": "18", + "powered": "false" + } + }, + { + "id": 1426, + "properties": { + "instrument": "skeleton", + "note": "19", + "powered": "true" + } + }, + { + "id": 1427, + "properties": { + "instrument": "skeleton", + "note": "19", + "powered": "false" + } + }, + { + "id": 1428, + "properties": { + "instrument": "skeleton", + "note": "20", + "powered": "true" + } + }, + { + "id": 1429, + "properties": { + "instrument": "skeleton", + "note": "20", + "powered": "false" + } + }, + { + "id": 1430, + "properties": { + "instrument": "skeleton", + "note": "21", + "powered": "true" + } + }, + { + "id": 1431, + "properties": { + "instrument": "skeleton", + "note": "21", + "powered": "false" + } + }, + { + "id": 1432, + "properties": { + "instrument": "skeleton", + "note": "22", + "powered": "true" + } + }, + { + "id": 1433, + "properties": { + "instrument": "skeleton", + "note": "22", + "powered": "false" + } + }, + { + "id": 1434, + "properties": { + "instrument": "skeleton", + "note": "23", + "powered": "true" + } + }, + { + "id": 1435, + "properties": { + "instrument": "skeleton", + "note": "23", + "powered": "false" + } + }, + { + "id": 1436, + "properties": { + "instrument": "skeleton", + "note": "24", + "powered": "true" + } + }, + { + "id": 1437, + "properties": { + "instrument": "skeleton", + "note": "24", + "powered": "false" + } + }, + { + "id": 1438, + "properties": { + "instrument": "creeper", + "note": "0", + "powered": "true" + } + }, + { + "id": 1439, + "properties": { + "instrument": "creeper", + "note": "0", + "powered": "false" + } + }, + { + "id": 1440, + "properties": { + "instrument": "creeper", + "note": "1", + "powered": "true" + } + }, + { + "id": 1441, + "properties": { + "instrument": "creeper", + "note": "1", + "powered": "false" + } + }, + { + "id": 1442, + "properties": { + "instrument": "creeper", + "note": "2", + "powered": "true" + } + }, + { + "id": 1443, + "properties": { + "instrument": "creeper", + "note": "2", + "powered": "false" + } + }, + { + "id": 1444, + "properties": { + "instrument": "creeper", + "note": "3", + "powered": "true" + } + }, + { + "id": 1445, + "properties": { + "instrument": "creeper", + "note": "3", + "powered": "false" + } + }, + { + "id": 1446, + "properties": { + "instrument": "creeper", + "note": "4", + "powered": "true" + } + }, + { + "id": 1447, + "properties": { + "instrument": "creeper", + "note": "4", + "powered": "false" + } + }, + { + "id": 1448, + "properties": { + "instrument": "creeper", + "note": "5", + "powered": "true" + } + }, + { + "id": 1449, + "properties": { + "instrument": "creeper", + "note": "5", + "powered": "false" + } + }, + { + "id": 1450, + "properties": { + "instrument": "creeper", + "note": "6", + "powered": "true" + } + }, + { + "id": 1451, + "properties": { + "instrument": "creeper", + "note": "6", + "powered": "false" + } + }, + { + "id": 1452, + "properties": { + "instrument": "creeper", + "note": "7", + "powered": "true" + } + }, + { + "id": 1453, + "properties": { + "instrument": "creeper", + "note": "7", + "powered": "false" + } + }, + { + "id": 1454, + "properties": { + "instrument": "creeper", + "note": "8", + "powered": "true" + } + }, + { + "id": 1455, + "properties": { + "instrument": "creeper", + "note": "8", + "powered": "false" + } + }, + { + "id": 1456, + "properties": { + "instrument": "creeper", + "note": "9", + "powered": "true" + } + }, + { + "id": 1457, + "properties": { + "instrument": "creeper", + "note": "9", + "powered": "false" + } + }, + { + "id": 1458, + "properties": { + "instrument": "creeper", + "note": "10", + "powered": "true" + } + }, + { + "id": 1459, + "properties": { + "instrument": "creeper", + "note": "10", + "powered": "false" + } + }, + { + "id": 1460, + "properties": { + "instrument": "creeper", + "note": "11", + "powered": "true" + } + }, + { + "id": 1461, + "properties": { + "instrument": "creeper", + "note": "11", + "powered": "false" + } + }, + { + "id": 1462, + "properties": { + "instrument": "creeper", + "note": "12", + "powered": "true" + } + }, + { + "id": 1463, + "properties": { + "instrument": "creeper", + "note": "12", + "powered": "false" + } + }, + { + "id": 1464, + "properties": { + "instrument": "creeper", + "note": "13", + "powered": "true" + } + }, + { + "id": 1465, + "properties": { + "instrument": "creeper", + "note": "13", + "powered": "false" + } + }, + { + "id": 1466, + "properties": { + "instrument": "creeper", + "note": "14", + "powered": "true" + } + }, + { + "id": 1467, + "properties": { + "instrument": "creeper", + "note": "14", + "powered": "false" + } + }, + { + "id": 1468, + "properties": { + "instrument": "creeper", + "note": "15", + "powered": "true" + } + }, + { + "id": 1469, + "properties": { + "instrument": "creeper", + "note": "15", + "powered": "false" + } + }, + { + "id": 1470, + "properties": { + "instrument": "creeper", + "note": "16", + "powered": "true" + } + }, + { + "id": 1471, + "properties": { + "instrument": "creeper", + "note": "16", + "powered": "false" + } + }, + { + "id": 1472, + "properties": { + "instrument": "creeper", + "note": "17", + "powered": "true" + } + }, + { + "id": 1473, + "properties": { + "instrument": "creeper", + "note": "17", + "powered": "false" + } + }, + { + "id": 1474, + "properties": { + "instrument": "creeper", + "note": "18", + "powered": "true" + } + }, + { + "id": 1475, + "properties": { + "instrument": "creeper", + "note": "18", + "powered": "false" + } + }, + { + "id": 1476, + "properties": { + "instrument": "creeper", + "note": "19", + "powered": "true" + } + }, + { + "id": 1477, + "properties": { + "instrument": "creeper", + "note": "19", + "powered": "false" + } + }, + { + "id": 1478, + "properties": { + "instrument": "creeper", + "note": "20", + "powered": "true" + } + }, + { + "id": 1479, + "properties": { + "instrument": "creeper", + "note": "20", + "powered": "false" + } + }, + { + "id": 1480, + "properties": { + "instrument": "creeper", + "note": "21", + "powered": "true" + } + }, + { + "id": 1481, + "properties": { + "instrument": "creeper", + "note": "21", + "powered": "false" + } + }, + { + "id": 1482, + "properties": { + "instrument": "creeper", + "note": "22", + "powered": "true" + } + }, + { + "id": 1483, + "properties": { + "instrument": "creeper", + "note": "22", + "powered": "false" + } + }, + { + "id": 1484, + "properties": { + "instrument": "creeper", + "note": "23", + "powered": "true" + } + }, + { + "id": 1485, + "properties": { + "instrument": "creeper", + "note": "23", + "powered": "false" + } + }, + { + "id": 1486, + "properties": { + "instrument": "creeper", + "note": "24", + "powered": "true" + } + }, + { + "id": 1487, + "properties": { + "instrument": "creeper", + "note": "24", + "powered": "false" + } + }, + { + "id": 1488, + "properties": { + "instrument": "dragon", + "note": "0", + "powered": "true" + } + }, + { + "id": 1489, + "properties": { + "instrument": "dragon", + "note": "0", + "powered": "false" + } + }, + { + "id": 1490, + "properties": { + "instrument": "dragon", + "note": "1", + "powered": "true" + } + }, + { + "id": 1491, + "properties": { + "instrument": "dragon", + "note": "1", + "powered": "false" + } + }, + { + "id": 1492, + "properties": { + "instrument": "dragon", + "note": "2", + "powered": "true" + } + }, + { + "id": 1493, + "properties": { + "instrument": "dragon", + "note": "2", + "powered": "false" + } + }, + { + "id": 1494, + "properties": { + "instrument": "dragon", + "note": "3", + "powered": "true" + } + }, + { + "id": 1495, + "properties": { + "instrument": "dragon", + "note": "3", + "powered": "false" + } + }, + { + "id": 1496, + "properties": { + "instrument": "dragon", + "note": "4", + "powered": "true" + } + }, + { + "id": 1497, + "properties": { + "instrument": "dragon", + "note": "4", + "powered": "false" + } + }, + { + "id": 1498, + "properties": { + "instrument": "dragon", + "note": "5", + "powered": "true" + } + }, + { + "id": 1499, + "properties": { + "instrument": "dragon", + "note": "5", + "powered": "false" + } + }, + { + "id": 1500, + "properties": { + "instrument": "dragon", + "note": "6", + "powered": "true" + } + }, + { + "id": 1501, + "properties": { + "instrument": "dragon", + "note": "6", + "powered": "false" + } + }, + { + "id": 1502, + "properties": { + "instrument": "dragon", + "note": "7", + "powered": "true" + } + }, + { + "id": 1503, + "properties": { + "instrument": "dragon", + "note": "7", + "powered": "false" + } + }, + { + "id": 1504, + "properties": { + "instrument": "dragon", + "note": "8", + "powered": "true" + } + }, + { + "id": 1505, + "properties": { + "instrument": "dragon", + "note": "8", + "powered": "false" + } + }, + { + "id": 1506, + "properties": { + "instrument": "dragon", + "note": "9", + "powered": "true" + } + }, + { + "id": 1507, + "properties": { + "instrument": "dragon", + "note": "9", + "powered": "false" + } + }, + { + "id": 1508, + "properties": { + "instrument": "dragon", + "note": "10", + "powered": "true" + } + }, + { + "id": 1509, + "properties": { + "instrument": "dragon", + "note": "10", + "powered": "false" + } + }, + { + "id": 1510, + "properties": { + "instrument": "dragon", + "note": "11", + "powered": "true" + } + }, + { + "id": 1511, + "properties": { + "instrument": "dragon", + "note": "11", + "powered": "false" + } + }, + { + "id": 1512, + "properties": { + "instrument": "dragon", + "note": "12", + "powered": "true" + } + }, + { + "id": 1513, + "properties": { + "instrument": "dragon", + "note": "12", + "powered": "false" + } + }, + { + "id": 1514, + "properties": { + "instrument": "dragon", + "note": "13", + "powered": "true" + } + }, + { + "id": 1515, + "properties": { + "instrument": "dragon", + "note": "13", + "powered": "false" + } + }, + { + "id": 1516, + "properties": { + "instrument": "dragon", + "note": "14", + "powered": "true" + } + }, + { + "id": 1517, + "properties": { + "instrument": "dragon", + "note": "14", + "powered": "false" + } + }, + { + "id": 1518, + "properties": { + "instrument": "dragon", + "note": "15", + "powered": "true" + } + }, + { + "id": 1519, + "properties": { + "instrument": "dragon", + "note": "15", + "powered": "false" + } + }, + { + "id": 1520, + "properties": { + "instrument": "dragon", + "note": "16", + "powered": "true" + } + }, + { + "id": 1521, + "properties": { + "instrument": "dragon", + "note": "16", + "powered": "false" + } + }, + { + "id": 1522, + "properties": { + "instrument": "dragon", + "note": "17", + "powered": "true" + } + }, + { + "id": 1523, + "properties": { + "instrument": "dragon", + "note": "17", + "powered": "false" + } + }, + { + "id": 1524, + "properties": { + "instrument": "dragon", + "note": "18", + "powered": "true" + } + }, + { + "id": 1525, + "properties": { + "instrument": "dragon", + "note": "18", + "powered": "false" + } + }, + { + "id": 1526, + "properties": { + "instrument": "dragon", + "note": "19", + "powered": "true" + } + }, + { + "id": 1527, + "properties": { + "instrument": "dragon", + "note": "19", + "powered": "false" + } + }, + { + "id": 1528, + "properties": { + "instrument": "dragon", + "note": "20", + "powered": "true" + } + }, + { + "id": 1529, + "properties": { + "instrument": "dragon", + "note": "20", + "powered": "false" + } + }, + { + "id": 1530, + "properties": { + "instrument": "dragon", + "note": "21", + "powered": "true" + } + }, + { + "id": 1531, + "properties": { + "instrument": "dragon", + "note": "21", + "powered": "false" + } + }, + { + "id": 1532, + "properties": { + "instrument": "dragon", + "note": "22", + "powered": "true" + } + }, + { + "id": 1533, + "properties": { + "instrument": "dragon", + "note": "22", + "powered": "false" + } + }, + { + "id": 1534, + "properties": { + "instrument": "dragon", + "note": "23", + "powered": "true" + } + }, + { + "id": 1535, + "properties": { + "instrument": "dragon", + "note": "23", + "powered": "false" + } + }, + { + "id": 1536, + "properties": { + "instrument": "dragon", + "note": "24", + "powered": "true" + } + }, + { + "id": 1537, + "properties": { + "instrument": "dragon", + "note": "24", + "powered": "false" + } + }, + { + "id": 1538, + "properties": { + "instrument": "wither_skeleton", + "note": "0", + "powered": "true" + } + }, + { + "id": 1539, + "properties": { + "instrument": "wither_skeleton", + "note": "0", + "powered": "false" + } + }, + { + "id": 1540, + "properties": { + "instrument": "wither_skeleton", + "note": "1", + "powered": "true" + } + }, + { + "id": 1541, + "properties": { + "instrument": "wither_skeleton", + "note": "1", + "powered": "false" + } + }, + { + "id": 1542, + "properties": { + "instrument": "wither_skeleton", + "note": "2", + "powered": "true" + } + }, + { + "id": 1543, + "properties": { + "instrument": "wither_skeleton", + "note": "2", + "powered": "false" + } + }, + { + "id": 1544, + "properties": { + "instrument": "wither_skeleton", + "note": "3", + "powered": "true" + } + }, + { + "id": 1545, + "properties": { + "instrument": "wither_skeleton", + "note": "3", + "powered": "false" + } + }, + { + "id": 1546, + "properties": { + "instrument": "wither_skeleton", + "note": "4", + "powered": "true" + } + }, + { + "id": 1547, + "properties": { + "instrument": "wither_skeleton", + "note": "4", + "powered": "false" + } + }, + { + "id": 1548, + "properties": { + "instrument": "wither_skeleton", + "note": "5", + "powered": "true" + } + }, + { + "id": 1549, + "properties": { + "instrument": "wither_skeleton", + "note": "5", + "powered": "false" + } + }, + { + "id": 1550, + "properties": { + "instrument": "wither_skeleton", + "note": "6", + "powered": "true" + } + }, + { + "id": 1551, + "properties": { + "instrument": "wither_skeleton", + "note": "6", + "powered": "false" + } + }, + { + "id": 1552, + "properties": { + "instrument": "wither_skeleton", + "note": "7", + "powered": "true" + } + }, + { + "id": 1553, + "properties": { + "instrument": "wither_skeleton", + "note": "7", + "powered": "false" + } + }, + { + "id": 1554, + "properties": { + "instrument": "wither_skeleton", + "note": "8", + "powered": "true" + } + }, + { + "id": 1555, + "properties": { + "instrument": "wither_skeleton", + "note": "8", + "powered": "false" + } + }, + { + "id": 1556, + "properties": { + "instrument": "wither_skeleton", + "note": "9", + "powered": "true" + } + }, + { + "id": 1557, + "properties": { + "instrument": "wither_skeleton", + "note": "9", + "powered": "false" + } + }, + { + "id": 1558, + "properties": { + "instrument": "wither_skeleton", + "note": "10", + "powered": "true" + } + }, + { + "id": 1559, + "properties": { + "instrument": "wither_skeleton", + "note": "10", + "powered": "false" + } + }, + { + "id": 1560, + "properties": { + "instrument": "wither_skeleton", + "note": "11", + "powered": "true" + } + }, + { + "id": 1561, + "properties": { + "instrument": "wither_skeleton", + "note": "11", + "powered": "false" + } + }, + { + "id": 1562, + "properties": { + "instrument": "wither_skeleton", + "note": "12", + "powered": "true" + } + }, + { + "id": 1563, + "properties": { + "instrument": "wither_skeleton", + "note": "12", + "powered": "false" + } + }, + { + "id": 1564, + "properties": { + "instrument": "wither_skeleton", + "note": "13", + "powered": "true" + } + }, + { + "id": 1565, + "properties": { + "instrument": "wither_skeleton", + "note": "13", + "powered": "false" + } + }, + { + "id": 1566, + "properties": { + "instrument": "wither_skeleton", + "note": "14", + "powered": "true" + } + }, + { + "id": 1567, + "properties": { + "instrument": "wither_skeleton", + "note": "14", + "powered": "false" + } + }, + { + "id": 1568, + "properties": { + "instrument": "wither_skeleton", + "note": "15", + "powered": "true" + } + }, + { + "id": 1569, + "properties": { + "instrument": "wither_skeleton", + "note": "15", + "powered": "false" + } + }, + { + "id": 1570, + "properties": { + "instrument": "wither_skeleton", + "note": "16", + "powered": "true" + } + }, + { + "id": 1571, + "properties": { + "instrument": "wither_skeleton", + "note": "16", + "powered": "false" + } + }, + { + "id": 1572, + "properties": { + "instrument": "wither_skeleton", + "note": "17", + "powered": "true" + } + }, + { + "id": 1573, + "properties": { + "instrument": "wither_skeleton", + "note": "17", + "powered": "false" + } + }, + { + "id": 1574, + "properties": { + "instrument": "wither_skeleton", + "note": "18", + "powered": "true" + } + }, + { + "id": 1575, + "properties": { + "instrument": "wither_skeleton", + "note": "18", + "powered": "false" + } + }, + { + "id": 1576, + "properties": { + "instrument": "wither_skeleton", + "note": "19", + "powered": "true" + } + }, + { + "id": 1577, + "properties": { + "instrument": "wither_skeleton", + "note": "19", + "powered": "false" + } + }, + { + "id": 1578, + "properties": { + "instrument": "wither_skeleton", + "note": "20", + "powered": "true" + } + }, + { + "id": 1579, + "properties": { + "instrument": "wither_skeleton", + "note": "20", + "powered": "false" + } + }, + { + "id": 1580, + "properties": { + "instrument": "wither_skeleton", + "note": "21", + "powered": "true" + } + }, + { + "id": 1581, + "properties": { + "instrument": "wither_skeleton", + "note": "21", + "powered": "false" + } + }, + { + "id": 1582, + "properties": { + "instrument": "wither_skeleton", + "note": "22", + "powered": "true" + } + }, + { + "id": 1583, + "properties": { + "instrument": "wither_skeleton", + "note": "22", + "powered": "false" + } + }, + { + "id": 1584, + "properties": { + "instrument": "wither_skeleton", + "note": "23", + "powered": "true" + } + }, + { + "id": 1585, + "properties": { + "instrument": "wither_skeleton", + "note": "23", + "powered": "false" + } + }, + { + "id": 1586, + "properties": { + "instrument": "wither_skeleton", + "note": "24", + "powered": "true" + } + }, + { + "id": 1587, + "properties": { + "instrument": "wither_skeleton", + "note": "24", + "powered": "false" + } + }, + { + "id": 1588, + "properties": { + "instrument": "piglin", + "note": "0", + "powered": "true" + } + }, + { + "id": 1589, + "properties": { + "instrument": "piglin", + "note": "0", + "powered": "false" + } + }, + { + "id": 1590, + "properties": { + "instrument": "piglin", + "note": "1", + "powered": "true" + } + }, + { + "id": 1591, + "properties": { + "instrument": "piglin", + "note": "1", + "powered": "false" + } + }, + { + "id": 1592, + "properties": { + "instrument": "piglin", + "note": "2", + "powered": "true" + } + }, + { + "id": 1593, + "properties": { + "instrument": "piglin", + "note": "2", + "powered": "false" + } + }, + { + "id": 1594, + "properties": { + "instrument": "piglin", + "note": "3", + "powered": "true" + } + }, + { + "id": 1595, + "properties": { + "instrument": "piglin", + "note": "3", + "powered": "false" + } + }, + { + "id": 1596, + "properties": { + "instrument": "piglin", + "note": "4", + "powered": "true" + } + }, + { + "id": 1597, + "properties": { + "instrument": "piglin", + "note": "4", + "powered": "false" + } + }, + { + "id": 1598, + "properties": { + "instrument": "piglin", + "note": "5", + "powered": "true" + } + }, + { + "id": 1599, + "properties": { + "instrument": "piglin", + "note": "5", + "powered": "false" + } + }, + { + "id": 1600, + "properties": { + "instrument": "piglin", + "note": "6", + "powered": "true" + } + }, + { + "id": 1601, + "properties": { + "instrument": "piglin", + "note": "6", + "powered": "false" + } + }, + { + "id": 1602, + "properties": { + "instrument": "piglin", + "note": "7", + "powered": "true" + } + }, + { + "id": 1603, + "properties": { + "instrument": "piglin", + "note": "7", + "powered": "false" + } + }, + { + "id": 1604, + "properties": { + "instrument": "piglin", + "note": "8", + "powered": "true" + } + }, + { + "id": 1605, + "properties": { + "instrument": "piglin", + "note": "8", + "powered": "false" + } + }, + { + "id": 1606, + "properties": { + "instrument": "piglin", + "note": "9", + "powered": "true" + } + }, + { + "id": 1607, + "properties": { + "instrument": "piglin", + "note": "9", + "powered": "false" + } + }, + { + "id": 1608, + "properties": { + "instrument": "piglin", + "note": "10", + "powered": "true" + } + }, + { + "id": 1609, + "properties": { + "instrument": "piglin", + "note": "10", + "powered": "false" + } + }, + { + "id": 1610, + "properties": { + "instrument": "piglin", + "note": "11", + "powered": "true" + } + }, + { + "id": 1611, + "properties": { + "instrument": "piglin", + "note": "11", + "powered": "false" + } + }, + { + "id": 1612, + "properties": { + "instrument": "piglin", + "note": "12", + "powered": "true" + } + }, + { + "id": 1613, + "properties": { + "instrument": "piglin", + "note": "12", + "powered": "false" + } + }, + { + "id": 1614, + "properties": { + "instrument": "piglin", + "note": "13", + "powered": "true" + } + }, + { + "id": 1615, + "properties": { + "instrument": "piglin", + "note": "13", + "powered": "false" + } + }, + { + "id": 1616, + "properties": { + "instrument": "piglin", + "note": "14", + "powered": "true" + } + }, + { + "id": 1617, + "properties": { + "instrument": "piglin", + "note": "14", + "powered": "false" + } + }, + { + "id": 1618, + "properties": { + "instrument": "piglin", + "note": "15", + "powered": "true" + } + }, + { + "id": 1619, + "properties": { + "instrument": "piglin", + "note": "15", + "powered": "false" + } + }, + { + "id": 1620, + "properties": { + "instrument": "piglin", + "note": "16", + "powered": "true" + } + }, + { + "id": 1621, + "properties": { + "instrument": "piglin", + "note": "16", + "powered": "false" + } + }, + { + "id": 1622, + "properties": { + "instrument": "piglin", + "note": "17", + "powered": "true" + } + }, + { + "id": 1623, + "properties": { + "instrument": "piglin", + "note": "17", + "powered": "false" + } + }, + { + "id": 1624, + "properties": { + "instrument": "piglin", + "note": "18", + "powered": "true" + } + }, + { + "id": 1625, + "properties": { + "instrument": "piglin", + "note": "18", + "powered": "false" + } + }, + { + "id": 1626, + "properties": { + "instrument": "piglin", + "note": "19", + "powered": "true" + } + }, + { + "id": 1627, + "properties": { + "instrument": "piglin", + "note": "19", + "powered": "false" + } + }, + { + "id": 1628, + "properties": { + "instrument": "piglin", + "note": "20", + "powered": "true" + } + }, + { + "id": 1629, + "properties": { + "instrument": "piglin", + "note": "20", + "powered": "false" + } + }, + { + "id": 1630, + "properties": { + "instrument": "piglin", + "note": "21", + "powered": "true" + } + }, + { + "id": 1631, + "properties": { + "instrument": "piglin", + "note": "21", + "powered": "false" + } + }, + { + "id": 1632, + "properties": { + "instrument": "piglin", + "note": "22", + "powered": "true" + } + }, + { + "id": 1633, + "properties": { + "instrument": "piglin", + "note": "22", + "powered": "false" + } + }, + { + "id": 1634, + "properties": { + "instrument": "piglin", + "note": "23", + "powered": "true" + } + }, + { + "id": 1635, + "properties": { + "instrument": "piglin", + "note": "23", + "powered": "false" + } + }, + { + "id": 1636, + "properties": { + "instrument": "piglin", + "note": "24", + "powered": "true" + } + }, + { + "id": 1637, + "properties": { + "instrument": "piglin", + "note": "24", + "powered": "false" + } + }, + { + "id": 1638, + "properties": { + "instrument": "custom_head", + "note": "0", + "powered": "true" + } + }, + { + "id": 1639, + "properties": { + "instrument": "custom_head", + "note": "0", + "powered": "false" + } + }, + { + "id": 1640, + "properties": { + "instrument": "custom_head", + "note": "1", + "powered": "true" + } + }, + { + "id": 1641, + "properties": { + "instrument": "custom_head", + "note": "1", + "powered": "false" + } + }, + { + "id": 1642, + "properties": { + "instrument": "custom_head", + "note": "2", + "powered": "true" + } + }, + { + "id": 1643, + "properties": { + "instrument": "custom_head", + "note": "2", + "powered": "false" + } + }, + { + "id": 1644, + "properties": { + "instrument": "custom_head", + "note": "3", + "powered": "true" + } + }, + { + "id": 1645, + "properties": { + "instrument": "custom_head", + "note": "3", + "powered": "false" + } + }, + { + "id": 1646, + "properties": { + "instrument": "custom_head", + "note": "4", + "powered": "true" + } + }, + { + "id": 1647, + "properties": { + "instrument": "custom_head", + "note": "4", + "powered": "false" + } + }, + { + "id": 1648, + "properties": { + "instrument": "custom_head", + "note": "5", + "powered": "true" + } + }, + { + "id": 1649, + "properties": { + "instrument": "custom_head", + "note": "5", + "powered": "false" + } + }, + { + "id": 1650, + "properties": { + "instrument": "custom_head", + "note": "6", + "powered": "true" + } + }, + { + "id": 1651, + "properties": { + "instrument": "custom_head", + "note": "6", + "powered": "false" + } + }, + { + "id": 1652, + "properties": { + "instrument": "custom_head", + "note": "7", + "powered": "true" + } + }, + { + "id": 1653, + "properties": { + "instrument": "custom_head", + "note": "7", + "powered": "false" + } + }, + { + "id": 1654, + "properties": { + "instrument": "custom_head", + "note": "8", + "powered": "true" + } + }, + { + "id": 1655, + "properties": { + "instrument": "custom_head", + "note": "8", + "powered": "false" + } + }, + { + "id": 1656, + "properties": { + "instrument": "custom_head", + "note": "9", + "powered": "true" + } + }, + { + "id": 1657, + "properties": { + "instrument": "custom_head", + "note": "9", + "powered": "false" + } + }, + { + "id": 1658, + "properties": { + "instrument": "custom_head", + "note": "10", + "powered": "true" + } + }, + { + "id": 1659, + "properties": { + "instrument": "custom_head", + "note": "10", + "powered": "false" + } + }, + { + "id": 1660, + "properties": { + "instrument": "custom_head", + "note": "11", + "powered": "true" + } + }, + { + "id": 1661, + "properties": { + "instrument": "custom_head", + "note": "11", + "powered": "false" + } + }, + { + "id": 1662, + "properties": { + "instrument": "custom_head", + "note": "12", + "powered": "true" + } + }, + { + "id": 1663, + "properties": { + "instrument": "custom_head", + "note": "12", + "powered": "false" + } + }, + { + "id": 1664, + "properties": { + "instrument": "custom_head", + "note": "13", + "powered": "true" + } + }, + { + "id": 1665, + "properties": { + "instrument": "custom_head", + "note": "13", + "powered": "false" + } + }, + { + "id": 1666, + "properties": { + "instrument": "custom_head", + "note": "14", + "powered": "true" + } + }, + { + "id": 1667, + "properties": { + "instrument": "custom_head", + "note": "14", + "powered": "false" + } + }, + { + "id": 1668, + "properties": { + "instrument": "custom_head", + "note": "15", + "powered": "true" + } + }, + { + "id": 1669, + "properties": { + "instrument": "custom_head", + "note": "15", + "powered": "false" + } + }, + { + "id": 1670, + "properties": { + "instrument": "custom_head", + "note": "16", + "powered": "true" + } + }, + { + "id": 1671, + "properties": { + "instrument": "custom_head", + "note": "16", + "powered": "false" + } + }, + { + "id": 1672, + "properties": { + "instrument": "custom_head", + "note": "17", + "powered": "true" + } + }, + { + "id": 1673, + "properties": { + "instrument": "custom_head", + "note": "17", + "powered": "false" + } + }, + { + "id": 1674, + "properties": { + "instrument": "custom_head", + "note": "18", + "powered": "true" + } + }, + { + "id": 1675, + "properties": { + "instrument": "custom_head", + "note": "18", + "powered": "false" + } + }, + { + "id": 1676, + "properties": { + "instrument": "custom_head", + "note": "19", + "powered": "true" + } + }, + { + "id": 1677, + "properties": { + "instrument": "custom_head", + "note": "19", + "powered": "false" + } + }, + { + "id": 1678, + "properties": { + "instrument": "custom_head", + "note": "20", + "powered": "true" + } + }, + { + "id": 1679, + "properties": { + "instrument": "custom_head", + "note": "20", + "powered": "false" + } + }, + { + "id": 1680, + "properties": { + "instrument": "custom_head", + "note": "21", + "powered": "true" + } + }, + { + "id": 1681, + "properties": { + "instrument": "custom_head", + "note": "21", + "powered": "false" + } + }, + { + "id": 1682, + "properties": { + "instrument": "custom_head", + "note": "22", + "powered": "true" + } + }, + { + "id": 1683, + "properties": { + "instrument": "custom_head", + "note": "22", + "powered": "false" + } + }, + { + "id": 1684, + "properties": { + "instrument": "custom_head", + "note": "23", + "powered": "true" + } + }, + { + "id": 1685, + "properties": { + "instrument": "custom_head", + "note": "23", + "powered": "false" + } + }, + { + "id": 1686, + "properties": { + "instrument": "custom_head", + "note": "24", + "powered": "true" + } + }, + { + "id": 1687, + "properties": { + "instrument": "custom_head", + "note": "24", + "powered": "false" + } + } + ] + }, + "minecraft:oak_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8611, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8612, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8613, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8614, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8615, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8616, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8617, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8618, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8619, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8620, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8621, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8622, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8623, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8624, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8625, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8626, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8627, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8628, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8629, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8630, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8631, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8632, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8633, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8634, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:oak_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4590, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4591, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4592, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4593, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4594, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4595, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4596, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4597, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4598, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4599, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4600, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 4601, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4602, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4603, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4604, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4605, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4606, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4607, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4608, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4609, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4610, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4611, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4612, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4613, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4614, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4615, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4616, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4617, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4618, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4619, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4620, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4621, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4622, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4623, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4624, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4625, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4626, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4627, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4628, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4629, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4630, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4631, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4632, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4633, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4634, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4635, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4636, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4637, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4638, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4639, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4640, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4641, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4642, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4643, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4644, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4645, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4646, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4647, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4648, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4649, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4650, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4651, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4652, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4653, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oak_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5817, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5818, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5819, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5820, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5821, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5822, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5823, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5824, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5825, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5826, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5827, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5828, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5829, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5830, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5831, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5832, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5833, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5834, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5835, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5836, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5837, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5838, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5839, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5840, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5841, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5842, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5843, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5844, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5845, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5846, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5847, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 5848, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:oak_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6997, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 6998, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 6999, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 7000, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 7001, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 7002, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 7003, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 7004, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 7005, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 7006, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 7007, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 7008, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 7009, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 7010, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 7011, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 7012, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 7013, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 7014, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 7015, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 7016, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 7017, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 7018, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 7019, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 7020, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 7021, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 7022, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 7023, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 7024, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 7025, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 7026, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 7027, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 7028, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oak_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4834, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 4835, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4836, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4837, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4838, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4839, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4840, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4841, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4842, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4843, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4844, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4845, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4846, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4847, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4848, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4849, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4850, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4851, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4852, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4853, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4854, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4855, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4856, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4857, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4858, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4859, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4860, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4861, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4862, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4863, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4864, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4865, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 4866, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4867, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4868, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4869, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4870, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4871, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4872, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4873, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4874, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4875, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4876, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4877, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4878, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4879, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4880, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4881, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4882, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4883, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4884, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4885, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4886, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4887, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4888, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4889, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4890, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4891, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4892, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4893, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4894, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4895, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4896, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4897, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 237, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 238, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 239, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 240, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 241, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 242, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 243, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 244, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 245, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 246, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 247, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 248, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 249, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 250, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 251, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 252, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 253, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 254, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 255, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 256, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 257, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 258, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 259, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 260, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 261, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 262, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 263, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 264, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 130, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 131, + "properties": { + "axis": "y" + } + }, + { + "id": 132, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:oak_planks": { + "states": [ + { + "default": true, + "id": 15 + } + ] + }, + "minecraft:oak_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5716, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5717, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:oak_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 25, + "properties": { + "stage": "0" + } + }, + { + "id": 26, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:oak_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4302, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4303, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4304, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4305, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4306, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4307, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4308, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4309, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4310, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4311, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4312, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4313, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4314, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4315, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4316, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4317, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4318, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4319, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4320, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4321, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4322, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4323, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4324, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4325, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4326, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4327, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4328, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4329, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4330, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4331, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4332, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4333, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11162, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11163, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11164, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11165, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11166, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11167, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2874, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 2875, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 2876, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 2877, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 2878, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 2879, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 2880, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 2881, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 2882, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 2883, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 2884, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2885, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 2886, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 2887, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 2888, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 2889, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 2890, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 2891, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 2892, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 2893, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 2894, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 2895, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 2896, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 2897, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 2898, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 2899, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 2900, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 2901, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 2902, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 2903, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 2904, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 2905, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 2906, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 2907, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 2908, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 2909, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 2910, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 2911, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 2912, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 2913, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 2914, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 2915, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 2916, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 2917, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 2918, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 2919, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 2920, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 2921, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 2922, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 2923, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 2924, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 2925, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 2926, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 2927, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 2928, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 2929, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 2930, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 2931, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 2932, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 2933, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 2934, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 2935, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 2936, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 2937, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 2938, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 2939, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 2940, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 2941, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 2942, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 2943, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 2944, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 2945, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 2946, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 2947, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 2948, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 2949, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 2950, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 2951, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 2952, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 2953, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5961, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5962, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5963, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 5964, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 5965, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5966, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5967, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 5968, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 5969, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5970, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5971, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 5972, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 5973, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5974, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5975, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5976, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 5977, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5978, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5979, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 5980, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 5981, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5982, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5983, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 5984, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 5985, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5986, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5987, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 5988, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 5989, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5990, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5991, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 5992, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 5993, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5994, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5995, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 5996, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 5997, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5998, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5999, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6000, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6001, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6002, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6003, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6004, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6005, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6006, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6007, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6008, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6009, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6010, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6011, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6012, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6013, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6014, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6015, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6016, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6017, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6018, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6019, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6020, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6021, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6022, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6023, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6024, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5538, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5539, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5540, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5541, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5542, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5543, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5544, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5545, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4762, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4763, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4764, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4765, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4766, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4767, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4768, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4769, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 189, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 190, + "properties": { + "axis": "y" + } + }, + { + "id": 191, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:observer": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12550, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "id": 12551, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 12552, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 12553, + "properties": { + "facing": "east", + "powered": "false" + } + }, + { + "id": 12554, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "default": true, + "id": 12555, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 12556, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 12557, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 12558, + "properties": { + "facing": "up", + "powered": "true" + } + }, + { + "id": 12559, + "properties": { + "facing": "up", + "powered": "false" + } + }, + { + "id": 12560, + "properties": { + "facing": "down", + "powered": "true" + } + }, + { + "id": 12561, + "properties": { + "facing": "down", + "powered": "false" + } + } + ] + }, + "minecraft:obsidian": { + "states": [ + { + "default": true, + "id": 2354 + } + ] + }, + "minecraft:ochre_froglight": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 26563, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 26564, + "properties": { + "axis": "y" + } + }, + { + "id": 26565, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:orange_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10775, + "properties": { + "rotation": "0" + } + }, + { + "id": 10776, + "properties": { + "rotation": "1" + } + }, + { + "id": 10777, + "properties": { + "rotation": "2" + } + }, + { + "id": 10778, + "properties": { + "rotation": "3" + } + }, + { + "id": 10779, + "properties": { + "rotation": "4" + } + }, + { + "id": 10780, + "properties": { + "rotation": "5" + } + }, + { + "id": 10781, + "properties": { + "rotation": "6" + } + }, + { + "id": 10782, + "properties": { + "rotation": "7" + } + }, + { + "id": 10783, + "properties": { + "rotation": "8" + } + }, + { + "id": 10784, + "properties": { + "rotation": "9" + } + }, + { + "id": 10785, + "properties": { + "rotation": "10" + } + }, + { + "id": 10786, + "properties": { + "rotation": "11" + } + }, + { + "id": 10787, + "properties": { + "rotation": "12" + } + }, + { + "id": 10788, + "properties": { + "rotation": "13" + } + }, + { + "id": 10789, + "properties": { + "rotation": "14" + } + }, + { + "id": 10790, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:orange_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1704, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1705, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1706, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1707, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1708, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1709, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1710, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1711, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1712, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1713, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1714, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1715, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1716, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1717, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1718, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1719, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:orange_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20757, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20758, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20759, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20760, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20761, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20762, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20763, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20764, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20765, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20766, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20767, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20768, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20769, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20770, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20771, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20772, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:orange_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21001, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21002, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:orange_carpet": { + "states": [ + { + "default": true, + "id": 10729 + } + ] + }, + "minecraft:orange_concrete": { + "states": [ + { + "default": true, + "id": 12729 + } + ] + }, + "minecraft:orange_concrete_powder": { + "states": [ + { + "default": true, + "id": 12745 + } + ] + }, + "minecraft:orange_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12668, + "properties": { + "facing": "north" + } + }, + { + "id": 12669, + "properties": { + "facing": "south" + } + }, + { + "id": 12670, + "properties": { + "facing": "west" + } + }, + { + "id": 12671, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:orange_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12574, + "properties": { + "facing": "north" + } + }, + { + "id": 12575, + "properties": { + "facing": "east" + } + }, + { + "id": 12576, + "properties": { + "facing": "south" + } + }, + { + "id": 12577, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12578, + "properties": { + "facing": "up" + } + }, + { + "id": 12579, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:orange_stained_glass": { + "states": [ + { + "default": true, + "id": 5946 + } + ] + }, + "minecraft:orange_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9404, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9405, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9406, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9407, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9408, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9409, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9410, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9411, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9412, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9413, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9414, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9415, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9416, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9417, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9418, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9419, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9420, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9421, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9422, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9423, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9424, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9425, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9426, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9427, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9428, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9429, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9430, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9431, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9432, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9433, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9434, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9435, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:orange_terracotta": { + "states": [ + { + "default": true, + "id": 9357 + } + ] + }, + "minecraft:orange_tulip": { + "states": [ + { + "default": true, + "id": 2082 + } + ] + }, + "minecraft:orange_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11019, + "properties": { + "facing": "north" + } + }, + { + "id": 11020, + "properties": { + "facing": "south" + } + }, + { + "id": 11021, + "properties": { + "facing": "west" + } + }, + { + "id": 11022, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:orange_wool": { + "states": [ + { + "default": true, + "id": 2048 + } + ] + }, + "minecraft:oxeye_daisy": { + "states": [ + { + "default": true, + "id": 2085 + } + ] + }, + "minecraft:oxidized_chiseled_copper": { + "states": [ + { + "default": true, + "id": 22948 + } + ] + }, + "minecraft:oxidized_copper": { + "states": [ + { + "default": true, + "id": 22941 + } + ] + }, + "minecraft:oxidized_copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24704, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24705, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24706, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24707, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oxidized_copper_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23780, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23781, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23782, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23783, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23784, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23785, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23786, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23787, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23788, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23789, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23790, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 23791, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23792, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23793, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23794, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23795, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23796, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23797, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23798, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23799, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23800, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23801, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23802, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23803, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23804, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23805, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23806, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23807, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23808, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23809, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23810, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23811, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23812, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23813, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23814, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23815, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23816, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23817, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23818, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23819, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23820, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23821, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23822, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23823, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23824, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23825, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23826, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23827, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23828, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23829, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23830, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23831, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23832, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23833, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23834, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23835, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23836, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23837, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23838, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23839, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23840, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23841, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23842, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23843, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oxidized_copper_grate": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24682, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24683, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24292, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24293, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24294, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24295, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24296, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24297, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24298, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24299, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24300, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24301, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24302, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24303, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24304, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24305, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24306, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24307, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24308, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24309, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24310, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24311, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24312, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24313, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24314, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24315, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24316, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24317, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24318, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24319, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24320, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24321, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24322, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24323, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24324, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24325, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24326, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24327, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24328, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24329, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24330, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24331, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24332, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24333, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24334, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24335, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24336, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24337, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24338, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24339, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24340, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24341, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24342, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24343, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24344, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24345, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24346, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24347, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24348, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24349, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24350, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24351, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24352, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24353, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24354, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24355, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_cut_copper": { + "states": [ + { + "default": true, + "id": 22944 + } + ] + }, + "minecraft:oxidized_cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23276, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23277, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23278, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23279, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23280, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23281, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22956, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22957, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22958, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22959, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22960, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22961, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22962, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22963, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22964, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22965, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22966, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22967, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22968, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22969, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22970, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22971, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22972, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22973, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22974, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22975, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22976, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22977, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22978, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22979, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22980, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22981, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22982, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22983, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22984, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22985, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22986, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22987, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22988, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22989, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22990, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22991, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22992, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22993, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22994, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22995, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22996, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22997, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22998, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22999, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23000, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23001, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23002, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23003, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23004, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23005, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23006, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23007, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23008, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23009, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23010, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23011, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23012, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23013, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23014, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23015, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23016, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23017, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23018, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23019, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23020, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23021, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23022, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23023, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23024, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23025, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23026, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23027, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23028, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23029, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23030, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23031, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23032, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23033, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23034, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23035, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:packed_ice": { + "states": [ + { + "default": true, + "id": 10746 + } + ] + }, + "minecraft:packed_mud": { + "states": [ + { + "default": true, + "id": 6541 + } + ] + }, + "minecraft:pearlescent_froglight": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 26569, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 26570, + "properties": { + "axis": "y" + } + }, + { + "id": 26571, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:peony": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 10753, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 10754, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:petrified_oak_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11246, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11247, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11248, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11249, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11250, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11251, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:piglin_head": { + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 9067, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 9068, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 9069, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 9070, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 9071, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 9072, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 9073, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 9074, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 9075, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 9076, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 9077, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 9078, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 9079, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 9080, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 9081, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 9082, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 9083, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 9084, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 9085, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 9086, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 9087, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 9088, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 9089, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 9090, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 9091, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 9092, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 9093, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 9094, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 9095, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 9096, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 9097, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 9098, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:piglin_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9099, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 9100, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 9101, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 9102, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 9103, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 9104, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 9105, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 9106, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:pink_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10855, + "properties": { + "rotation": "0" + } + }, + { + "id": 10856, + "properties": { + "rotation": "1" + } + }, + { + "id": 10857, + "properties": { + "rotation": "2" + } + }, + { + "id": 10858, + "properties": { + "rotation": "3" + } + }, + { + "id": 10859, + "properties": { + "rotation": "4" + } + }, + { + "id": 10860, + "properties": { + "rotation": "5" + } + }, + { + "id": 10861, + "properties": { + "rotation": "6" + } + }, + { + "id": 10862, + "properties": { + "rotation": "7" + } + }, + { + "id": 10863, + "properties": { + "rotation": "8" + } + }, + { + "id": 10864, + "properties": { + "rotation": "9" + } + }, + { + "id": 10865, + "properties": { + "rotation": "10" + } + }, + { + "id": 10866, + "properties": { + "rotation": "11" + } + }, + { + "id": 10867, + "properties": { + "rotation": "12" + } + }, + { + "id": 10868, + "properties": { + "rotation": "13" + } + }, + { + "id": 10869, + "properties": { + "rotation": "14" + } + }, + { + "id": 10870, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:pink_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1784, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1785, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1786, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1787, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1788, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1789, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1790, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1791, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1792, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1793, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1794, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1795, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1796, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1797, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1798, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1799, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:pink_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20837, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20838, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20839, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20840, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20841, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20842, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20843, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20844, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20845, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20846, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20847, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20848, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20849, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20850, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20851, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20852, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pink_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21011, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21012, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:pink_carpet": { + "states": [ + { + "default": true, + "id": 10734 + } + ] + }, + "minecraft:pink_concrete": { + "states": [ + { + "default": true, + "id": 12734 + } + ] + }, + "minecraft:pink_concrete_powder": { + "states": [ + { + "default": true, + "id": 12750 + } + ] + }, + "minecraft:pink_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12688, + "properties": { + "facing": "north" + } + }, + { + "id": 12689, + "properties": { + "facing": "south" + } + }, + { + "id": 12690, + "properties": { + "facing": "west" + } + }, + { + "id": 12691, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:pink_petals": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "flower_amount": [ + "1", + "2", + "3", + "4" + ] + }, + "states": [ + { + "default": true, + "id": 24827, + "properties": { + "facing": "north", + "flower_amount": "1" + } + }, + { + "id": 24828, + "properties": { + "facing": "north", + "flower_amount": "2" + } + }, + { + "id": 24829, + "properties": { + "facing": "north", + "flower_amount": "3" + } + }, + { + "id": 24830, + "properties": { + "facing": "north", + "flower_amount": "4" + } + }, + { + "id": 24831, + "properties": { + "facing": "south", + "flower_amount": "1" + } + }, + { + "id": 24832, + "properties": { + "facing": "south", + "flower_amount": "2" + } + }, + { + "id": 24833, + "properties": { + "facing": "south", + "flower_amount": "3" + } + }, + { + "id": 24834, + "properties": { + "facing": "south", + "flower_amount": "4" + } + }, + { + "id": 24835, + "properties": { + "facing": "west", + "flower_amount": "1" + } + }, + { + "id": 24836, + "properties": { + "facing": "west", + "flower_amount": "2" + } + }, + { + "id": 24837, + "properties": { + "facing": "west", + "flower_amount": "3" + } + }, + { + "id": 24838, + "properties": { + "facing": "west", + "flower_amount": "4" + } + }, + { + "id": 24839, + "properties": { + "facing": "east", + "flower_amount": "1" + } + }, + { + "id": 24840, + "properties": { + "facing": "east", + "flower_amount": "2" + } + }, + { + "id": 24841, + "properties": { + "facing": "east", + "flower_amount": "3" + } + }, + { + "id": 24842, + "properties": { + "facing": "east", + "flower_amount": "4" + } + } + ] + }, + "minecraft:pink_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12604, + "properties": { + "facing": "north" + } + }, + { + "id": 12605, + "properties": { + "facing": "east" + } + }, + { + "id": 12606, + "properties": { + "facing": "south" + } + }, + { + "id": 12607, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12608, + "properties": { + "facing": "up" + } + }, + { + "id": 12609, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:pink_stained_glass": { + "states": [ + { + "default": true, + "id": 5951 + } + ] + }, + "minecraft:pink_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9564, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9565, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9566, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9567, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9568, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9569, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9570, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9571, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9572, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9573, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9574, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9575, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9576, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9577, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9578, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9579, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9580, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9581, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9582, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9583, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9584, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9585, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9586, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9587, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9588, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9589, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9590, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9591, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9592, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9593, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9594, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9595, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:pink_terracotta": { + "states": [ + { + "default": true, + "id": 9362 + } + ] + }, + "minecraft:pink_tulip": { + "states": [ + { + "default": true, + "id": 2084 + } + ] + }, + "minecraft:pink_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11039, + "properties": { + "facing": "north" + } + }, + { + "id": 11040, + "properties": { + "facing": "south" + } + }, + { + "id": 11041, + "properties": { + "facing": "west" + } + }, + { + "id": 11042, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:pink_wool": { + "states": [ + { + "default": true, + "id": 2053 + } + ] + }, + "minecraft:piston": { + "properties": { + "extended": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 2011, + "properties": { + "extended": "true", + "facing": "north" + } + }, + { + "id": 2012, + "properties": { + "extended": "true", + "facing": "east" + } + }, + { + "id": 2013, + "properties": { + "extended": "true", + "facing": "south" + } + }, + { + "id": 2014, + "properties": { + "extended": "true", + "facing": "west" + } + }, + { + "id": 2015, + "properties": { + "extended": "true", + "facing": "up" + } + }, + { + "id": 2016, + "properties": { + "extended": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 2017, + "properties": { + "extended": "false", + "facing": "north" + } + }, + { + "id": 2018, + "properties": { + "extended": "false", + "facing": "east" + } + }, + { + "id": 2019, + "properties": { + "extended": "false", + "facing": "south" + } + }, + { + "id": 2020, + "properties": { + "extended": "false", + "facing": "west" + } + }, + { + "id": 2021, + "properties": { + "extended": "false", + "facing": "up" + } + }, + { + "id": 2022, + "properties": { + "extended": "false", + "facing": "down" + } + } + ] + }, + "minecraft:piston_head": { + "properties": { + "type": [ + "normal", + "sticky" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "short": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2023, + "properties": { + "type": "normal", + "facing": "north", + "short": "true" + } + }, + { + "id": 2024, + "properties": { + "type": "sticky", + "facing": "north", + "short": "true" + } + }, + { + "default": true, + "id": 2025, + "properties": { + "type": "normal", + "facing": "north", + "short": "false" + } + }, + { + "id": 2026, + "properties": { + "type": "sticky", + "facing": "north", + "short": "false" + } + }, + { + "id": 2027, + "properties": { + "type": "normal", + "facing": "east", + "short": "true" + } + }, + { + "id": 2028, + "properties": { + "type": "sticky", + "facing": "east", + "short": "true" + } + }, + { + "id": 2029, + "properties": { + "type": "normal", + "facing": "east", + "short": "false" + } + }, + { + "id": 2030, + "properties": { + "type": "sticky", + "facing": "east", + "short": "false" + } + }, + { + "id": 2031, + "properties": { + "type": "normal", + "facing": "south", + "short": "true" + } + }, + { + "id": 2032, + "properties": { + "type": "sticky", + "facing": "south", + "short": "true" + } + }, + { + "id": 2033, + "properties": { + "type": "normal", + "facing": "south", + "short": "false" + } + }, + { + "id": 2034, + "properties": { + "type": "sticky", + "facing": "south", + "short": "false" + } + }, + { + "id": 2035, + "properties": { + "type": "normal", + "facing": "west", + "short": "true" + } + }, + { + "id": 2036, + "properties": { + "type": "sticky", + "facing": "west", + "short": "true" + } + }, + { + "id": 2037, + "properties": { + "type": "normal", + "facing": "west", + "short": "false" + } + }, + { + "id": 2038, + "properties": { + "type": "sticky", + "facing": "west", + "short": "false" + } + }, + { + "id": 2039, + "properties": { + "type": "normal", + "facing": "up", + "short": "true" + } + }, + { + "id": 2040, + "properties": { + "type": "sticky", + "facing": "up", + "short": "true" + } + }, + { + "id": 2041, + "properties": { + "type": "normal", + "facing": "up", + "short": "false" + } + }, + { + "id": 2042, + "properties": { + "type": "sticky", + "facing": "up", + "short": "false" + } + }, + { + "id": 2043, + "properties": { + "type": "normal", + "facing": "down", + "short": "true" + } + }, + { + "id": 2044, + "properties": { + "type": "sticky", + "facing": "down", + "short": "true" + } + }, + { + "id": 2045, + "properties": { + "type": "normal", + "facing": "down", + "short": "false" + } + }, + { + "id": 2046, + "properties": { + "type": "sticky", + "facing": "down", + "short": "false" + } + } + ] + }, + "minecraft:pitcher_crop": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4" + ], + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12497, + "properties": { + "age": "0", + "half": "upper" + } + }, + { + "default": true, + "id": 12498, + "properties": { + "age": "0", + "half": "lower" + } + }, + { + "id": 12499, + "properties": { + "age": "1", + "half": "upper" + } + }, + { + "id": 12500, + "properties": { + "age": "1", + "half": "lower" + } + }, + { + "id": 12501, + "properties": { + "age": "2", + "half": "upper" + } + }, + { + "id": 12502, + "properties": { + "age": "2", + "half": "lower" + } + }, + { + "id": 12503, + "properties": { + "age": "3", + "half": "upper" + } + }, + { + "id": 12504, + "properties": { + "age": "3", + "half": "lower" + } + }, + { + "id": 12505, + "properties": { + "age": "4", + "half": "upper" + } + }, + { + "id": 12506, + "properties": { + "age": "4", + "half": "lower" + } + } + ] + }, + "minecraft:pitcher_plant": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12507, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 12508, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:player_head": { + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 8947, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 8948, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 8949, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 8950, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 8951, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 8952, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 8953, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 8954, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 8955, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 8956, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 8957, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 8958, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 8959, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 8960, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 8961, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 8962, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 8963, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 8964, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 8965, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 8966, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 8967, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 8968, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 8969, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 8970, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 8971, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 8972, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 8973, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 8974, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 8975, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 8976, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 8977, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 8978, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:player_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8979, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8980, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 8981, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 8982, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 8983, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 8984, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 8985, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 8986, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:podzol": { + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12, + "properties": { + "snowy": "true" + } + }, + { + "default": true, + "id": 13, + "properties": { + "snowy": "false" + } + } + ] + }, + "minecraft:pointed_dripstone": { + "properties": { + "thickness": [ + "tip_merge", + "tip", + "frustum", + "middle", + "base" + ], + "vertical_direction": [ + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24748, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 24749, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 24750, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 24751, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 24752, + "properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24753, + "properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 24754, + "properties": { + "thickness": "tip", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 24755, + "properties": { + "thickness": "tip", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 24756, + "properties": { + "thickness": "frustum", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 24757, + "properties": { + "thickness": "frustum", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 24758, + "properties": { + "thickness": "frustum", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 24759, + "properties": { + "thickness": "frustum", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 24760, + "properties": { + "thickness": "middle", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 24761, + "properties": { + "thickness": "middle", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 24762, + "properties": { + "thickness": "middle", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 24763, + "properties": { + "thickness": "middle", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 24764, + "properties": { + "thickness": "base", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 24765, + "properties": { + "thickness": "base", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 24766, + "properties": { + "thickness": "base", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 24767, + "properties": { + "thickness": "base", + "vertical_direction": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_andesite": { + "states": [ + { + "default": true, + "id": 7 + } + ] + }, + "minecraft:polished_andesite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14148, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14149, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14150, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14151, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14152, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14153, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_andesite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13922, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13923, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13924, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13925, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13926, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13927, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13928, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13929, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13930, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13931, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13932, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13933, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13934, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13935, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13936, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13937, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13938, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13939, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13940, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13941, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13942, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13943, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13944, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13945, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13946, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13947, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13948, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13949, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13950, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13951, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13952, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13953, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13954, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13955, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13956, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13957, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13958, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13959, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13960, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13961, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13962, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13963, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13964, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13965, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13966, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13967, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13968, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13969, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13970, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13971, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13972, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13973, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13974, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13975, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13976, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13977, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13978, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13979, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13980, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13981, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13982, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13983, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13984, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13985, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13986, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13987, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13988, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13989, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13990, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13991, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13992, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13993, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13994, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13995, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13996, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13997, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13998, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13999, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14000, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14001, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_basalt": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 5855, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 5856, + "properties": { + "axis": "y" + } + }, + { + "id": 5857, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:polished_blackstone": { + "states": [ + { + "default": true, + "id": 19871 + } + ] + }, + "minecraft:polished_blackstone_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19875, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 19876, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 19877, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19878, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 19879, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 19880, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19881, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19882, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19883, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19884, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19885, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19886, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19887, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19888, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19889, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19890, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19891, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19892, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19893, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19894, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19895, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19896, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19897, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19898, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19899, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19900, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19901, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19902, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19903, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19904, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19905, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19906, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19907, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19908, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19909, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19910, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19911, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19912, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19913, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19914, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19915, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19916, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19917, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19918, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19919, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19920, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19921, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19922, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19923, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19924, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19925, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19926, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19927, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19928, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19929, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19930, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19931, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19932, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19933, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19934, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19935, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19936, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19937, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19938, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19939, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19940, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19941, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19942, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19943, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19944, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19945, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19946, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19947, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19948, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19949, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19950, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19951, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19952, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19953, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19954, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19955, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19956, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19957, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19958, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19959, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19960, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 19961, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19962, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19963, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 19964, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19965, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19966, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19967, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19968, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19969, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19970, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19971, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19972, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19973, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19974, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19975, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19976, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19977, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19978, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19979, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19980, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19981, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19982, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19983, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19984, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19985, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19986, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19987, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19988, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19989, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19990, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19991, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19992, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19993, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19994, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19995, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19996, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19997, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19998, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19999, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20000, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20001, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20002, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20003, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20004, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20005, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20006, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20007, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20008, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20009, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20010, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20011, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20012, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20013, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20014, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20015, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20016, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20017, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20018, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20019, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20020, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20021, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20022, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20023, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20024, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20025, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20026, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20027, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20028, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20029, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20030, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20031, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20032, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20033, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20034, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20035, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20036, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20037, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20038, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20039, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20040, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20041, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20042, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20043, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20044, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20045, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20046, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20047, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20048, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20049, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20050, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20051, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20052, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20053, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20054, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20055, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20056, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20057, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20058, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20059, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20060, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20061, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20062, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20063, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20064, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20065, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20066, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20067, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20068, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20069, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20070, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20071, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20072, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20073, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20074, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20075, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20076, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20077, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20078, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20079, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20080, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20081, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20082, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20083, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20084, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20085, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20086, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20087, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20088, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20089, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20090, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20091, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20092, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20093, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20094, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20095, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20096, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20097, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20098, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20099, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20100, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20101, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20102, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20103, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20104, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20105, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20106, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20107, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20108, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20109, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20110, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20111, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20112, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20113, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20114, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20115, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20116, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20117, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20118, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20119, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20120, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20121, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20122, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20123, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20124, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20125, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20126, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20127, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20128, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20129, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20130, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20131, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20132, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20133, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20134, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20135, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20136, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20137, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20138, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20139, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20140, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20141, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20142, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20143, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20144, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20145, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20146, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20147, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20148, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20149, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20150, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20151, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20152, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20153, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20154, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20155, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20156, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20157, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20158, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20159, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20160, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20161, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20162, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20163, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20164, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20165, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20166, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20167, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20168, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20169, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20170, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20171, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20172, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20173, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20174, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20175, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20176, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20177, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20178, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20179, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20180, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20181, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20182, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20183, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20184, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20185, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20186, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20187, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20188, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20189, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20190, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20191, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20192, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20193, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20194, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20195, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20196, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20197, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20198, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20199, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20200, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20201, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20202, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20203, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20204, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20205, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20206, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20207, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20208, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20209, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20210, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20211, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20212, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20213, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20214, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20215, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20216, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20217, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20218, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20219, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20220, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20221, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20222, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20223, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20224, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20225, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20226, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20227, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20228, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20229, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20230, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20231, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20232, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20233, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20234, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20235, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20236, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20237, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20238, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20239, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20240, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20241, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20242, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20243, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20244, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20245, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20246, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20247, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20248, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20249, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20250, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20251, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20252, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20253, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20254, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20255, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20256, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20257, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20258, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20259, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20260, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20261, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20262, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20263, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20264, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20265, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20266, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20267, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20268, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20269, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20270, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20271, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20272, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20273, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20274, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20275, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20276, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20277, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20278, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20279, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20280, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20281, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20282, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20283, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20284, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:polished_blackstone_bricks": { + "states": [ + { + "default": true, + "id": 19872 + } + ] + }, + "minecraft:polished_blackstone_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20374, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 20375, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 20376, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 20377, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 20378, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 20379, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 20380, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 20381, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 20382, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 20383, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 20384, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 20385, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 20386, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 20387, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 20388, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 20389, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 20390, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 20391, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 20392, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 20393, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 20394, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 20395, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 20396, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 20397, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:polished_blackstone_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20372, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 20373, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:polished_blackstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20366, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 20367, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 20368, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20369, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 20370, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 20371, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20286, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20287, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20288, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20289, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20290, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20291, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20292, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20293, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20294, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20295, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20296, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20297, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20298, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20299, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20300, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20301, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20302, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20303, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20304, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20305, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20306, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20307, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20308, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20309, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20310, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20311, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20312, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20313, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20314, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20315, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20316, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20317, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20318, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20319, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20320, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20321, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20322, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20323, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20324, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20325, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20326, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20327, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20328, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20329, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20330, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20331, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20332, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20333, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20334, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20335, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20336, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20337, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20338, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20339, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20340, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20341, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20342, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20343, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20344, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20345, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20346, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20347, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20348, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20349, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20350, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20351, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20352, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20353, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20354, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20355, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20356, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20357, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20358, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20359, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20360, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20361, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20362, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20363, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20364, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20365, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 20398, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20399, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20400, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 20401, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20402, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20403, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20404, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20405, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20406, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20407, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20408, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20409, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20410, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20411, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20412, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20413, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20414, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20415, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20416, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20417, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20418, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20419, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20420, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20421, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20422, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20423, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20424, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20425, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20426, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20427, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20428, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20429, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20430, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20431, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20432, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20433, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20434, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20435, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20436, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20437, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20438, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20439, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20440, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20441, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20442, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20443, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20444, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20445, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20446, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20447, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20448, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20449, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20450, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20451, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20452, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20453, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20454, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20455, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20456, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20457, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20458, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20459, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20460, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20461, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20462, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20463, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20464, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20465, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20466, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20467, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20468, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20469, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20470, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20471, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20472, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20473, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20474, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20475, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20476, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20477, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20478, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20479, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20480, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20481, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20482, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20483, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20484, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20485, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20486, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20487, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20488, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20489, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20490, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20491, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20492, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20493, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20494, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20495, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20496, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20497, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20498, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20499, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20500, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20501, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20502, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20503, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20504, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20505, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20506, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20507, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20508, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20509, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20510, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20511, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20512, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20513, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20514, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20515, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20516, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20517, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20518, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20519, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20520, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20521, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20522, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20523, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20524, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20525, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20526, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20527, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20528, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20529, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20530, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20531, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20532, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20533, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20534, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20535, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20536, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20537, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20538, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20539, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20540, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20541, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20542, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20543, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20544, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20545, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20546, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20547, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20548, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20549, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20550, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20551, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20552, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20553, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20554, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20555, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20556, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20557, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20558, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20559, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20560, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20561, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20562, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20563, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20564, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20565, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20566, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20567, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20568, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20569, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20570, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20571, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20572, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20573, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20574, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20575, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20576, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20577, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20578, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20579, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20580, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20581, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20582, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20583, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20584, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20585, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20586, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20587, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20588, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20589, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20590, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20591, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20592, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20593, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20594, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20595, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20596, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20597, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20598, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20599, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20600, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20601, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20602, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20603, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20604, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20605, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20606, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20607, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20608, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20609, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20610, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20611, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20612, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20613, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20614, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20615, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20616, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20617, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20618, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20619, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20620, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20621, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20622, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20623, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20624, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20625, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20626, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20627, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20628, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20629, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20630, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20631, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20632, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20633, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20634, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20635, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20636, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20637, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20638, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20639, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20640, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20641, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20642, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20643, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20644, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20645, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20646, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20647, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20648, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20649, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20650, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20651, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20652, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20653, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20654, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20655, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20656, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20657, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20658, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20659, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20660, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20661, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20662, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20663, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20664, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20665, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20666, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20667, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20668, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20669, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20670, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20671, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20672, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20673, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20674, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20675, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20676, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20677, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20678, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20679, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20680, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20681, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20682, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20683, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20684, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20685, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20686, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20687, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20688, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20689, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20690, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20691, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20692, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20693, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20694, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20695, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20696, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20697, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20698, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20699, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20700, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20701, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20702, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20703, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20704, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20705, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20706, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20707, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20708, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20709, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20710, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20711, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20712, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20713, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20714, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20715, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20716, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20717, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20718, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20719, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20720, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20721, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:polished_deepslate": { + "states": [ + { + "default": true, + "id": 25318 + } + ] + }, + "minecraft:polished_deepslate_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25399, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 25400, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 25401, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25402, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 25403, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 25404, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_deepslate_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25319, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25320, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25321, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25322, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25323, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25324, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25325, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25326, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25327, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25328, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25329, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25330, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25331, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25332, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25333, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25334, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25335, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25336, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25337, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25338, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25339, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25340, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25341, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25342, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25343, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25344, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25345, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25346, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25347, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25348, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25349, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25350, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25351, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25352, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25353, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25354, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25355, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25356, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25357, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25358, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25359, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25360, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25361, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25362, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25363, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25364, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25365, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25366, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25367, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25368, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25369, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25370, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25371, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25372, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25373, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25374, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25375, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25376, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25377, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25378, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25379, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25380, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25381, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25382, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25383, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25384, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25385, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25386, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25387, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25388, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25389, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25390, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25391, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25392, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25393, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25394, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25395, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25396, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25397, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25398, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_deepslate_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 25405, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25406, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25407, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 25408, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25409, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25410, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25411, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25412, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25413, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25414, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25415, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25416, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25417, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25418, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25419, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25420, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25421, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25422, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25423, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25424, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25425, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25426, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25427, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25428, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25429, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25430, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25431, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25432, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25433, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25434, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25435, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25436, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25437, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25438, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25439, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25440, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25441, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25442, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25443, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25444, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25445, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25446, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25447, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25448, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25449, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25450, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25451, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25452, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25453, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25454, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25455, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25456, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25457, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25458, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25459, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25460, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25461, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25462, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25463, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25464, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25465, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25466, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25467, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25468, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25469, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25470, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25471, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25472, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25473, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25474, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25475, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25476, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25477, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25478, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25479, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25480, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25481, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25482, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25483, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25484, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25485, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25486, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25487, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25488, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25489, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25490, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25491, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25492, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25493, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25494, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25495, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25496, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25497, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25498, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25499, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25500, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25501, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25502, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25503, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25504, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25505, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25506, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25507, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25508, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25509, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25510, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25511, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25512, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25513, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25514, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25515, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25516, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25517, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25518, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25519, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25520, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25521, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25522, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25523, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25524, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25525, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25526, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25527, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25528, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25529, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25530, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25531, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25532, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25533, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25534, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25535, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25536, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25537, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25538, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25539, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25540, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25541, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25542, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25543, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25544, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25545, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25546, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25547, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25548, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25549, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25550, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25551, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25552, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25553, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25554, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25555, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25556, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25557, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25558, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25559, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25560, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25561, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25562, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25563, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25564, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25565, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25566, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25567, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25568, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25569, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25570, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25571, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25572, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25573, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25574, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25575, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25576, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25577, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25578, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25579, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25580, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25581, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25582, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25583, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25584, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25585, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25586, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25587, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25588, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25589, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25590, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25591, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25592, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25593, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25594, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25595, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25596, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25597, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25598, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25599, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25600, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25601, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25602, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25603, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25604, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25605, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25606, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25607, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25608, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25609, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25610, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25611, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25612, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25613, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25614, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25615, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25616, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25617, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25618, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25619, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25620, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25621, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25622, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25623, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25624, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25625, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25626, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25627, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25628, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25629, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25630, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25631, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25632, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25633, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25634, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25635, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25636, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25637, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25638, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25639, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25640, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25641, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25642, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25643, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25644, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25645, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25646, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25647, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25648, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25649, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25650, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25651, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25652, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25653, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25654, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25655, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25656, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25657, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25658, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25659, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25660, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25661, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25662, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25663, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25664, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25665, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25666, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25667, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25668, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25669, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25670, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25671, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25672, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25673, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25674, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25675, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25676, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25677, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25678, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25679, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25680, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25681, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25682, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25683, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25684, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25685, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25686, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25687, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25688, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25689, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25690, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25691, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25692, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25693, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25694, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25695, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25696, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25697, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25698, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25699, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25700, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25701, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25702, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25703, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25704, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25705, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25706, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25707, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25708, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25709, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25710, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25711, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25712, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25713, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25714, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25715, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25716, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25717, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25718, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25719, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25720, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25721, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25722, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25723, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25724, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25725, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25726, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25727, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25728, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:polished_diorite": { + "states": [ + { + "default": true, + "id": 5 + } + ] + }, + "minecraft:polished_diorite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14100, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14101, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14102, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14103, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14104, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14105, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_diorite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13202, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13203, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13204, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13205, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13206, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13207, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13208, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13209, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13210, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13211, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13212, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13213, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13214, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13215, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13216, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13217, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13218, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13219, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13220, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13221, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13222, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13223, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13224, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13225, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13226, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13227, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13228, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13229, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13230, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13231, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13232, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13233, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13234, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13235, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13236, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13237, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13238, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13239, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13240, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13241, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13242, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13243, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13244, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13245, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13246, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13247, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13248, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13249, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13250, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13251, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13252, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13253, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13254, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13255, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13256, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13257, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13258, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13259, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13260, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13261, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13262, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13263, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13264, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13265, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13266, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13267, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13268, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13269, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13270, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13271, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13272, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13273, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13274, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13275, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13276, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13277, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13278, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13279, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13280, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13281, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_granite": { + "states": [ + { + "default": true, + "id": 3 + } + ] + }, + "minecraft:polished_granite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14082, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14083, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14084, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14085, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14086, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14087, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_granite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12962, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12963, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12964, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12965, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12966, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12967, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12968, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12969, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12970, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12971, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12972, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12973, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12974, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12975, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12976, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12977, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12978, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12979, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12980, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12981, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12982, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12983, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12984, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12985, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12986, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12987, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12988, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12989, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12990, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12991, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12992, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12993, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12994, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12995, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12996, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12997, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12998, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12999, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13000, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13001, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13002, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13003, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13004, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13005, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13006, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13007, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13008, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13009, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13010, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13011, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13012, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13013, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13014, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13015, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13016, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13017, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13018, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13019, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13020, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13021, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13022, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13023, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13024, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13025, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13026, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13027, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13028, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13029, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13030, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13031, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13032, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13033, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13034, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13035, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13036, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13037, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13038, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13039, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13040, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13041, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_tuff": { + "states": [ + { + "default": true, + "id": 21492 + } + ] + }, + "minecraft:polished_tuff_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21493, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 21494, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 21495, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21496, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 21497, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 21498, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_tuff_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21499, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21500, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21501, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21502, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21503, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21504, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21505, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21506, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21507, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21508, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21509, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21510, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21511, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21512, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21513, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21514, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21515, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21516, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21517, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21518, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21519, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21520, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21521, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21522, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21523, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21524, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21525, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21526, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21527, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21528, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21529, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21530, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21531, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21532, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21533, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21534, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21535, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21536, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21537, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21538, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21539, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21540, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21541, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21542, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21543, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21544, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21545, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21546, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21547, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21548, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21549, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21550, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21551, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21552, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21553, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21554, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21555, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21556, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21557, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21558, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21559, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21560, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21561, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21562, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21563, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21564, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21565, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21566, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21567, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21568, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21569, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21570, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21571, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21572, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21573, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21574, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21575, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21576, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21577, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21578, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_tuff_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 21579, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21580, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21581, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 21582, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21583, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21584, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21585, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21586, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21587, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21588, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21589, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21590, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21591, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21592, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21593, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21594, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21595, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21596, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21597, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21598, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21599, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21600, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21601, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21602, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21603, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21604, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21605, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21606, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21607, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21608, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21609, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21610, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21611, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21612, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21613, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21614, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21615, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21616, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21617, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21618, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21619, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21620, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21621, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21622, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21623, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21624, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21625, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21626, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21627, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21628, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21629, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21630, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21631, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21632, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21633, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21634, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21635, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21636, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21637, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21638, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21639, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21640, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21641, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21642, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21643, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21644, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21645, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21646, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21647, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21648, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21649, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21650, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21651, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21652, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21653, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21654, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21655, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21656, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21657, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21658, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21659, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21660, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21661, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21662, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21663, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21664, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21665, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21666, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21667, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21668, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21669, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21670, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21671, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21672, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21673, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21674, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21675, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21676, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21677, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21678, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21679, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21680, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21681, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21682, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21683, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21684, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21685, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21686, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21687, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21688, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21689, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21690, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21691, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21692, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21693, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21694, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21695, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21696, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21697, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21698, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21699, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21700, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21701, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21702, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21703, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21704, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21705, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21706, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21707, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21708, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21709, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21710, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21711, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21712, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21713, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21714, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21715, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21716, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21717, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21718, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21719, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21720, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21721, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21722, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21723, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21724, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21725, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21726, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21727, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21728, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21729, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21730, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21731, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21732, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21733, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21734, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21735, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21736, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21737, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21738, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21739, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21740, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21741, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21742, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21743, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21744, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21745, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21746, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21747, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21748, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21749, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21750, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21751, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21752, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21753, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21754, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21755, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21756, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21757, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21758, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21759, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21760, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21761, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21762, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21763, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21764, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21765, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21766, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21767, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21768, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21769, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21770, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21771, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21772, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21773, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21774, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21775, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21776, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21777, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21778, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21779, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21780, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21781, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21782, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21783, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21784, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21785, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21786, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21787, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21788, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21789, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21790, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21791, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21792, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21793, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21794, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21795, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21796, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21797, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21798, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21799, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21800, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21801, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21802, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21803, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21804, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21805, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21806, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21807, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21808, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21809, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21810, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21811, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21812, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21813, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21814, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21815, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21816, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21817, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21818, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21819, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21820, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21821, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21822, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21823, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21824, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21825, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21826, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21827, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21828, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21829, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21830, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21831, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21832, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21833, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21834, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21835, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21836, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21837, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21838, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21839, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21840, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21841, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21842, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21843, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21844, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21845, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21846, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21847, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21848, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21849, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21850, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21851, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21852, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21853, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21854, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21855, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21856, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21857, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21858, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21859, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21860, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21861, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21862, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21863, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21864, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21865, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21866, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21867, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21868, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21869, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21870, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21871, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21872, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21873, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21874, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21875, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21876, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21877, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21878, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21879, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21880, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21881, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21882, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21883, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21884, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21885, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21886, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21887, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21888, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21889, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21890, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21891, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21892, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21893, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21894, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21895, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21896, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21897, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21898, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21899, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21900, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21901, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21902, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:poppy": { + "states": [ + { + "default": true, + "id": 2077 + } + ] + }, + "minecraft:potatoes": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 8603, + "properties": { + "age": "0" + } + }, + { + "id": 8604, + "properties": { + "age": "1" + } + }, + { + "id": 8605, + "properties": { + "age": "2" + } + }, + { + "id": 8606, + "properties": { + "age": "3" + } + }, + { + "id": 8607, + "properties": { + "age": "4" + } + }, + { + "id": 8608, + "properties": { + "age": "5" + } + }, + { + "id": 8609, + "properties": { + "age": "6" + } + }, + { + "id": 8610, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:potted_acacia_sapling": { + "states": [ + { + "default": true, + "id": 8573 + } + ] + }, + "minecraft:potted_allium": { + "states": [ + { + "default": true, + "id": 8581 + } + ] + }, + "minecraft:potted_azalea_bush": { + "states": [ + { + "default": true, + "id": 26561 + } + ] + }, + "minecraft:potted_azure_bluet": { + "states": [ + { + "default": true, + "id": 8582 + } + ] + }, + "minecraft:potted_bamboo": { + "states": [ + { + "default": true, + "id": 12957 + } + ] + }, + "minecraft:potted_birch_sapling": { + "states": [ + { + "default": true, + "id": 8571 + } + ] + }, + "minecraft:potted_blue_orchid": { + "states": [ + { + "default": true, + "id": 8580 + } + ] + }, + "minecraft:potted_brown_mushroom": { + "states": [ + { + "default": true, + "id": 8592 + } + ] + }, + "minecraft:potted_cactus": { + "states": [ + { + "default": true, + "id": 8594 + } + ] + }, + "minecraft:potted_cherry_sapling": { + "states": [ + { + "default": true, + "id": 8574 + } + ] + }, + "minecraft:potted_cornflower": { + "states": [ + { + "default": true, + "id": 8588 + } + ] + }, + "minecraft:potted_crimson_fungus": { + "states": [ + { + "default": true, + "id": 19455 + } + ] + }, + "minecraft:potted_crimson_roots": { + "states": [ + { + "default": true, + "id": 19457 + } + ] + }, + "minecraft:potted_dandelion": { + "states": [ + { + "default": true, + "id": 8578 + } + ] + }, + "minecraft:potted_dark_oak_sapling": { + "states": [ + { + "default": true, + "id": 8575 + } + ] + }, + "minecraft:potted_dead_bush": { + "states": [ + { + "default": true, + "id": 8593 + } + ] + }, + "minecraft:potted_fern": { + "states": [ + { + "default": true, + "id": 8577 + } + ] + }, + "minecraft:potted_flowering_azalea_bush": { + "states": [ + { + "default": true, + "id": 26562 + } + ] + }, + "minecraft:potted_jungle_sapling": { + "states": [ + { + "default": true, + "id": 8572 + } + ] + }, + "minecraft:potted_lily_of_the_valley": { + "states": [ + { + "default": true, + "id": 8589 + } + ] + }, + "minecraft:potted_mangrove_propagule": { + "states": [ + { + "default": true, + "id": 8576 + } + ] + }, + "minecraft:potted_oak_sapling": { + "states": [ + { + "default": true, + "id": 8569 + } + ] + }, + "minecraft:potted_orange_tulip": { + "states": [ + { + "default": true, + "id": 8584 + } + ] + }, + "minecraft:potted_oxeye_daisy": { + "states": [ + { + "default": true, + "id": 8587 + } + ] + }, + "minecraft:potted_pink_tulip": { + "states": [ + { + "default": true, + "id": 8586 + } + ] + }, + "minecraft:potted_poppy": { + "states": [ + { + "default": true, + "id": 8579 + } + ] + }, + "minecraft:potted_red_mushroom": { + "states": [ + { + "default": true, + "id": 8591 + } + ] + }, + "minecraft:potted_red_tulip": { + "states": [ + { + "default": true, + "id": 8583 + } + ] + }, + "minecraft:potted_spruce_sapling": { + "states": [ + { + "default": true, + "id": 8570 + } + ] + }, + "minecraft:potted_torchflower": { + "states": [ + { + "default": true, + "id": 8568 + } + ] + }, + "minecraft:potted_warped_fungus": { + "states": [ + { + "default": true, + "id": 19456 + } + ] + }, + "minecraft:potted_warped_roots": { + "states": [ + { + "default": true, + "id": 19458 + } + ] + }, + "minecraft:potted_white_tulip": { + "states": [ + { + "default": true, + "id": 8585 + } + ] + }, + "minecraft:potted_wither_rose": { + "states": [ + { + "default": true, + "id": 8590 + } + ] + }, + "minecraft:powder_snow": { + "states": [ + { + "default": true, + "id": 22318 + } + ] + }, + "minecraft:powder_snow_cauldron": { + "properties": { + "level": [ + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 7403, + "properties": { + "level": "1" + } + }, + { + "id": 7404, + "properties": { + "level": "2" + } + }, + { + "id": 7405, + "properties": { + "level": "3" + } + } + ] + }, + "minecraft:powered_rail": { + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 1944, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "id": 1945, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 1946, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 1947, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 1948, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 1949, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 1950, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 1951, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 1952, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 1953, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 1954, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 1955, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 1956, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 1957, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 1958, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 1959, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 1960, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 1961, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 1962, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 1963, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 1964, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 1965, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 1966, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 1967, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine": { + "states": [ + { + "default": true, + "id": 10463 + } + ] + }, + "minecraft:prismarine_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10712, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 10713, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 10714, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10715, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 10716, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 10717, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10546, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10547, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10548, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10549, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10550, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10551, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10552, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10553, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10554, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10555, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10556, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10557, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10558, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10559, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10560, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10561, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10562, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10563, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10564, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10565, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10566, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10567, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10568, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10569, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10570, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10571, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10572, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10573, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10574, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10575, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10576, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10577, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10578, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10579, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10580, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10581, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10582, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10583, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10584, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10585, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10586, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10587, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10588, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10589, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10590, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10591, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10592, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10593, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10594, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10595, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10596, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10597, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10598, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10599, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10600, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10601, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10602, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10603, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10604, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10605, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10606, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10607, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10608, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10609, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10610, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10611, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10612, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10613, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10614, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10615, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10616, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10617, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10618, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10619, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10620, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10621, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10622, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10623, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10624, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10625, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_bricks": { + "states": [ + { + "default": true, + "id": 10464 + } + ] + }, + "minecraft:prismarine_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10706, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 10707, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 10708, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10709, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 10710, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 10711, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10466, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10467, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10468, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10469, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10470, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10471, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10472, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10473, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10474, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10475, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10476, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10477, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10478, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10479, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10480, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10481, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10482, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10483, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10484, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10485, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10486, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10487, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10488, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10489, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10490, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10491, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10492, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10493, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10494, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10495, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10496, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10497, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10498, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10499, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10500, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10501, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10502, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10503, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10504, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10505, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10506, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10507, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10508, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10509, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10510, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10511, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10512, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10513, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10514, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10515, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10516, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10517, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10518, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10519, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10520, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10521, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10522, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10523, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10524, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10525, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10526, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10527, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10528, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10529, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10530, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10531, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10532, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10533, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10534, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10535, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10536, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10537, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10538, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10539, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10540, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10541, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10542, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10543, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10544, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10545, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 14484, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14485, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14486, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 14487, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14488, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14489, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14490, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14491, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14492, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14493, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14494, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14495, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14496, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14497, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14498, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14499, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14500, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14501, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14502, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14503, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14504, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14505, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14506, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14507, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14508, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14509, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14510, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14511, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14512, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14513, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14514, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14515, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14516, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14517, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14518, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14519, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14520, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14521, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14522, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14523, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14524, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14525, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14526, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14527, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14528, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14529, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14530, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14531, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14532, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14533, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14534, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14535, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14536, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14537, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14538, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14539, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14540, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14541, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14542, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14543, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14544, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14545, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14546, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14547, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14548, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14549, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14550, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14551, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14552, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14553, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14554, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14555, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14556, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14557, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14558, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14559, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14560, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14561, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14562, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14563, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14564, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14565, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14566, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14567, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14568, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14569, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14570, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14571, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14572, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14573, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14574, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14575, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14576, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14577, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14578, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14579, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14580, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14581, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14582, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14583, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14584, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14585, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14586, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14587, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14588, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14589, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14590, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14591, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14592, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14593, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14594, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14595, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14596, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14597, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14598, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14599, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14600, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14601, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14602, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14603, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14604, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14605, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14606, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14607, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14608, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14609, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14610, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14611, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14612, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14613, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14614, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14615, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14616, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14617, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14618, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14619, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14620, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14621, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14622, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14623, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14624, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14625, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14626, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14627, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14628, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14629, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14630, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14631, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14632, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14633, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14634, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14635, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14636, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14637, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14638, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14639, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14640, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14641, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14642, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14643, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14644, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14645, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14646, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14647, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14648, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14649, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14650, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14651, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14652, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14653, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14654, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14655, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14656, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14657, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14658, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14659, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14660, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14661, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14662, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14663, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14664, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14665, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14666, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14667, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14668, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14669, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14670, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14671, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14672, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14673, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14674, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14675, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14676, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14677, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14678, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14679, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14680, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14681, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14682, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14683, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14684, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14685, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14686, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14687, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14688, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14689, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14690, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14691, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14692, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14693, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14694, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14695, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14696, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14697, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14698, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14699, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14700, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14701, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14702, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14703, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14704, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14705, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14706, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14707, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14708, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14709, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14710, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14711, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14712, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14713, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14714, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14715, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14716, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14717, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14718, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14719, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14720, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14721, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14722, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14723, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14724, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14725, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14726, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14727, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14728, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14729, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14730, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14731, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14732, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14733, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14734, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14735, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14736, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14737, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14738, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14739, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14740, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14741, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14742, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14743, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14744, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14745, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14746, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14747, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14748, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14749, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14750, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14751, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14752, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14753, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14754, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14755, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14756, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14757, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14758, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14759, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14760, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14761, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14762, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14763, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14764, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14765, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14766, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14767, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14768, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14769, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14770, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14771, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14772, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14773, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14774, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14775, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14776, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14777, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14778, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14779, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14780, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14781, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14782, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14783, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14784, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14785, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14786, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14787, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14788, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14789, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14790, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14791, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14792, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14793, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14794, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14795, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14796, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14797, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14798, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14799, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14800, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14801, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14802, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14803, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14804, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14805, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14806, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14807, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:pumpkin": { + "states": [ + { + "default": true, + "id": 6811 + } + ] + }, + "minecraft:pumpkin_stem": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 6821, + "properties": { + "age": "0" + } + }, + { + "id": 6822, + "properties": { + "age": "1" + } + }, + { + "id": 6823, + "properties": { + "age": "2" + } + }, + { + "id": 6824, + "properties": { + "age": "3" + } + }, + { + "id": 6825, + "properties": { + "age": "4" + } + }, + { + "id": 6826, + "properties": { + "age": "5" + } + }, + { + "id": 6827, + "properties": { + "age": "6" + } + }, + { + "id": 6828, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:purple_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10919, + "properties": { + "rotation": "0" + } + }, + { + "id": 10920, + "properties": { + "rotation": "1" + } + }, + { + "id": 10921, + "properties": { + "rotation": "2" + } + }, + { + "id": 10922, + "properties": { + "rotation": "3" + } + }, + { + "id": 10923, + "properties": { + "rotation": "4" + } + }, + { + "id": 10924, + "properties": { + "rotation": "5" + } + }, + { + "id": 10925, + "properties": { + "rotation": "6" + } + }, + { + "id": 10926, + "properties": { + "rotation": "7" + } + }, + { + "id": 10927, + "properties": { + "rotation": "8" + } + }, + { + "id": 10928, + "properties": { + "rotation": "9" + } + }, + { + "id": 10929, + "properties": { + "rotation": "10" + } + }, + { + "id": 10930, + "properties": { + "rotation": "11" + } + }, + { + "id": 10931, + "properties": { + "rotation": "12" + } + }, + { + "id": 10932, + "properties": { + "rotation": "13" + } + }, + { + "id": 10933, + "properties": { + "rotation": "14" + } + }, + { + "id": 10934, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:purple_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1848, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1849, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1850, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1851, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1852, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1853, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1854, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1855, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1856, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1857, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1858, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1859, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1860, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1861, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1862, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1863, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:purple_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20901, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20902, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20903, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20904, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20905, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20906, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20907, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20908, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20909, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20910, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20911, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20912, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20913, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20914, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20915, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20916, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:purple_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21019, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21020, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:purple_carpet": { + "states": [ + { + "default": true, + "id": 10738 + } + ] + }, + "minecraft:purple_concrete": { + "states": [ + { + "default": true, + "id": 12738 + } + ] + }, + "minecraft:purple_concrete_powder": { + "states": [ + { + "default": true, + "id": 12754 + } + ] + }, + "minecraft:purple_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12704, + "properties": { + "facing": "north" + } + }, + { + "id": 12705, + "properties": { + "facing": "south" + } + }, + { + "id": 12706, + "properties": { + "facing": "west" + } + }, + { + "id": 12707, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:purple_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12628, + "properties": { + "facing": "north" + } + }, + { + "id": 12629, + "properties": { + "facing": "east" + } + }, + { + "id": 12630, + "properties": { + "facing": "south" + } + }, + { + "id": 12631, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12632, + "properties": { + "facing": "up" + } + }, + { + "id": 12633, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:purple_stained_glass": { + "states": [ + { + "default": true, + "id": 5955 + } + ] + }, + "minecraft:purple_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9692, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9693, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9694, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9695, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9696, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9697, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9698, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9699, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9700, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9701, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9702, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9703, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9704, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9705, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9706, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9707, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9708, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9709, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9710, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9711, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9712, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9713, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9714, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9715, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9716, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9717, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9718, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9719, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9720, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9721, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9722, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9723, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:purple_terracotta": { + "states": [ + { + "default": true, + "id": 9366 + } + ] + }, + "minecraft:purple_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11055, + "properties": { + "facing": "north" + } + }, + { + "id": 11056, + "properties": { + "facing": "south" + } + }, + { + "id": 11057, + "properties": { + "facing": "west" + } + }, + { + "id": 11058, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:purple_wool": { + "states": [ + { + "default": true, + "id": 2057 + } + ] + }, + "minecraft:purpur_block": { + "states": [ + { + "default": true, + "id": 12410 + } + ] + }, + "minecraft:purpur_pillar": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 12411, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 12412, + "properties": { + "axis": "y" + } + }, + { + "id": 12413, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:purpur_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11300, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11301, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11302, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11303, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11304, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11305, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:purpur_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12414, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12415, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12416, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12417, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12418, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12419, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12420, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12421, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12422, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12423, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12424, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12425, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12426, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12427, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12428, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12429, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12430, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12431, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12432, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12433, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12434, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12435, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12436, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12437, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12438, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12439, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12440, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12441, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12442, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12443, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12444, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12445, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12446, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12447, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12448, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12449, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12450, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12451, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12452, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12453, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12454, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12455, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12456, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12457, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12458, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12459, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12460, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12461, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12462, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12463, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12464, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12465, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12466, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12467, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12468, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12469, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12470, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12471, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12472, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12473, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12474, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12475, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12476, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12477, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12478, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12479, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12480, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12481, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12482, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12483, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12484, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12485, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12486, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12487, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12488, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12489, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12490, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12491, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12492, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12493, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:quartz_block": { + "states": [ + { + "default": true, + "id": 9235 + } + ] + }, + "minecraft:quartz_bricks": { + "states": [ + { + "default": true, + "id": 20724 + } + ] + }, + "minecraft:quartz_pillar": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 9237, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 9238, + "properties": { + "axis": "y" + } + }, + { + "id": 9239, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:quartz_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11282, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11283, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11284, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11285, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11286, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11287, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:quartz_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9240, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9241, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9242, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9243, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9244, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9245, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9246, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9247, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9248, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9249, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9250, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9251, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9252, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9253, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9254, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9255, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9256, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9257, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9258, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9259, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9260, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9261, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9262, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9263, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9264, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9265, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9266, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9267, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9268, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9269, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9270, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9271, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9272, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9273, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9274, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9275, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9276, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9277, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9278, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9279, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9280, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9281, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9282, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9283, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9284, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9285, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9286, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9287, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9288, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9289, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9290, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9291, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9292, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9293, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9294, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9295, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9296, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9297, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9298, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9299, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9300, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9301, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9302, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9303, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9304, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9305, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9306, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9307, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9308, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9309, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9310, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9311, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9312, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9313, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9314, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9315, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9316, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9317, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9318, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9319, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:rail": { + "properties": { + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south", + "south_east", + "south_west", + "north_west", + "north_east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4662, + "properties": { + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4663, + "properties": { + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 4664, + "properties": { + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 4665, + "properties": { + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 4666, + "properties": { + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 4667, + "properties": { + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 4668, + "properties": { + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 4669, + "properties": { + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 4670, + "properties": { + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 4671, + "properties": { + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 4672, + "properties": { + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 4673, + "properties": { + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 4674, + "properties": { + "shape": "south_east", + "waterlogged": "true" + } + }, + { + "id": 4675, + "properties": { + "shape": "south_east", + "waterlogged": "false" + } + }, + { + "id": 4676, + "properties": { + "shape": "south_west", + "waterlogged": "true" + } + }, + { + "id": 4677, + "properties": { + "shape": "south_west", + "waterlogged": "false" + } + }, + { + "id": 4678, + "properties": { + "shape": "north_west", + "waterlogged": "true" + } + }, + { + "id": 4679, + "properties": { + "shape": "north_west", + "waterlogged": "false" + } + }, + { + "id": 4680, + "properties": { + "shape": "north_east", + "waterlogged": "true" + } + }, + { + "id": 4681, + "properties": { + "shape": "north_east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:raw_copper_block": { + "states": [ + { + "default": true, + "id": 26559 + } + ] + }, + "minecraft:raw_gold_block": { + "states": [ + { + "default": true, + "id": 26560 + } + ] + }, + "minecraft:raw_iron_block": { + "states": [ + { + "default": true, + "id": 26558 + } + ] + }, + "minecraft:red_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10983, + "properties": { + "rotation": "0" + } + }, + { + "id": 10984, + "properties": { + "rotation": "1" + } + }, + { + "id": 10985, + "properties": { + "rotation": "2" + } + }, + { + "id": 10986, + "properties": { + "rotation": "3" + } + }, + { + "id": 10987, + "properties": { + "rotation": "4" + } + }, + { + "id": 10988, + "properties": { + "rotation": "5" + } + }, + { + "id": 10989, + "properties": { + "rotation": "6" + } + }, + { + "id": 10990, + "properties": { + "rotation": "7" + } + }, + { + "id": 10991, + "properties": { + "rotation": "8" + } + }, + { + "id": 10992, + "properties": { + "rotation": "9" + } + }, + { + "id": 10993, + "properties": { + "rotation": "10" + } + }, + { + "id": 10994, + "properties": { + "rotation": "11" + } + }, + { + "id": 10995, + "properties": { + "rotation": "12" + } + }, + { + "id": 10996, + "properties": { + "rotation": "13" + } + }, + { + "id": 10997, + "properties": { + "rotation": "14" + } + }, + { + "id": 10998, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:red_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1912, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1913, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1914, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1915, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1916, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1917, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1918, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1919, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1920, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1921, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1922, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1923, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1924, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1925, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1926, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1927, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:red_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20965, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20966, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20967, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20968, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20969, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20970, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20971, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20972, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20973, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20974, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20975, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20976, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20977, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20978, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20979, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20980, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21027, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21028, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:red_carpet": { + "states": [ + { + "default": true, + "id": 10742 + } + ] + }, + "minecraft:red_concrete": { + "states": [ + { + "default": true, + "id": 12742 + } + ] + }, + "minecraft:red_concrete_powder": { + "states": [ + { + "default": true, + "id": 12758 + } + ] + }, + "minecraft:red_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12720, + "properties": { + "facing": "north" + } + }, + { + "id": 12721, + "properties": { + "facing": "south" + } + }, + { + "id": 12722, + "properties": { + "facing": "west" + } + }, + { + "id": 12723, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:red_mushroom": { + "states": [ + { + "default": true, + "id": 2090 + } + ] + }, + "minecraft:red_mushroom_block": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 6613, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6614, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6615, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6616, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6617, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6618, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6619, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6620, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6621, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6622, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6623, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6624, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6625, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6626, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6627, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6628, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6629, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6630, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6631, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6632, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6633, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6634, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6635, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6636, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6637, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6638, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6639, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6640, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6641, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6642, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6643, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6644, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6645, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6646, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6647, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6648, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6649, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6650, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6651, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6652, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6653, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6654, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6655, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6656, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6657, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6658, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6659, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6660, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6661, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6662, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6663, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6664, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6665, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6666, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6667, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6668, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6669, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6670, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6671, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6672, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6673, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6674, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6675, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6676, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:red_nether_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14142, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14143, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14144, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14145, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14146, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14147, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_nether_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13842, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13843, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13844, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13845, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13846, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13847, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13848, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13849, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13850, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13851, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13852, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13853, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13854, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13855, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13856, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13857, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13858, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13859, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13860, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13861, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13862, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13863, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13864, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13865, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13866, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13867, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13868, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13869, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13870, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13871, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13872, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13873, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13874, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13875, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13876, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13877, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13878, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13879, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13880, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13881, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13882, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13883, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13884, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13885, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13886, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13887, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13888, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13889, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13890, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13891, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13892, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13893, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13894, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13895, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13896, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13897, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13898, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13899, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13900, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13901, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13902, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13903, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13904, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13905, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13906, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13907, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13908, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13909, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13910, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13911, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13912, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13913, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13914, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13915, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13916, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13917, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13918, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13919, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13920, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13921, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_nether_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17076, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17077, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17078, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 17079, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17080, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17081, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17082, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17083, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17084, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17085, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17086, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17087, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17088, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17089, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17090, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17091, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17092, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17093, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17094, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17095, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17096, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17097, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17098, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17099, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17100, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17101, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17102, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17103, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17104, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17105, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17106, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17107, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17108, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17109, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17110, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17111, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17112, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17113, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17114, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17115, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17116, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17117, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17118, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17119, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17120, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17121, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17122, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17123, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17124, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17125, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17126, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17127, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17128, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17129, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17130, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17131, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17132, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17133, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17134, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17135, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17136, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17137, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17138, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17139, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17140, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17141, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17142, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17143, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17144, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17145, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17146, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17147, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17148, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17149, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17150, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17151, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17152, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17153, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17154, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17155, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17156, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17157, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17158, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17159, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17160, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17161, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17162, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17163, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17164, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17165, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17166, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17167, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17168, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17169, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17170, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17171, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17172, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17173, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17174, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17175, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17176, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17177, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17178, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17179, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17180, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17181, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17182, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17183, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17184, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17185, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17186, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17187, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17188, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17189, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17190, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17191, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17192, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17193, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17194, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17195, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17196, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17197, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17198, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17199, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17200, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17201, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17202, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17203, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17204, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17205, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17206, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17207, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17208, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17209, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17210, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17211, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17212, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17213, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17214, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17215, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17216, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17217, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17218, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17219, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17220, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17221, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17222, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17223, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17224, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17225, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17226, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17227, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17228, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17229, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17230, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17231, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17232, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17233, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17234, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17235, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17236, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17237, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17238, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17239, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17240, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17241, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17242, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17243, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17244, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17245, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17246, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17247, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17248, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17249, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17250, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17251, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17252, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17253, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17254, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17255, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17256, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17257, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17258, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17259, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17260, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17261, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17262, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17263, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17264, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17265, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17266, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17267, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17268, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17269, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17270, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17271, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17272, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17273, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17274, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17275, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17276, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17277, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17278, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17279, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17280, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17281, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17282, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17283, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17284, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17285, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17286, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17287, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17288, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17289, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17290, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17291, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17292, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17293, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17294, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17295, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17296, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17297, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17298, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17299, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17300, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17301, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17302, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17303, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17304, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17305, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17306, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17307, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17308, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17309, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17310, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17311, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17312, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17313, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17314, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17315, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17316, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17317, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17318, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17319, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17320, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17321, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17322, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17323, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17324, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17325, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17326, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17327, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17328, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17329, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17330, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17331, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17332, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17333, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17334, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17335, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17336, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17337, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17338, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17339, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17340, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17341, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17342, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17343, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17344, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17345, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17346, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17347, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17348, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17349, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17350, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17351, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17352, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17353, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17354, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17355, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17356, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17357, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17358, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17359, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17360, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17361, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17362, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17363, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17364, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17365, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17366, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17367, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17368, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17369, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17370, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17371, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17372, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17373, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17374, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17375, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17376, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17377, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17378, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17379, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17380, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17381, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17382, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17383, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17384, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17385, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17386, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17387, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17388, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17389, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17390, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17391, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17392, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17393, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17394, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17395, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17396, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17397, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17398, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17399, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:red_nether_bricks": { + "states": [ + { + "default": true, + "id": 12545 + } + ] + }, + "minecraft:red_sand": { + "states": [ + { + "default": true, + "id": 117 + } + ] + }, + "minecraft:red_sandstone": { + "states": [ + { + "default": true, + "id": 11079 + } + ] + }, + "minecraft:red_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11288, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11289, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11290, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11291, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11292, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11293, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_sandstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11082, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11083, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11084, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11085, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11086, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11087, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11088, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11089, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11090, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11091, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11092, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11093, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11094, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11095, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11096, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11097, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11098, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11099, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11100, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11101, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11102, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11103, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11104, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11105, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11106, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11107, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11108, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11109, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11110, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11111, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11112, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11113, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11114, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11115, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11116, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11117, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11118, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11119, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11120, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11121, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11122, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11123, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11124, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11125, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11126, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11127, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11128, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11129, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11130, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11131, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11132, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11133, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11134, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11135, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11136, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11137, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11138, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11139, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11140, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11141, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11142, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11143, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11144, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11145, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11146, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11147, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11148, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11149, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11150, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11151, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11152, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11153, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11154, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11155, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11156, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11157, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11158, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11159, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11160, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11161, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_sandstone_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 14808, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14809, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14810, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 14811, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14812, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14813, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14814, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14815, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14816, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14817, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14818, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14819, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14820, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14821, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14822, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14823, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14824, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14825, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14826, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14827, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14828, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14829, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14830, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14831, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14832, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14833, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14834, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14835, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14836, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14837, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14838, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14839, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14840, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14841, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14842, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14843, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14844, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14845, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14846, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14847, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14848, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14849, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14850, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14851, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14852, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14853, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14854, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14855, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14856, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14857, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14858, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14859, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14860, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14861, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14862, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14863, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14864, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14865, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14866, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14867, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14868, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14869, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14870, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14871, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14872, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14873, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14874, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14875, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14876, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14877, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14878, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14879, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14880, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14881, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14882, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14883, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14884, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14885, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14886, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14887, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14888, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14889, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14890, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14891, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14892, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14893, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14894, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14895, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14896, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14897, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14898, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14899, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14900, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14901, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14902, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14903, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14904, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14905, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14906, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14907, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14908, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14909, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14910, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14911, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14912, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14913, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14914, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14915, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14916, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14917, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14918, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14919, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14920, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14921, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14922, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14923, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14924, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14925, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14926, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14927, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14928, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14929, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14930, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14931, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14932, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14933, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14934, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14935, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14936, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14937, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14938, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14939, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14940, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14941, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14942, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14943, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14944, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14945, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14946, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14947, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14948, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14949, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14950, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14951, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14952, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14953, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14954, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14955, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14956, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14957, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14958, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14959, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14960, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14961, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14962, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14963, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14964, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14965, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14966, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14967, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14968, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14969, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14970, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14971, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14972, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14973, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14974, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14975, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14976, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14977, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14978, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14979, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14980, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14981, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14982, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14983, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14984, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14985, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14986, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14987, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14988, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14989, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14990, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14991, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14992, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14993, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14994, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14995, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14996, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14997, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14998, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14999, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15000, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15001, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15002, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15003, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15004, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15005, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15006, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15007, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15008, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15009, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15010, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15011, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15012, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15013, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15014, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15015, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15016, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15017, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15018, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15019, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15020, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15021, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15022, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15023, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15024, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15025, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15026, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15027, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15028, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15029, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15030, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15031, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15032, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15033, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15034, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15035, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15036, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15037, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15038, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15039, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15040, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15041, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15042, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15043, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15044, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15045, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15046, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15047, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15048, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15049, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15050, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15051, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15052, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15053, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15054, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15055, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15056, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15057, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15058, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15059, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15060, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15061, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15062, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15063, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15064, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15065, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15066, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15067, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15068, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15069, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15070, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15071, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15072, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15073, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15074, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15075, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15076, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15077, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15078, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15079, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15080, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15081, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15082, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15083, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15084, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15085, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15086, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15087, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15088, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15089, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15090, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15091, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15092, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15093, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15094, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15095, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15096, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15097, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15098, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15099, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15100, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15101, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15102, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15103, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15104, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15105, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15106, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15107, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15108, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15109, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15110, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15111, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15112, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15113, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15114, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15115, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15116, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15117, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15118, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15119, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15120, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15121, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15122, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15123, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15124, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15125, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15126, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15127, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15128, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15129, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15130, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15131, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:red_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12652, + "properties": { + "facing": "north" + } + }, + { + "id": 12653, + "properties": { + "facing": "east" + } + }, + { + "id": 12654, + "properties": { + "facing": "south" + } + }, + { + "id": 12655, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12656, + "properties": { + "facing": "up" + } + }, + { + "id": 12657, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:red_stained_glass": { + "states": [ + { + "default": true, + "id": 5959 + } + ] + }, + "minecraft:red_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9820, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9821, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9822, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9823, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9824, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9825, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9826, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9827, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9828, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9829, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9830, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9831, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9832, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9833, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9834, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9835, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9836, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9837, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9838, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9839, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9840, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9841, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9842, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9843, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9844, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9845, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9846, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9847, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9848, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9849, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9850, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9851, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:red_terracotta": { + "states": [ + { + "default": true, + "id": 9370 + } + ] + }, + "minecraft:red_tulip": { + "states": [ + { + "default": true, + "id": 2081 + } + ] + }, + "minecraft:red_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11071, + "properties": { + "facing": "north" + } + }, + { + "id": 11072, + "properties": { + "facing": "south" + } + }, + { + "id": 11073, + "properties": { + "facing": "west" + } + }, + { + "id": 11074, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:red_wool": { + "states": [ + { + "default": true, + "id": 2061 + } + ] + }, + "minecraft:redstone_block": { + "states": [ + { + "default": true, + "id": 9223 + } + ] + }, + "minecraft:redstone_lamp": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7417, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 7418, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:redstone_ore": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5734, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 5735, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:redstone_torch": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 5738, + "properties": { + "lit": "true" + } + }, + { + "id": 5739, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:redstone_wall_torch": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 5740, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "id": 5741, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 5742, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 5743, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 5744, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 5745, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 5746, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 5747, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:redstone_wire": { + "properties": { + "east": [ + "up", + "side", + "none" + ], + "north": [ + "up", + "side", + "none" + ], + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "south": [ + "up", + "side", + "none" + ], + "west": [ + "up", + "side", + "none" + ] + }, + "states": [ + { + "id": 2978, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 2979, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 2980, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 2981, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 2982, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 2983, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 2984, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 2985, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 2986, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 2987, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 2988, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 2989, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 2990, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 2991, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 2992, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 2993, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 2994, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 2995, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 2996, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 2997, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 2998, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 2999, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3000, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3001, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3002, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3003, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3004, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3005, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3006, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3007, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3008, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3009, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3010, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3011, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3012, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3013, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3014, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3015, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3016, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3017, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3018, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3019, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3020, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3021, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3022, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3023, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3024, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3025, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3026, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3027, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3028, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3029, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3030, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3031, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3032, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3033, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3034, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3035, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3036, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3037, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3038, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3039, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3040, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3041, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3042, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3043, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3044, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3045, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3046, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3047, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3048, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3049, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3050, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3051, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3052, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3053, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3054, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3055, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3056, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3057, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3058, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3059, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3060, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3061, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3062, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3063, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3064, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3065, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3066, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3067, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3068, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3069, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3070, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3071, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3072, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3073, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3074, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3075, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3076, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3077, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3078, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3079, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3080, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3081, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3082, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3083, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3084, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3085, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3086, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3087, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3088, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3089, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3090, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3091, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3092, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3093, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3094, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3095, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3096, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3097, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3098, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3099, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3100, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3101, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3102, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3103, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3104, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3105, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3106, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3107, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3108, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3109, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3110, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3111, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3112, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3113, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3114, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3115, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3116, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3117, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3118, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3119, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3120, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3121, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3122, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3123, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3124, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3125, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3126, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3127, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3128, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3129, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3130, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3131, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3132, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3133, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3134, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3135, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3136, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3137, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3138, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3139, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3140, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3141, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3142, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3143, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3144, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3145, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3146, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3147, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3148, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3149, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3150, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3151, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3152, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3153, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3154, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3155, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3156, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3157, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3158, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3159, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3160, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3161, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3162, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3163, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3164, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3165, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3166, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3167, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3168, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3169, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3170, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3171, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3172, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3173, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3174, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3175, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3176, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3177, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3178, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3179, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3180, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3181, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3182, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3183, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3184, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3185, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3186, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3187, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3188, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3189, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3190, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3191, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3192, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3193, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3194, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3195, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3196, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3197, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3198, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3199, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3200, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3201, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3202, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3203, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3204, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3205, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3206, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3207, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3208, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3209, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3210, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3211, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3212, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3213, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3214, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3215, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3216, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3217, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3218, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3219, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3220, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3221, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3222, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3223, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3224, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3225, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3226, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3227, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3228, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3229, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3230, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3231, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3232, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3233, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3234, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3235, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3236, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3237, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3238, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3239, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3240, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3241, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3242, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3243, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3244, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3245, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3246, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3247, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3248, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3249, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3250, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3251, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3252, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3253, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3254, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3255, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3256, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3257, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3258, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3259, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3260, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3261, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3262, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3263, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3264, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3265, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3266, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3267, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3268, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3269, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3270, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3271, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3272, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3273, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3274, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3275, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3276, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3277, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3278, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3279, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3280, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3281, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3282, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3283, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3284, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3285, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3286, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3287, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3288, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3289, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3290, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3291, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3292, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3293, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3294, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3295, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3296, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3297, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3298, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3299, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3300, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3301, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3302, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3303, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3304, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3305, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3306, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3307, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3308, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3309, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3310, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3311, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3312, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3313, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3314, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3315, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3316, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3317, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3318, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3319, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3320, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3321, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3322, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3323, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3324, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3325, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3326, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3327, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3328, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3329, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3330, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3331, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3332, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3333, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3334, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3335, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3336, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3337, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3338, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3339, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3340, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3341, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3342, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3343, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3344, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3345, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3346, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3347, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3348, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3349, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3350, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3351, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3352, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3353, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3354, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3355, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3356, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3357, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3358, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3359, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3360, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3361, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3362, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3363, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3364, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3365, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3366, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3367, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3368, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3369, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3370, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3371, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3372, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3373, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3374, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3375, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3376, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3377, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3378, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3379, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3380, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3381, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3382, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3383, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3384, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3385, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3386, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3387, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3388, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3389, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3390, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3391, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3392, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3393, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3394, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3395, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3396, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3397, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3398, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3399, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3400, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3401, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3402, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3403, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3404, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3405, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3406, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3407, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3408, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3409, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3410, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3411, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3412, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3413, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3414, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3415, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3416, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3417, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3418, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3419, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3420, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3421, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3422, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3423, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3424, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3425, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3426, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3427, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3428, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3429, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3430, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3431, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3432, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3433, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3434, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3435, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3436, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3437, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3438, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3439, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3440, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3441, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3442, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3443, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3444, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3445, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3446, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3447, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3448, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3449, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3450, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3451, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3452, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3453, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3454, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3455, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3456, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3457, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3458, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3459, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3460, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3461, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3462, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3463, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3464, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3465, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3466, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3467, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3468, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3469, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3470, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3471, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3472, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3473, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3474, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3475, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3476, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3477, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3478, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3479, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3480, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3481, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3482, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3483, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3484, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3485, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3486, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3487, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3488, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3489, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3490, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3491, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3492, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3493, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3494, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3495, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3496, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3497, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3498, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3499, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3500, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3501, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3502, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3503, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3504, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3505, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3506, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3507, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3508, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3509, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3510, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3511, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3512, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3513, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3514, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3515, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3516, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3517, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3518, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3519, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3520, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3521, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3522, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3523, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3524, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3525, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3526, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3527, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3528, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3529, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3530, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3531, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3532, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3533, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3534, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3535, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3536, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3537, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3538, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3539, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3540, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3541, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3542, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3543, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3544, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3545, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3546, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3547, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3548, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3549, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3550, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3551, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3552, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3553, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3554, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3555, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3556, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3557, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3558, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3559, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3560, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3561, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3562, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3563, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3564, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3565, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3566, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3567, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3568, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3569, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3570, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3571, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3572, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3573, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3574, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3575, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3576, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3577, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3578, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3579, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3580, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3581, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3582, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3583, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3584, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3585, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3586, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3587, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3588, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3589, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3590, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3591, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3592, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3593, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3594, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3595, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3596, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3597, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3598, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3599, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3600, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3601, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3602, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3603, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3604, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3605, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3606, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3607, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3608, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3609, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3610, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3611, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3612, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3613, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3614, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3615, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3616, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3617, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3618, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3619, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3620, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3621, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3622, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3623, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3624, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3625, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3626, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3627, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3628, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3629, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3630, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3631, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3632, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3633, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3634, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3635, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3636, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3637, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3638, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3639, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3640, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3641, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3642, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3643, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3644, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3645, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3646, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3647, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3648, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3649, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3650, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3651, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3652, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3653, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3654, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3655, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3656, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3657, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3658, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3659, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3660, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3661, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3662, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3663, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3664, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3665, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3666, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3667, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3668, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3669, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3670, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3671, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3672, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3673, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3674, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3675, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3676, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3677, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3678, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3679, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3680, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3681, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3682, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3683, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3684, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3685, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3686, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3687, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3688, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3689, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3690, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3691, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3692, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3693, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3694, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3695, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3696, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3697, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3698, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3699, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3700, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3701, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3702, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3703, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3704, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3705, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3706, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3707, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3708, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3709, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3710, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3711, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3712, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3713, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3714, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3715, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3716, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3717, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3718, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3719, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3720, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3721, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3722, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3723, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3724, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3725, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3726, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3727, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3728, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3729, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3730, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3731, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3732, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3733, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3734, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3735, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3736, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3737, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3738, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3739, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3740, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3741, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3742, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3743, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3744, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3745, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3746, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3747, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3748, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3749, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3750, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3751, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3752, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3753, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3754, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3755, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3756, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3757, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3758, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3759, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3760, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3761, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3762, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3763, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3764, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3765, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3766, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3767, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3768, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3769, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3770, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3771, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3772, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3773, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3774, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3775, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3776, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3777, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3778, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3779, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3780, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3781, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3782, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3783, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3784, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3785, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3786, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3787, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3788, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3789, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3790, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3791, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3792, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3793, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3794, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3795, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3796, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3797, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3798, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3799, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3800, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3801, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3802, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3803, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3804, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3805, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3806, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3807, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3808, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3809, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3810, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3811, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3812, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3813, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3814, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3815, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3816, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3817, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3818, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3819, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3820, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3821, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3822, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3823, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3824, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3825, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3826, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3827, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3828, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3829, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3830, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3831, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3832, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3833, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3834, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3835, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3836, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3837, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3838, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3839, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3840, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3841, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3842, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3843, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3844, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3845, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3846, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3847, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3848, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3849, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3850, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3851, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3852, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3853, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3854, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3855, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3856, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3857, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3858, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3859, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3860, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3861, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3862, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3863, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3864, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3865, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3866, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3867, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3868, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3869, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3870, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3871, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3872, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3873, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3874, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3875, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3876, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3877, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3878, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3879, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3880, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3881, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3882, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3883, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3884, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3885, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3886, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3887, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3888, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3889, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3890, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3891, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3892, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3893, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3894, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3895, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3896, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3897, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3898, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3899, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3900, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3901, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3902, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3903, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3904, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3905, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3906, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3907, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3908, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3909, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3910, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3911, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3912, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3913, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3914, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3915, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3916, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3917, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3918, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3919, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3920, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3921, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3922, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3923, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3924, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3925, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3926, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3927, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3928, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3929, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3930, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3931, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3932, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3933, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3934, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3935, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3936, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3937, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3938, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3939, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3940, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3941, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3942, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3943, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3944, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3945, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3946, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3947, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3948, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3949, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3950, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3951, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3952, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3953, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3954, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3955, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3956, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3957, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3958, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3959, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3960, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3961, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3962, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3963, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3964, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3965, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3966, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3967, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3968, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3969, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3970, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3971, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3972, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3973, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3974, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3975, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3976, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3977, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3978, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3979, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3980, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3981, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3982, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3983, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3984, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3985, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3986, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3987, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3988, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3989, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3990, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3991, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3992, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3993, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3994, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3995, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3996, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3997, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3998, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3999, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4000, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4001, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4002, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4003, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4004, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4005, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4006, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4007, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4008, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4009, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4010, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4011, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4012, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4013, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4014, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4015, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4016, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4017, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4018, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4019, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4020, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4021, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4022, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4023, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4024, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4025, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4026, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4027, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4028, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4029, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4030, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4031, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4032, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4033, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4034, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4035, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4036, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4037, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4038, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4039, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4040, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4041, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4042, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4043, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4044, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4045, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4046, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4047, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4048, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4049, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4050, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4051, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4052, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4053, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4054, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4055, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4056, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4057, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4058, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4059, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4060, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4061, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4062, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4063, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4064, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4065, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4066, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4067, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4068, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4069, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4070, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4071, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4072, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4073, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4074, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4075, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4076, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4077, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4078, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4079, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4080, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4081, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4082, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4083, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4084, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4085, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4086, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4087, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4088, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4089, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4090, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4091, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4092, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4093, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4094, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4095, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4096, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4097, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4098, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4099, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4100, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4101, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4102, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4103, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4104, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4105, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4106, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4107, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4108, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4109, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4110, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 4111, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 4112, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 4113, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 4114, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 4115, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 4116, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 4117, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 4118, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 4119, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 4120, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 4121, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 4122, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4123, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4124, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4125, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4126, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4127, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4128, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4129, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 4130, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 4131, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 4132, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 4133, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 4134, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 4135, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 4136, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 4137, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "default": true, + "id": 4138, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 4139, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 4140, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 4141, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 4142, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 4143, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4144, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4145, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4146, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4147, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4148, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4149, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4150, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4151, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4152, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4153, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4154, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4155, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4156, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4157, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4158, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4159, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4160, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4161, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4162, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4163, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4164, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4165, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4166, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4167, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4168, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4169, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4170, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4171, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4172, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4173, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4174, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4175, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4176, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4177, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4178, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4179, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4180, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4181, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4182, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4183, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4184, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4185, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4186, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4187, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4188, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4189, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4190, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4191, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4192, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4193, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4194, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4195, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4196, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4197, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4198, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4199, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4200, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4201, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4202, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4203, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4204, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4205, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4206, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4207, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4208, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4209, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4210, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4211, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4212, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4213, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4214, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4215, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4216, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4217, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4218, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4219, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4220, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4221, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4222, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4223, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4224, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4225, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4226, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4227, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4228, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4229, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4230, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4231, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4232, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4233, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4234, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4235, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4236, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4237, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4238, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4239, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4240, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4241, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4242, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4243, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4244, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4245, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4246, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4247, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4248, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4249, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4250, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4251, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4252, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4253, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4254, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 4255, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 4256, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 4257, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 4258, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 4259, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 4260, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 4261, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 4262, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 4263, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 4264, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 4265, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 4266, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4267, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4268, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4269, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4270, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4271, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4272, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4273, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + } + } + ] + }, + "minecraft:reinforced_deepslate": { + "states": [ + { + "default": true, + "id": 26573 + } + ] + }, + "minecraft:repeater": { + "properties": { + "delay": [ + "1", + "2", + "3", + "4" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "locked": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5881, + "properties": { + "delay": "1", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5882, + "properties": { + "delay": "1", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5883, + "properties": { + "delay": "1", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 5884, + "properties": { + "delay": "1", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5885, + "properties": { + "delay": "1", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5886, + "properties": { + "delay": "1", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5887, + "properties": { + "delay": "1", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5888, + "properties": { + "delay": "1", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5889, + "properties": { + "delay": "1", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5890, + "properties": { + "delay": "1", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5891, + "properties": { + "delay": "1", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5892, + "properties": { + "delay": "1", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5893, + "properties": { + "delay": "1", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5894, + "properties": { + "delay": "1", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5895, + "properties": { + "delay": "1", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5896, + "properties": { + "delay": "1", + "facing": "east", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5897, + "properties": { + "delay": "2", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5898, + "properties": { + "delay": "2", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5899, + "properties": { + "delay": "2", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5900, + "properties": { + "delay": "2", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5901, + "properties": { + "delay": "2", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5902, + "properties": { + "delay": "2", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5903, + "properties": { + "delay": "2", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5904, + "properties": { + "delay": "2", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5905, + "properties": { + "delay": "2", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5906, + "properties": { + "delay": "2", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5907, + "properties": { + "delay": "2", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5908, + "properties": { + "delay": "2", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5909, + "properties": { + "delay": "2", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5910, + "properties": { + "delay": "2", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5911, + "properties": { + "delay": "2", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5912, + "properties": { + "delay": "2", + "facing": "east", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5913, + "properties": { + "delay": "3", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5914, + "properties": { + "delay": "3", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5915, + "properties": { + "delay": "3", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5916, + "properties": { + "delay": "3", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5917, + "properties": { + "delay": "3", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5918, + "properties": { + "delay": "3", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5919, + "properties": { + "delay": "3", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5920, + "properties": { + "delay": "3", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5921, + "properties": { + "delay": "3", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5922, + "properties": { + "delay": "3", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5923, + "properties": { + "delay": "3", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5924, + "properties": { + "delay": "3", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5925, + "properties": { + "delay": "3", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5926, + "properties": { + "delay": "3", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5927, + "properties": { + "delay": "3", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5928, + "properties": { + "delay": "3", + "facing": "east", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5929, + "properties": { + "delay": "4", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5930, + "properties": { + "delay": "4", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5931, + "properties": { + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5932, + "properties": { + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5933, + "properties": { + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5934, + "properties": { + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5935, + "properties": { + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5936, + "properties": { + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5937, + "properties": { + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5938, + "properties": { + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5939, + "properties": { + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5940, + "properties": { + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5941, + "properties": { + "delay": "4", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5942, + "properties": { + "delay": "4", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5943, + "properties": { + "delay": "4", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5944, + "properties": { + "delay": "4", + "facing": "east", + "locked": "false", + "powered": "false" + } + } + ] + }, + "minecraft:repeating_command_block": { + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12515, + "properties": { + "conditional": "true", + "facing": "north" + } + }, + { + "id": 12516, + "properties": { + "conditional": "true", + "facing": "east" + } + }, + { + "id": 12517, + "properties": { + "conditional": "true", + "facing": "south" + } + }, + { + "id": 12518, + "properties": { + "conditional": "true", + "facing": "west" + } + }, + { + "id": 12519, + "properties": { + "conditional": "true", + "facing": "up" + } + }, + { + "id": 12520, + "properties": { + "conditional": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 12521, + "properties": { + "conditional": "false", + "facing": "north" + } + }, + { + "id": 12522, + "properties": { + "conditional": "false", + "facing": "east" + } + }, + { + "id": 12523, + "properties": { + "conditional": "false", + "facing": "south" + } + }, + { + "id": 12524, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 12525, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 12526, + "properties": { + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:respawn_anchor": { + "properties": { + "charges": [ + "0", + "1", + "2", + "3", + "4" + ] + }, + "states": [ + { + "default": true, + "id": 19450, + "properties": { + "charges": "0" + } + }, + { + "id": 19451, + "properties": { + "charges": "1" + } + }, + { + "id": 19452, + "properties": { + "charges": "2" + } + }, + { + "id": 19453, + "properties": { + "charges": "3" + } + }, + { + "id": 19454, + "properties": { + "charges": "4" + } + } + ] + }, + "minecraft:rooted_dirt": { + "states": [ + { + "default": true, + "id": 24902 + } + ] + }, + "minecraft:rose_bush": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 10751, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 10752, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:sand": { + "states": [ + { + "default": true, + "id": 112 + } + ] + }, + "minecraft:sandstone": { + "states": [ + { + "default": true, + "id": 535 + } + ] + }, + "minecraft:sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11234, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11235, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11236, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11237, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11238, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11239, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sandstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7431, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7432, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7433, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7434, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7435, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7436, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7437, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7438, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7439, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7440, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7441, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7442, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7443, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7444, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7445, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7446, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7447, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7448, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7449, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7450, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7451, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7452, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7453, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7454, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7455, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7456, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7457, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7458, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7459, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7460, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7461, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7462, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7463, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7464, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7465, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7466, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7467, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7468, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7469, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7470, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7471, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7472, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7473, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7474, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7475, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7476, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7477, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7478, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7479, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7480, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7481, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7482, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7483, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7484, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7485, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7486, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7487, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7488, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7489, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7490, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7491, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7492, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7493, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7494, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7495, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7496, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7497, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7498, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7499, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7500, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7501, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7502, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7503, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7504, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7505, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7506, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7507, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7508, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7509, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7510, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sandstone_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17400, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17401, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17402, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 17403, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17404, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17405, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17406, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17407, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17408, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17409, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17410, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17411, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17412, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17413, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17414, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17415, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17416, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17417, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17418, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17419, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17420, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17421, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17422, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17423, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17424, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17425, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17426, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17427, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17428, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17429, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17430, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17431, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17432, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17433, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17434, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17435, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17436, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17437, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17438, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17439, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17440, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17441, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17442, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17443, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17444, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17445, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17446, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17447, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17448, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17449, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17450, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17451, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17452, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17453, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17454, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17455, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17456, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17457, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17458, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17459, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17460, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17461, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17462, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17463, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17464, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17465, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17466, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17467, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17468, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17469, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17470, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17471, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17472, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17473, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17474, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17475, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17476, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17477, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17478, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17479, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17480, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17481, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17482, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17483, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17484, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17485, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17486, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17487, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17488, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17489, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17490, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17491, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17492, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17493, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17494, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17495, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17496, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17497, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17498, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17499, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17500, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17501, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17502, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17503, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17504, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17505, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17506, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17507, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17508, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17509, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17510, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17511, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17512, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17513, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17514, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17515, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17516, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17517, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17518, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17519, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17520, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17521, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17522, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17523, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17524, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17525, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17526, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17527, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17528, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17529, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17530, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17531, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17532, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17533, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17534, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17535, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17536, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17537, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17538, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17539, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17540, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17541, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17542, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17543, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17544, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17545, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17546, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17547, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17548, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17549, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17550, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17551, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17552, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17553, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17554, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17555, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17556, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17557, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17558, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17559, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17560, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17561, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17562, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17563, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17564, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17565, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17566, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17567, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17568, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17569, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17570, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17571, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17572, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17573, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17574, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17575, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17576, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17577, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17578, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17579, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17580, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17581, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17582, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17583, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17584, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17585, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17586, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17587, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17588, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17589, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17590, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17591, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17592, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17593, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17594, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17595, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17596, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17597, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17598, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17599, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17600, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17601, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17602, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17603, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17604, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17605, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17606, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17607, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17608, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17609, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17610, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17611, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17612, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17613, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17614, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17615, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17616, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17617, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17618, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17619, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17620, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17621, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17622, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17623, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17624, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17625, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17626, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17627, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17628, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17629, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17630, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17631, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17632, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17633, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17634, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17635, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17636, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17637, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17638, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17639, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17640, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17641, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17642, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17643, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17644, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17645, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17646, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17647, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17648, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17649, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17650, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17651, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17652, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17653, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17654, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17655, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17656, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17657, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17658, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17659, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17660, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17661, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17662, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17663, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17664, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17665, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17666, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17667, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17668, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17669, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17670, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17671, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17672, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17673, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17674, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17675, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17676, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17677, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17678, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17679, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17680, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17681, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17682, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17683, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17684, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17685, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17686, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17687, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17688, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17689, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17690, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17691, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17692, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17693, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17694, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17695, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17696, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17697, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17698, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17699, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17700, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17701, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17702, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17703, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17704, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17705, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17706, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17707, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17708, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17709, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17710, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17711, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17712, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17713, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17714, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17715, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17716, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17717, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17718, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17719, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17720, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17721, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17722, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17723, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:scaffolding": { + "properties": { + "bottom": [ + "true", + "false" + ], + "distance": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18372, + "properties": { + "bottom": "true", + "distance": "0", + "waterlogged": "true" + } + }, + { + "id": 18373, + "properties": { + "bottom": "true", + "distance": "0", + "waterlogged": "false" + } + }, + { + "id": 18374, + "properties": { + "bottom": "true", + "distance": "1", + "waterlogged": "true" + } + }, + { + "id": 18375, + "properties": { + "bottom": "true", + "distance": "1", + "waterlogged": "false" + } + }, + { + "id": 18376, + "properties": { + "bottom": "true", + "distance": "2", + "waterlogged": "true" + } + }, + { + "id": 18377, + "properties": { + "bottom": "true", + "distance": "2", + "waterlogged": "false" + } + }, + { + "id": 18378, + "properties": { + "bottom": "true", + "distance": "3", + "waterlogged": "true" + } + }, + { + "id": 18379, + "properties": { + "bottom": "true", + "distance": "3", + "waterlogged": "false" + } + }, + { + "id": 18380, + "properties": { + "bottom": "true", + "distance": "4", + "waterlogged": "true" + } + }, + { + "id": 18381, + "properties": { + "bottom": "true", + "distance": "4", + "waterlogged": "false" + } + }, + { + "id": 18382, + "properties": { + "bottom": "true", + "distance": "5", + "waterlogged": "true" + } + }, + { + "id": 18383, + "properties": { + "bottom": "true", + "distance": "5", + "waterlogged": "false" + } + }, + { + "id": 18384, + "properties": { + "bottom": "true", + "distance": "6", + "waterlogged": "true" + } + }, + { + "id": 18385, + "properties": { + "bottom": "true", + "distance": "6", + "waterlogged": "false" + } + }, + { + "id": 18386, + "properties": { + "bottom": "true", + "distance": "7", + "waterlogged": "true" + } + }, + { + "id": 18387, + "properties": { + "bottom": "true", + "distance": "7", + "waterlogged": "false" + } + }, + { + "id": 18388, + "properties": { + "bottom": "false", + "distance": "0", + "waterlogged": "true" + } + }, + { + "id": 18389, + "properties": { + "bottom": "false", + "distance": "0", + "waterlogged": "false" + } + }, + { + "id": 18390, + "properties": { + "bottom": "false", + "distance": "1", + "waterlogged": "true" + } + }, + { + "id": 18391, + "properties": { + "bottom": "false", + "distance": "1", + "waterlogged": "false" + } + }, + { + "id": 18392, + "properties": { + "bottom": "false", + "distance": "2", + "waterlogged": "true" + } + }, + { + "id": 18393, + "properties": { + "bottom": "false", + "distance": "2", + "waterlogged": "false" + } + }, + { + "id": 18394, + "properties": { + "bottom": "false", + "distance": "3", + "waterlogged": "true" + } + }, + { + "id": 18395, + "properties": { + "bottom": "false", + "distance": "3", + "waterlogged": "false" + } + }, + { + "id": 18396, + "properties": { + "bottom": "false", + "distance": "4", + "waterlogged": "true" + } + }, + { + "id": 18397, + "properties": { + "bottom": "false", + "distance": "4", + "waterlogged": "false" + } + }, + { + "id": 18398, + "properties": { + "bottom": "false", + "distance": "5", + "waterlogged": "true" + } + }, + { + "id": 18399, + "properties": { + "bottom": "false", + "distance": "5", + "waterlogged": "false" + } + }, + { + "id": 18400, + "properties": { + "bottom": "false", + "distance": "6", + "waterlogged": "true" + } + }, + { + "id": 18401, + "properties": { + "bottom": "false", + "distance": "6", + "waterlogged": "false" + } + }, + { + "id": 18402, + "properties": { + "bottom": "false", + "distance": "7", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18403, + "properties": { + "bottom": "false", + "distance": "7", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk": { + "states": [ + { + "default": true, + "id": 22799 + } + ] + }, + "minecraft:sculk_catalyst": { + "properties": { + "bloom": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22928, + "properties": { + "bloom": "true" + } + }, + { + "default": true, + "id": 22929, + "properties": { + "bloom": "false" + } + } + ] + }, + "minecraft:sculk_sensor": { + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "sculk_sensor_phase": [ + "inactive", + "active", + "cooldown" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22319, + "properties": { + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22320, + "properties": { + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22321, + "properties": { + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22322, + "properties": { + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22323, + "properties": { + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22324, + "properties": { + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22325, + "properties": { + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22326, + "properties": { + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22327, + "properties": { + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22328, + "properties": { + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22329, + "properties": { + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22330, + "properties": { + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22331, + "properties": { + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22332, + "properties": { + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22333, + "properties": { + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22334, + "properties": { + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22335, + "properties": { + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22336, + "properties": { + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22337, + "properties": { + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22338, + "properties": { + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22339, + "properties": { + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22340, + "properties": { + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22341, + "properties": { + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22342, + "properties": { + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22343, + "properties": { + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22344, + "properties": { + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22345, + "properties": { + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22346, + "properties": { + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22347, + "properties": { + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22348, + "properties": { + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22349, + "properties": { + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22350, + "properties": { + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22351, + "properties": { + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22352, + "properties": { + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22353, + "properties": { + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22354, + "properties": { + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22355, + "properties": { + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22356, + "properties": { + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22357, + "properties": { + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22358, + "properties": { + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22359, + "properties": { + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22360, + "properties": { + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22361, + "properties": { + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22362, + "properties": { + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22363, + "properties": { + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22364, + "properties": { + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22365, + "properties": { + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22366, + "properties": { + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22367, + "properties": { + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22368, + "properties": { + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22369, + "properties": { + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22370, + "properties": { + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22371, + "properties": { + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22372, + "properties": { + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22373, + "properties": { + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22374, + "properties": { + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22375, + "properties": { + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22376, + "properties": { + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22377, + "properties": { + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22378, + "properties": { + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22379, + "properties": { + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22380, + "properties": { + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22381, + "properties": { + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22382, + "properties": { + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22383, + "properties": { + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22384, + "properties": { + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22385, + "properties": { + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22386, + "properties": { + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22387, + "properties": { + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22388, + "properties": { + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22389, + "properties": { + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22390, + "properties": { + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22391, + "properties": { + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22392, + "properties": { + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22393, + "properties": { + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22394, + "properties": { + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22395, + "properties": { + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22396, + "properties": { + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22397, + "properties": { + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22398, + "properties": { + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22399, + "properties": { + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22400, + "properties": { + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22401, + "properties": { + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22402, + "properties": { + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22403, + "properties": { + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22404, + "properties": { + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22405, + "properties": { + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22406, + "properties": { + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22407, + "properties": { + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22408, + "properties": { + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22409, + "properties": { + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22410, + "properties": { + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22411, + "properties": { + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22412, + "properties": { + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22413, + "properties": { + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22414, + "properties": { + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk_shrieker": { + "properties": { + "can_summon": [ + "true", + "false" + ], + "shrieking": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22930, + "properties": { + "can_summon": "true", + "shrieking": "true", + "waterlogged": "true" + } + }, + { + "id": 22931, + "properties": { + "can_summon": "true", + "shrieking": "true", + "waterlogged": "false" + } + }, + { + "id": 22932, + "properties": { + "can_summon": "true", + "shrieking": "false", + "waterlogged": "true" + } + }, + { + "id": 22933, + "properties": { + "can_summon": "true", + "shrieking": "false", + "waterlogged": "false" + } + }, + { + "id": 22934, + "properties": { + "can_summon": "false", + "shrieking": "true", + "waterlogged": "true" + } + }, + { + "id": 22935, + "properties": { + "can_summon": "false", + "shrieking": "true", + "waterlogged": "false" + } + }, + { + "id": 22936, + "properties": { + "can_summon": "false", + "shrieking": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22937, + "properties": { + "can_summon": "false", + "shrieking": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk_vein": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22800, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22801, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22802, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22803, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22804, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22805, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22806, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22807, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22808, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22809, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22810, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22811, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22812, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22813, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22814, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22815, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22816, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22817, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22818, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22819, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22820, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22821, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22822, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22823, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22824, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22825, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22826, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22827, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22828, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22829, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22830, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22831, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22832, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22833, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22834, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22835, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22836, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22837, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22838, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22839, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22840, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22841, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22842, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22843, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22844, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22845, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22846, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22847, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22848, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22849, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22850, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22851, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22852, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22853, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22854, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22855, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22856, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22857, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22858, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22859, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22860, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22861, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22862, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22863, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22864, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22865, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22866, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22867, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22868, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22869, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22870, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22871, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22872, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22873, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22874, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22875, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22876, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22877, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22878, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22879, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22880, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22881, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22882, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22883, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22884, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22885, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22886, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22887, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22888, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22889, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22890, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22891, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22892, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22893, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22894, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22895, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22896, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22897, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22898, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22899, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22900, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22901, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22902, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22903, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22904, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22905, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22906, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22907, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22908, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22909, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22910, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22911, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22912, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22913, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22914, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22915, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22916, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22917, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22918, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22919, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22920, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22921, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22922, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22923, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22924, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22925, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22926, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 22927, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:sea_lantern": { + "states": [ + { + "default": true, + "id": 10724 + } + ] + }, + "minecraft:sea_pickle": { + "properties": { + "pickles": [ + "1", + "2", + "3", + "4" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12933, + "properties": { + "pickles": "1", + "waterlogged": "true" + } + }, + { + "id": 12934, + "properties": { + "pickles": "1", + "waterlogged": "false" + } + }, + { + "id": 12935, + "properties": { + "pickles": "2", + "waterlogged": "true" + } + }, + { + "id": 12936, + "properties": { + "pickles": "2", + "waterlogged": "false" + } + }, + { + "id": 12937, + "properties": { + "pickles": "3", + "waterlogged": "true" + } + }, + { + "id": 12938, + "properties": { + "pickles": "3", + "waterlogged": "false" + } + }, + { + "id": 12939, + "properties": { + "pickles": "4", + "waterlogged": "true" + } + }, + { + "id": 12940, + "properties": { + "pickles": "4", + "waterlogged": "false" + } + } + ] + }, + "minecraft:seagrass": { + "states": [ + { + "default": true, + "id": 2008 + } + ] + }, + "minecraft:short_grass": { + "states": [ + { + "default": true, + "id": 2005 + } + ] + }, + "minecraft:shroomlight": { + "states": [ + { + "default": true, + "id": 18610 + } + ] + }, + "minecraft:shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12562, + "properties": { + "facing": "north" + } + }, + { + "id": 12563, + "properties": { + "facing": "east" + } + }, + { + "id": 12564, + "properties": { + "facing": "south" + } + }, + { + "id": 12565, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12566, + "properties": { + "facing": "up" + } + }, + { + "id": 12567, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:skeleton_skull": { + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 8827, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 8828, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 8829, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 8830, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 8831, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 8832, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 8833, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 8834, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 8835, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 8836, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 8837, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 8838, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 8839, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 8840, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 8841, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 8842, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 8843, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 8844, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 8845, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 8846, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 8847, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 8848, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 8849, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 8850, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 8851, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 8852, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 8853, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 8854, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 8855, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 8856, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 8857, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 8858, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:skeleton_wall_skull": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8859, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8860, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 8861, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 8862, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 8863, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 8864, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 8865, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 8866, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:slime_block": { + "states": [ + { + "default": true, + "id": 10364 + } + ] + }, + "minecraft:small_amethyst_bud": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21069, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 21070, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 21071, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 21072, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 21073, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 21074, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 21075, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 21076, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 21077, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21078, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 21079, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 21080, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:small_dripleaf": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24884, + "properties": { + "facing": "north", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 24885, + "properties": { + "facing": "north", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 24886, + "properties": { + "facing": "north", + "half": "lower", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24887, + "properties": { + "facing": "north", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 24888, + "properties": { + "facing": "south", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 24889, + "properties": { + "facing": "south", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 24890, + "properties": { + "facing": "south", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 24891, + "properties": { + "facing": "south", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 24892, + "properties": { + "facing": "west", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 24893, + "properties": { + "facing": "west", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 24894, + "properties": { + "facing": "west", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 24895, + "properties": { + "facing": "west", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 24896, + "properties": { + "facing": "east", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 24897, + "properties": { + "facing": "east", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 24898, + "properties": { + "facing": "east", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 24899, + "properties": { + "facing": "east", + "half": "lower", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smithing_table": { + "states": [ + { + "default": true, + "id": 18466 + } + ] + }, + "minecraft:smoker": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18420, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "default": true, + "id": 18421, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 18422, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 18423, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 18424, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 18425, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 18426, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 18427, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:smooth_basalt": { + "states": [ + { + "default": true, + "id": 26557 + } + ] + }, + "minecraft:smooth_quartz": { + "states": [ + { + "default": true, + "id": 11308 + } + ] + }, + "minecraft:smooth_quartz_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14124, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14125, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14126, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14127, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14128, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14129, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_quartz_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13602, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13603, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13604, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13605, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13606, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13607, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13608, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13609, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13610, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13611, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13612, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13613, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13614, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13615, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13616, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13617, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13618, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13619, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13620, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13621, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13622, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13623, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13624, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13625, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13626, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13627, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13628, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13629, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13630, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13631, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13632, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13633, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13634, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13635, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13636, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13637, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13638, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13639, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13640, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13641, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13642, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13643, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13644, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13645, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13646, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13647, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13648, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13649, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13650, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13651, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13652, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13653, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13654, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13655, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13656, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13657, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13658, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13659, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13660, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13661, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13662, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13663, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13664, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13665, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13666, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13667, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13668, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13669, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13670, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13671, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13672, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13673, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13674, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13675, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13676, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13677, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13678, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13679, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13680, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13681, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_red_sandstone": { + "states": [ + { + "default": true, + "id": 11309 + } + ] + }, + "minecraft:smooth_red_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14088, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14089, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14090, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14091, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14092, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14093, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_red_sandstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13042, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13043, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13044, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13045, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13046, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13047, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13048, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13049, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13050, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13051, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13052, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13053, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13054, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13055, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13056, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13057, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13058, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13059, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13060, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13061, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13062, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13063, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13064, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13065, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13066, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13067, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13068, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13069, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13070, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13071, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13072, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13073, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13074, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13075, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13076, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13077, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13078, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13079, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13080, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13081, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13082, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13083, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13084, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13085, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13086, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13087, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13088, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13089, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13090, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13091, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13092, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13093, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13094, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13095, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13096, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13097, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13098, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13099, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13100, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13101, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13102, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13103, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13104, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13105, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13106, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13107, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13108, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13109, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13110, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13111, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13112, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13113, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13114, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13115, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13116, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13117, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13118, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13119, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13120, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13121, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_sandstone": { + "states": [ + { + "default": true, + "id": 11307 + } + ] + }, + "minecraft:smooth_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14118, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14119, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14120, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14121, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14122, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14123, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_sandstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13522, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13523, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13524, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13525, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13526, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13527, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13528, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13529, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13530, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13531, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13532, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13533, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13534, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13535, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13536, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13537, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13538, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13539, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13540, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13541, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13542, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13543, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13544, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13545, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13546, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13547, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13548, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13549, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13550, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13551, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13552, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13553, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13554, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13555, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13556, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13557, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13558, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13559, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13560, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13561, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13562, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13563, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13564, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13565, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13566, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13567, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13568, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13569, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13570, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13571, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13572, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13573, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13574, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13575, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13576, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13577, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13578, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13579, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13580, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13581, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13582, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13583, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13584, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13585, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13586, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13587, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13588, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13589, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13590, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13591, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13592, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13593, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13594, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13595, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13596, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13597, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13598, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13599, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13600, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13601, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_stone": { + "states": [ + { + "default": true, + "id": 11306 + } + ] + }, + "minecraft:smooth_stone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11228, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11229, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11230, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11231, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11232, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11233, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sniffer_egg": { + "properties": { + "hatch": [ + "0", + "1", + "2" + ] + }, + "states": [ + { + "default": true, + "id": 12800, + "properties": { + "hatch": "0" + } + }, + { + "id": 12801, + "properties": { + "hatch": "1" + } + }, + { + "id": 12802, + "properties": { + "hatch": "2" + } + } + ] + }, + "minecraft:snow": { + "properties": { + "layers": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + }, + "states": [ + { + "default": true, + "id": 5772, + "properties": { + "layers": "1" + } + }, + { + "id": 5773, + "properties": { + "layers": "2" + } + }, + { + "id": 5774, + "properties": { + "layers": "3" + } + }, + { + "id": 5775, + "properties": { + "layers": "4" + } + }, + { + "id": 5776, + "properties": { + "layers": "5" + } + }, + { + "id": 5777, + "properties": { + "layers": "6" + } + }, + { + "id": 5778, + "properties": { + "layers": "7" + } + }, + { + "id": 5779, + "properties": { + "layers": "8" + } + } + ] + }, + "minecraft:snow_block": { + "states": [ + { + "default": true, + "id": 5781 + } + ] + }, + "minecraft:soul_campfire": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ], + "signal_fire": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18543, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18544, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18545, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18546, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18547, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18548, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18549, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18550, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18551, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18552, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18553, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18554, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18555, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18556, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18557, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18558, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18559, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18560, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18561, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18562, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18563, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18564, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18565, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18566, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18567, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18568, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18569, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18570, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18571, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18572, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18573, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18574, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:soul_fire": { + "states": [ + { + "default": true, + "id": 2872 + } + ] + }, + "minecraft:soul_lantern": { + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18507, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 18508, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 18509, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18510, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:soul_sand": { + "states": [ + { + "default": true, + "id": 5850 + } + ] + }, + "minecraft:soul_soil": { + "states": [ + { + "default": true, + "id": 5851 + } + ] + }, + "minecraft:soul_torch": { + "states": [ + { + "default": true, + "id": 5858 + } + ] + }, + "minecraft:soul_wall_torch": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 5859, + "properties": { + "facing": "north" + } + }, + { + "id": 5860, + "properties": { + "facing": "south" + } + }, + { + "id": 5861, + "properties": { + "facing": "west" + } + }, + { + "id": 5862, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:spawner": { + "states": [ + { + "default": true, + "id": 2873 + } + ] + }, + "minecraft:sponge": { + "states": [ + { + "default": true, + "id": 517 + } + ] + }, + "minecraft:spore_blossom": { + "states": [ + { + "default": true, + "id": 24823 + } + ] + }, + "minecraft:spruce_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8635, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8636, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8637, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8638, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8639, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8640, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8641, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8642, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8643, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8644, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8645, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8646, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8647, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8648, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8649, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8650, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8651, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8652, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8653, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8654, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8655, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8656, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8657, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8658, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11822, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11823, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11824, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11825, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11826, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11827, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11828, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11829, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11830, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11831, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11832, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11833, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11834, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11835, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11836, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11837, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11838, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11839, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11840, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11841, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11842, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11843, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11844, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11845, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11846, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11847, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11848, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11849, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11850, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11851, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11852, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11853, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11854, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11855, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11856, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11857, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11858, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11859, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11860, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11861, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11862, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11863, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11864, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11865, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11866, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11867, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11868, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11869, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11870, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11871, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11872, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11873, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11874, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11875, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11876, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11877, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11878, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11879, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11880, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11881, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11882, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11883, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11884, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11885, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11566, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11567, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11568, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11569, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11570, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11571, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11572, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11573, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11574, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11575, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11576, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11577, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11578, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11579, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11580, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11581, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11582, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11583, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11584, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11585, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11586, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11587, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11588, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11589, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11590, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11591, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11592, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11593, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11594, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11595, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11596, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11597, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:spruce_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11310, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11311, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11312, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11313, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11314, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11315, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11316, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11317, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11318, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11319, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11320, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11321, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11322, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11323, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11324, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11325, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11326, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11327, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11328, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11329, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11330, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11331, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11332, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11333, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11334, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11335, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11336, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11337, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11338, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11339, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11340, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11341, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4898, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 4899, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4900, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4901, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4902, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4903, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4904, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4905, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4906, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4907, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4908, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4909, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4910, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4911, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4912, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4913, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4914, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4915, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4916, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4917, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4918, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4919, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4920, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4921, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4922, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4923, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4924, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4925, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4926, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4927, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4928, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4929, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 4930, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4931, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4932, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4933, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4934, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4935, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4936, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4937, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4938, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4939, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4940, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4941, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4942, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4943, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4944, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4945, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4946, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4947, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4948, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4949, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4950, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4951, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4952, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4953, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4954, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4955, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4956, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4957, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4958, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4959, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4960, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4961, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 265, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 266, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 267, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 268, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 269, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 270, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 271, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 272, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 273, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 274, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 275, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 276, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 277, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 278, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 279, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 280, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 281, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 282, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 283, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 284, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 285, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 286, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 287, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 288, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 289, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 290, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 291, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 292, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 133, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 134, + "properties": { + "axis": "y" + } + }, + { + "id": 135, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:spruce_planks": { + "states": [ + { + "default": true, + "id": 16 + } + ] + }, + "minecraft:spruce_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5718, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5719, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:spruce_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 27, + "properties": { + "stage": "0" + } + }, + { + "id": 28, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:spruce_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4334, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4335, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4336, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4337, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4338, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4339, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4340, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4341, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4342, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4343, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4344, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4345, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4346, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4347, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4348, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4349, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4350, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4351, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4352, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4353, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4354, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4355, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4356, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4357, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4358, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4359, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4360, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4361, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4362, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4363, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4364, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4365, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11168, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11169, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11170, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11171, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11172, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11173, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7666, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7667, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7668, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7669, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7670, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7671, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7672, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7673, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7674, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7675, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7676, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7677, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7678, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7679, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7680, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7681, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7682, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7683, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7684, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7685, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7686, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7687, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7688, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7689, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7690, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7691, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7692, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7693, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7694, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7695, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7696, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7697, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7698, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7699, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7700, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7701, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7702, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7703, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7704, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7705, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7706, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7707, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7708, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7709, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7710, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7711, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7712, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7713, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7714, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7715, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7716, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7717, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7718, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7719, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7720, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7721, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7722, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7723, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7724, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7725, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7726, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7727, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7728, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7729, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7730, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7731, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7732, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7733, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7734, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7735, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7736, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7737, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7738, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7739, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7740, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7741, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7742, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7743, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7744, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7745, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6025, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6026, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6027, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6028, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6029, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6030, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6031, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6032, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6033, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6034, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6035, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6036, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6037, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6038, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6039, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6040, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6041, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6042, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6043, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6044, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6045, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6046, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6047, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6048, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6049, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6050, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6051, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6052, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6053, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6054, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6055, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6056, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6057, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6058, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6059, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6060, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6061, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6062, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6063, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6064, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6065, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6066, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6067, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6068, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6069, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6070, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6071, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6072, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6073, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6074, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6075, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6076, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6077, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6078, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6079, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6080, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6081, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6082, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6083, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6084, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6085, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6086, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6087, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6088, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5546, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5547, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5548, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5549, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5550, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5551, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5552, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5553, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4770, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4771, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4772, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4773, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4774, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4775, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4776, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4777, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 192, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 193, + "properties": { + "axis": "y" + } + }, + { + "id": 194, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:sticky_piston": { + "properties": { + "extended": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 1992, + "properties": { + "extended": "true", + "facing": "north" + } + }, + { + "id": 1993, + "properties": { + "extended": "true", + "facing": "east" + } + }, + { + "id": 1994, + "properties": { + "extended": "true", + "facing": "south" + } + }, + { + "id": 1995, + "properties": { + "extended": "true", + "facing": "west" + } + }, + { + "id": 1996, + "properties": { + "extended": "true", + "facing": "up" + } + }, + { + "id": 1997, + "properties": { + "extended": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 1998, + "properties": { + "extended": "false", + "facing": "north" + } + }, + { + "id": 1999, + "properties": { + "extended": "false", + "facing": "east" + } + }, + { + "id": 2000, + "properties": { + "extended": "false", + "facing": "south" + } + }, + { + "id": 2001, + "properties": { + "extended": "false", + "facing": "west" + } + }, + { + "id": 2002, + "properties": { + "extended": "false", + "facing": "up" + } + }, + { + "id": 2003, + "properties": { + "extended": "false", + "facing": "down" + } + } + ] + }, + "minecraft:stone": { + "states": [ + { + "default": true, + "id": 1 + } + ] + }, + "minecraft:stone_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11264, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11265, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11266, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11267, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11268, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11269, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7109, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7110, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7111, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7112, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7113, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7114, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7115, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7116, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7117, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7118, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7119, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7120, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7121, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7122, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7123, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7124, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7125, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7126, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7127, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7128, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7129, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7130, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7131, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7132, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7133, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7134, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7135, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7136, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7137, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7138, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7139, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7140, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7141, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7142, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7143, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7144, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7145, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7146, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7147, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7148, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7149, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7150, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7151, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7152, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7153, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7154, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7155, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7156, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7157, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7158, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7159, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7160, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7161, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7162, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7163, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7164, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7165, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7166, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7167, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7168, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7169, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7170, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7171, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7172, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7173, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7174, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7175, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7176, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7177, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7178, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7179, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7180, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7181, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7182, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7183, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7184, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7185, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7186, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7187, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7188, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 15780, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15781, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15782, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 15783, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15784, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15785, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15786, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15787, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15788, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15789, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15790, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15791, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15792, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15793, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15794, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15795, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15796, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15797, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15798, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15799, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15800, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15801, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15802, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15803, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15804, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15805, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15806, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15807, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15808, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15809, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15810, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15811, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15812, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15813, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15814, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15815, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15816, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15817, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15818, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15819, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15820, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15821, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15822, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15823, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15824, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15825, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15826, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15827, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15828, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15829, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15830, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15831, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15832, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15833, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15834, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15835, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15836, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15837, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15838, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15839, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15840, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15841, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15842, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15843, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15844, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15845, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15846, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15847, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15848, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15849, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15850, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15851, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15852, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15853, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15854, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15855, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15856, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15857, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15858, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15859, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15860, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15861, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15862, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15863, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15864, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15865, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15866, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15867, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15868, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15869, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15870, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15871, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15872, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15873, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15874, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15875, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15876, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15877, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15878, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15879, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15880, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15881, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15882, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15883, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15884, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15885, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15886, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15887, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15888, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15889, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15890, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15891, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15892, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15893, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15894, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15895, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15896, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15897, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15898, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15899, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15900, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15901, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15902, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15903, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15904, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15905, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15906, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15907, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15908, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15909, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15910, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15911, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15912, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15913, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15914, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15915, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15916, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15917, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15918, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15919, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15920, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15921, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15922, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15923, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15924, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15925, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15926, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15927, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15928, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15929, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15930, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15931, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15932, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15933, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15934, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15935, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15936, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15937, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15938, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15939, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15940, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15941, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15942, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15943, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15944, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15945, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15946, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15947, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15948, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15949, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15950, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15951, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15952, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15953, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15954, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15955, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15956, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15957, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15958, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15959, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15960, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15961, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15962, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15963, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15964, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15965, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15966, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15967, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15968, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15969, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15970, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15971, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15972, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15973, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15974, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15975, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15976, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15977, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15978, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15979, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15980, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15981, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15982, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15983, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15984, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15985, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15986, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15987, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15988, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15989, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15990, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15991, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15992, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15993, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15994, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15995, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15996, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15997, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15998, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15999, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16000, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16001, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16002, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16003, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16004, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16005, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16006, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16007, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16008, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16009, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16010, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16011, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16012, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16013, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16014, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16015, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16016, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16017, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16018, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16019, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16020, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16021, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16022, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16023, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16024, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16025, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16026, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16027, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16028, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16029, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16030, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16031, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16032, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16033, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16034, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16035, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16036, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16037, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16038, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16039, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16040, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16041, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16042, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16043, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16044, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16045, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16046, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16047, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16048, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16049, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16050, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16051, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16052, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16053, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16054, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16055, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16056, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16057, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16058, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16059, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16060, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16061, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16062, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16063, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16064, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16065, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16066, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16067, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16068, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16069, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16070, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16071, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16072, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16073, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16074, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16075, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16076, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16077, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16078, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16079, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16080, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16081, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16082, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16083, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16084, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16085, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16086, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16087, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16088, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16089, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16090, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16091, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16092, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16093, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16094, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16095, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16096, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16097, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16098, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16099, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16100, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16101, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16102, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16103, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:stone_bricks": { + "states": [ + { + "default": true, + "id": 6537 + } + ] + }, + "minecraft:stone_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5748, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 5749, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5750, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5751, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5752, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5753, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5754, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5755, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 5756, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 5757, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5758, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5759, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5760, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5761, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5762, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5763, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 5764, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 5765, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5766, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5767, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5768, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5769, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5770, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5771, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:stone_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5650, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5651, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:stone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11222, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11223, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11224, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11225, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11226, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11227, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13442, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13443, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13444, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13445, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13446, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13447, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13448, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13449, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13450, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13451, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13452, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13453, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13454, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13455, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13456, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13457, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13458, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13459, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13460, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13461, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13462, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13463, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13464, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13465, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13466, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13467, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13468, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13469, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13470, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13471, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13472, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13473, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13474, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13475, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13476, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13477, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13478, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13479, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13480, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13481, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13482, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13483, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13484, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13485, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13486, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13487, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13488, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13489, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13490, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13491, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13492, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13493, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13494, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13495, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13496, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13497, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13498, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13499, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13500, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13501, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13502, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13503, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13504, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13505, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13506, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13507, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13508, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13509, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13510, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13511, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13512, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13513, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13514, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13515, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13516, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13517, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13518, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13519, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13520, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13521, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stonecutter": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 18467, + "properties": { + "facing": "north" + } + }, + { + "id": 18468, + "properties": { + "facing": "south" + } + }, + { + "id": 18469, + "properties": { + "facing": "west" + } + }, + { + "id": 18470, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:stripped_acacia_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 171, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 172, + "properties": { + "axis": "y" + } + }, + { + "id": 173, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_acacia_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 225, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 226, + "properties": { + "axis": "y" + } + }, + { + "id": 227, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_bamboo_block": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 186, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 187, + "properties": { + "axis": "y" + } + }, + { + "id": 188, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_birch_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 165, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 166, + "properties": { + "axis": "y" + } + }, + { + "id": 167, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_birch_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 219, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 220, + "properties": { + "axis": "y" + } + }, + { + "id": 221, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_cherry_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 174, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 175, + "properties": { + "axis": "y" + } + }, + { + "id": 176, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_cherry_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 228, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 229, + "properties": { + "axis": "y" + } + }, + { + "id": 230, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_crimson_hyphae": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18605, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 18606, + "properties": { + "axis": "y" + } + }, + { + "id": 18607, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_crimson_stem": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18599, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 18600, + "properties": { + "axis": "y" + } + }, + { + "id": 18601, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_dark_oak_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 177, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 178, + "properties": { + "axis": "y" + } + }, + { + "id": 179, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_dark_oak_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 231, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 232, + "properties": { + "axis": "y" + } + }, + { + "id": 233, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_jungle_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 168, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 169, + "properties": { + "axis": "y" + } + }, + { + "id": 170, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_jungle_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 222, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 223, + "properties": { + "axis": "y" + } + }, + { + "id": 224, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_mangrove_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 183, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 184, + "properties": { + "axis": "y" + } + }, + { + "id": 185, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_mangrove_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 234, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 235, + "properties": { + "axis": "y" + } + }, + { + "id": 236, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_oak_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 180, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 181, + "properties": { + "axis": "y" + } + }, + { + "id": 182, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_oak_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 213, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 214, + "properties": { + "axis": "y" + } + }, + { + "id": 215, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_spruce_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 162, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 163, + "properties": { + "axis": "y" + } + }, + { + "id": 164, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_spruce_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 216, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 217, + "properties": { + "axis": "y" + } + }, + { + "id": 218, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_warped_hyphae": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18588, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 18589, + "properties": { + "axis": "y" + } + }, + { + "id": 18590, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_warped_stem": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18582, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 18583, + "properties": { + "axis": "y" + } + }, + { + "id": 18584, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:structure_block": { + "properties": { + "mode": [ + "save", + "load", + "corner", + "data" + ] + }, + "states": [ + { + "id": 19356, + "properties": { + "mode": "save" + } + }, + { + "default": true, + "id": 19357, + "properties": { + "mode": "load" + } + }, + { + "id": 19358, + "properties": { + "mode": "corner" + } + }, + { + "id": 19359, + "properties": { + "mode": "data" + } + } + ] + }, + "minecraft:structure_void": { + "states": [ + { + "default": true, + "id": 12549 + } + ] + }, + "minecraft:sugar_cane": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 5799, + "properties": { + "age": "0" + } + }, + { + "id": 5800, + "properties": { + "age": "1" + } + }, + { + "id": 5801, + "properties": { + "age": "2" + } + }, + { + "id": 5802, + "properties": { + "age": "3" + } + }, + { + "id": 5803, + "properties": { + "age": "4" + } + }, + { + "id": 5804, + "properties": { + "age": "5" + } + }, + { + "id": 5805, + "properties": { + "age": "6" + } + }, + { + "id": 5806, + "properties": { + "age": "7" + } + }, + { + "id": 5807, + "properties": { + "age": "8" + } + }, + { + "id": 5808, + "properties": { + "age": "9" + } + }, + { + "id": 5809, + "properties": { + "age": "10" + } + }, + { + "id": 5810, + "properties": { + "age": "11" + } + }, + { + "id": 5811, + "properties": { + "age": "12" + } + }, + { + "id": 5812, + "properties": { + "age": "13" + } + }, + { + "id": 5813, + "properties": { + "age": "14" + } + }, + { + "id": 5814, + "properties": { + "age": "15" + } + } + ] + }, + "minecraft:sunflower": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 10747, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 10748, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:suspicious_gravel": { + "properties": { + "dusted": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 119, + "properties": { + "dusted": "0" + } + }, + { + "id": 120, + "properties": { + "dusted": "1" + } + }, + { + "id": 121, + "properties": { + "dusted": "2" + } + }, + { + "id": 122, + "properties": { + "dusted": "3" + } + } + ] + }, + "minecraft:suspicious_sand": { + "properties": { + "dusted": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 113, + "properties": { + "dusted": "0" + } + }, + { + "id": 114, + "properties": { + "dusted": "1" + } + }, + { + "id": 115, + "properties": { + "dusted": "2" + } + }, + { + "id": 116, + "properties": { + "dusted": "3" + } + } + ] + }, + "minecraft:sweet_berry_bush": { + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 18575, + "properties": { + "age": "0" + } + }, + { + "id": 18576, + "properties": { + "age": "1" + } + }, + { + "id": 18577, + "properties": { + "age": "2" + } + }, + { + "id": 18578, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:tall_grass": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 10755, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 10756, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:tall_seagrass": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 2009, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 2010, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:target": { + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 19381, + "properties": { + "power": "0" + } + }, + { + "id": 19382, + "properties": { + "power": "1" + } + }, + { + "id": 19383, + "properties": { + "power": "2" + } + }, + { + "id": 19384, + "properties": { + "power": "3" + } + }, + { + "id": 19385, + "properties": { + "power": "4" + } + }, + { + "id": 19386, + "properties": { + "power": "5" + } + }, + { + "id": 19387, + "properties": { + "power": "6" + } + }, + { + "id": 19388, + "properties": { + "power": "7" + } + }, + { + "id": 19389, + "properties": { + "power": "8" + } + }, + { + "id": 19390, + "properties": { + "power": "9" + } + }, + { + "id": 19391, + "properties": { + "power": "10" + } + }, + { + "id": 19392, + "properties": { + "power": "11" + } + }, + { + "id": 19393, + "properties": { + "power": "12" + } + }, + { + "id": 19394, + "properties": { + "power": "13" + } + }, + { + "id": 19395, + "properties": { + "power": "14" + } + }, + { + "id": 19396, + "properties": { + "power": "15" + } + } + ] + }, + "minecraft:terracotta": { + "states": [ + { + "default": true, + "id": 10744 + } + ] + }, + "minecraft:tinted_glass": { + "states": [ + { + "default": true, + "id": 22317 + } + ] + }, + "minecraft:tnt": { + "properties": { + "unstable": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2094, + "properties": { + "unstable": "true" + } + }, + { + "default": true, + "id": 2095, + "properties": { + "unstable": "false" + } + } + ] + }, + "minecraft:torch": { + "states": [ + { + "default": true, + "id": 2355 + } + ] + }, + "minecraft:torchflower": { + "states": [ + { + "default": true, + "id": 2076 + } + ] + }, + "minecraft:torchflower_crop": { + "properties": { + "age": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 12495, + "properties": { + "age": "0" + } + }, + { + "id": 12496, + "properties": { + "age": "1" + } + } + ] + }, + "minecraft:trapped_chest": { + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9119, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9120, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 9121, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 9122, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 9123, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 9124, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 9125, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 9126, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 9127, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 9128, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 9129, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 9130, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 9131, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 9132, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 9133, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 9134, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 9135, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 9136, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 9137, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 9138, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 9139, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 9140, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 9141, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 9142, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:trial_spawner": { + "properties": { + "trial_spawner_state": [ + "inactive", + "waiting_for_players", + "active", + "waiting_for_reward_ejection", + "ejecting_reward", + "cooldown" + ] + }, + "states": [ + { + "default": true, + "id": 26638, + "properties": { + "trial_spawner_state": "inactive" + } + }, + { + "id": 26639, + "properties": { + "trial_spawner_state": "waiting_for_players" + } + }, + { + "id": 26640, + "properties": { + "trial_spawner_state": "active" + } + }, + { + "id": 26641, + "properties": { + "trial_spawner_state": "waiting_for_reward_ejection" + } + }, + { + "id": 26642, + "properties": { + "trial_spawner_state": "ejecting_reward" + } + }, + { + "id": 26643, + "properties": { + "trial_spawner_state": "cooldown" + } + } + ] + }, + "minecraft:tripwire": { + "properties": { + "attached": [ + "true", + "false" + ], + "disarmed": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7537, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7538, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7539, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7540, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7541, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7542, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7543, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7544, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7545, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7546, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7547, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7548, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7549, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7550, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7551, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7552, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7553, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7554, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7555, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7556, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7557, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7558, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7559, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7560, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7561, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7562, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7563, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7564, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7565, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7566, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7567, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7568, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7569, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7570, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7571, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7572, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7573, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7574, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7575, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7576, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7577, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7578, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7579, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7580, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7581, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7582, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7583, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7584, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7585, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7586, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7587, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7588, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7589, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7590, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7591, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7592, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7593, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7594, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7595, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7596, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7597, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7598, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7599, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7600, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7601, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7602, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7603, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7604, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7605, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7606, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7607, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7608, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7609, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7610, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7611, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7612, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7613, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7614, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7615, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7616, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7617, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7618, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7619, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7620, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7621, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7622, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7623, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7624, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7625, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7626, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7627, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7628, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7629, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7630, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7631, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7632, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7633, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7634, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7635, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7636, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7637, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7638, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7639, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7640, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7641, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7642, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7643, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7644, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7645, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7646, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7647, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7648, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7649, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7650, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7651, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7652, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7653, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7654, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7655, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7656, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7657, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7658, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7659, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7660, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7661, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7662, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7663, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7664, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + } + ] + }, + "minecraft:tripwire_hook": { + "properties": { + "attached": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7521, + "properties": { + "attached": "true", + "facing": "north", + "powered": "true" + } + }, + { + "id": 7522, + "properties": { + "attached": "true", + "facing": "north", + "powered": "false" + } + }, + { + "id": 7523, + "properties": { + "attached": "true", + "facing": "south", + "powered": "true" + } + }, + { + "id": 7524, + "properties": { + "attached": "true", + "facing": "south", + "powered": "false" + } + }, + { + "id": 7525, + "properties": { + "attached": "true", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7526, + "properties": { + "attached": "true", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7527, + "properties": { + "attached": "true", + "facing": "east", + "powered": "true" + } + }, + { + "id": 7528, + "properties": { + "attached": "true", + "facing": "east", + "powered": "false" + } + }, + { + "id": 7529, + "properties": { + "attached": "false", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 7530, + "properties": { + "attached": "false", + "facing": "north", + "powered": "false" + } + }, + { + "id": 7531, + "properties": { + "attached": "false", + "facing": "south", + "powered": "true" + } + }, + { + "id": 7532, + "properties": { + "attached": "false", + "facing": "south", + "powered": "false" + } + }, + { + "id": 7533, + "properties": { + "attached": "false", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7534, + "properties": { + "attached": "false", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7535, + "properties": { + "attached": "false", + "facing": "east", + "powered": "true" + } + }, + { + "id": 7536, + "properties": { + "attached": "false", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:tube_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12823, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12824, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:tube_coral_block": { + "states": [ + { + "default": true, + "id": 12808 + } + ] + }, + "minecraft:tube_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12843, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12844, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:tube_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12893, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12894, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12895, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12896, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12897, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12898, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12899, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12900, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff": { + "states": [ + { + "default": true, + "id": 21081 + } + ] + }, + "minecraft:tuff_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21905, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 21906, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 21907, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21908, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 21909, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 21910, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21911, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21912, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21913, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21914, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21915, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21916, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21917, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21918, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21919, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21920, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21921, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21922, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21923, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21924, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21925, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21926, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21927, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21928, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21929, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21930, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21931, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21932, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21933, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21934, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21935, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21936, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21937, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21938, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21939, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21940, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21941, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21942, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21943, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21944, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21945, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21946, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21947, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21948, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21949, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21950, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21951, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21952, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21953, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21954, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21955, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21956, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21957, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21958, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21959, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21960, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21961, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21962, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21963, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21964, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21965, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21966, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21967, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21968, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21969, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21970, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21971, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21972, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21973, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21974, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21975, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21976, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21977, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21978, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21979, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21980, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21981, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21982, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21983, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21984, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21985, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21986, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21987, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21988, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21989, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21990, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 21991, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21992, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21993, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 21994, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21995, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21996, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21997, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21998, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21999, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22000, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22001, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22002, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22003, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22004, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22005, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22006, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22007, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22008, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22009, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22010, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22011, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22012, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22013, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22014, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22015, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22016, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22017, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22018, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22019, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22020, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22021, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22022, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22023, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22024, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22025, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22026, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22027, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22028, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22029, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22030, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22031, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22032, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22033, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22034, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22035, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22036, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22037, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22038, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22039, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22040, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22041, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22042, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22043, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22044, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22045, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22046, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22047, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22048, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22049, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22050, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22051, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22052, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22053, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22054, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22055, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22056, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22057, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22058, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22059, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22060, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22061, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22062, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22063, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22064, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22065, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22066, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22067, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22068, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22069, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22070, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22071, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22072, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22073, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22074, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22075, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22076, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22077, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22078, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22079, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22080, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22081, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22082, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22083, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22084, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22085, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22086, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22087, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22088, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22089, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22090, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22091, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22092, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22093, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22094, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22095, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22096, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22097, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22098, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22099, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22100, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22101, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22102, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22103, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22104, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22105, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22106, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22107, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22108, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22109, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22110, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22111, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22112, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22113, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22114, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22115, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22116, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22117, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22118, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22119, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22120, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22121, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22122, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22123, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22124, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22125, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22126, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22127, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22128, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22129, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22130, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22131, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22132, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22133, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22134, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22135, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22136, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22137, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22138, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22139, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22140, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22141, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22142, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22143, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22144, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22145, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22146, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22147, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22148, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22149, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22150, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22151, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22152, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22153, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22154, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22155, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22156, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22157, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22158, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22159, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22160, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22161, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22162, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22163, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22164, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22165, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22166, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22167, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22168, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22169, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22170, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22171, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22172, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22173, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22174, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22175, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22176, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22177, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22178, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22179, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22180, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22181, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22182, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22183, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22184, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22185, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22186, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22187, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22188, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22189, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22190, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22191, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22192, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22193, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22194, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22195, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22196, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22197, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22198, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22199, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22200, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22201, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22202, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22203, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22204, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22205, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22206, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22207, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22208, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22209, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22210, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22211, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22212, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22213, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22214, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22215, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22216, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22217, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22218, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22219, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22220, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22221, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22222, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22223, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22224, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22225, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22226, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22227, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22228, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22229, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22230, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22231, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22232, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22233, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22234, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22235, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22236, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22237, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22238, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22239, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22240, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22241, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22242, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22243, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22244, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22245, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22246, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22247, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22248, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22249, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22250, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22251, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22252, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22253, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22254, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22255, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22256, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22257, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22258, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22259, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22260, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22261, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22262, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22263, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22264, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22265, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22266, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22267, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22268, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22269, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22270, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22271, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22272, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22273, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22274, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22275, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22276, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22277, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22278, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22279, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22280, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22281, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22282, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22283, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22284, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22285, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22286, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22287, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22288, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22289, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22290, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22291, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22292, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22293, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22294, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22295, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22296, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22297, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22298, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22299, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22300, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22301, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22302, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22303, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22304, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22305, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22306, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22307, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22308, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22309, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22310, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22311, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22312, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22313, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22314, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:tuff_bricks": { + "states": [ + { + "default": true, + "id": 21904 + } + ] + }, + "minecraft:tuff_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21082, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 21083, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 21084, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21085, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 21086, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 21087, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21088, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21089, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21090, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21091, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21092, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21093, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21094, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21095, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21096, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21097, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21098, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21099, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21100, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21101, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21102, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21103, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21104, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21105, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21106, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21107, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21108, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21109, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21110, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21111, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21112, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21113, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21114, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21115, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21116, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21117, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21118, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21119, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21120, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21121, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21122, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21123, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21124, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21125, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21126, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21127, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21128, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21129, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21130, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21131, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21132, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21133, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21134, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21135, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21136, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21137, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21138, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21139, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21140, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21141, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21142, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21143, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21144, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21145, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21146, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21147, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21148, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21149, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21150, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21151, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21152, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21153, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21154, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21155, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21156, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21157, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21158, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21159, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21160, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21161, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21162, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21163, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21164, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21165, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21166, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21167, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 21168, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21169, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21170, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 21171, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21172, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21173, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21174, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21175, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21176, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21177, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21178, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21179, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21180, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21181, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21182, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21183, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21184, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21185, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21186, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21187, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21188, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21189, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21190, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21191, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21192, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21193, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21194, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21195, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21196, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21197, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21198, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21199, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21200, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21201, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21202, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21203, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21204, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21205, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21206, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21207, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21208, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21209, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21210, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21211, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21212, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21213, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21214, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21215, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21216, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21217, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21218, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21219, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21220, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21221, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21222, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21223, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21224, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21225, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21226, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21227, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21228, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21229, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21230, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21231, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21232, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21233, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21234, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21235, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21236, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21237, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21238, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21239, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21240, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21241, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21242, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21243, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21244, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21245, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21246, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21247, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21248, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21249, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21250, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21251, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21252, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21253, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21254, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21255, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21256, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21257, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21258, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21259, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21260, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21261, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21262, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21263, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21264, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21265, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21266, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21267, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21268, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21269, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21270, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21271, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21272, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21273, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21274, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21275, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21276, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21277, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21278, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21279, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21280, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21281, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21282, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21283, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21284, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21285, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21286, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21287, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21288, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21289, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21290, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21291, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21292, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21293, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21294, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21295, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21296, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21297, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21298, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21299, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21300, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21301, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21302, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21303, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21304, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21305, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21306, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21307, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21308, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21309, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21310, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21311, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21312, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21313, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21314, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21315, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21316, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21317, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21318, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21319, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21320, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21321, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21322, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21323, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21324, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21325, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21326, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21327, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21328, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21329, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21330, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21331, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21332, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21333, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21334, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21335, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21336, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21337, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21338, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21339, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21340, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21341, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21342, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21343, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21344, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21345, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21346, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21347, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21348, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21349, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21350, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21351, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21352, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21353, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21354, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21355, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21356, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21357, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21358, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21359, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21360, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21361, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21362, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21363, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21364, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21365, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21366, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21367, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21368, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21369, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21370, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21371, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21372, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21373, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21374, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21375, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21376, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21377, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21378, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21379, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21380, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21381, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21382, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21383, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21384, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21385, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21386, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21387, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21388, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21389, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21390, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21391, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21392, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21393, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21394, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21395, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21396, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21397, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21398, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21399, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21400, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21401, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21402, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21403, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21404, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21405, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21406, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21407, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21408, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21409, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21410, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21411, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21412, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21413, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21414, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21415, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21416, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21417, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21418, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21419, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21420, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21421, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21422, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21423, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21424, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21425, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21426, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21427, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21428, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21429, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21430, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21431, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21432, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21433, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21434, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21435, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21436, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21437, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21438, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21439, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21440, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21441, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21442, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21443, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21444, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21445, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21446, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21447, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21448, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21449, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21450, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21451, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21452, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21453, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21454, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21455, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21456, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21457, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21458, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21459, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21460, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21461, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21462, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21463, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21464, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21465, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21466, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21467, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21468, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21469, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21470, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21471, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21472, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21473, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21474, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21475, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21476, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21477, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21478, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21479, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21480, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21481, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21482, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21483, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21484, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21485, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21486, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21487, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21488, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21489, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21490, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21491, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:turtle_egg": { + "properties": { + "eggs": [ + "1", + "2", + "3", + "4" + ], + "hatch": [ + "0", + "1", + "2" + ] + }, + "states": [ + { + "default": true, + "id": 12788, + "properties": { + "eggs": "1", + "hatch": "0" + } + }, + { + "id": 12789, + "properties": { + "eggs": "1", + "hatch": "1" + } + }, + { + "id": 12790, + "properties": { + "eggs": "1", + "hatch": "2" + } + }, + { + "id": 12791, + "properties": { + "eggs": "2", + "hatch": "0" + } + }, + { + "id": 12792, + "properties": { + "eggs": "2", + "hatch": "1" + } + }, + { + "id": 12793, + "properties": { + "eggs": "2", + "hatch": "2" + } + }, + { + "id": 12794, + "properties": { + "eggs": "3", + "hatch": "0" + } + }, + { + "id": 12795, + "properties": { + "eggs": "3", + "hatch": "1" + } + }, + { + "id": 12796, + "properties": { + "eggs": "3", + "hatch": "2" + } + }, + { + "id": 12797, + "properties": { + "eggs": "4", + "hatch": "0" + } + }, + { + "id": 12798, + "properties": { + "eggs": "4", + "hatch": "1" + } + }, + { + "id": 12799, + "properties": { + "eggs": "4", + "hatch": "2" + } + } + ] + }, + "minecraft:twisting_vines": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + }, + "states": [ + { + "default": true, + "id": 18638, + "properties": { + "age": "0" + } + }, + { + "id": 18639, + "properties": { + "age": "1" + } + }, + { + "id": 18640, + "properties": { + "age": "2" + } + }, + { + "id": 18641, + "properties": { + "age": "3" + } + }, + { + "id": 18642, + "properties": { + "age": "4" + } + }, + { + "id": 18643, + "properties": { + "age": "5" + } + }, + { + "id": 18644, + "properties": { + "age": "6" + } + }, + { + "id": 18645, + "properties": { + "age": "7" + } + }, + { + "id": 18646, + "properties": { + "age": "8" + } + }, + { + "id": 18647, + "properties": { + "age": "9" + } + }, + { + "id": 18648, + "properties": { + "age": "10" + } + }, + { + "id": 18649, + "properties": { + "age": "11" + } + }, + { + "id": 18650, + "properties": { + "age": "12" + } + }, + { + "id": 18651, + "properties": { + "age": "13" + } + }, + { + "id": 18652, + "properties": { + "age": "14" + } + }, + { + "id": 18653, + "properties": { + "age": "15" + } + }, + { + "id": 18654, + "properties": { + "age": "16" + } + }, + { + "id": 18655, + "properties": { + "age": "17" + } + }, + { + "id": 18656, + "properties": { + "age": "18" + } + }, + { + "id": 18657, + "properties": { + "age": "19" + } + }, + { + "id": 18658, + "properties": { + "age": "20" + } + }, + { + "id": 18659, + "properties": { + "age": "21" + } + }, + { + "id": 18660, + "properties": { + "age": "22" + } + }, + { + "id": 18661, + "properties": { + "age": "23" + } + }, + { + "id": 18662, + "properties": { + "age": "24" + } + }, + { + "id": 18663, + "properties": { + "age": "25" + } + } + ] + }, + "minecraft:twisting_vines_plant": { + "states": [ + { + "default": true, + "id": 18664 + } + ] + }, + "minecraft:verdant_froglight": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 26566, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 26567, + "properties": { + "axis": "y" + } + }, + { + "id": 26568, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:vine": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6837, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6838, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6839, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6840, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6841, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6842, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6843, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6844, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6845, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6846, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6847, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6848, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6849, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6850, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6851, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6852, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6853, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6854, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6855, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6856, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6857, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6858, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6859, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6860, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6861, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6862, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6863, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6864, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6865, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6866, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6867, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "default": true, + "id": 6868, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:void_air": { + "states": [ + { + "default": true, + "id": 12958 + } + ] + }, + "minecraft:wall_torch": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 2356, + "properties": { + "facing": "north" + } + }, + { + "id": 2357, + "properties": { + "facing": "south" + } + }, + { + "id": 2358, + "properties": { + "facing": "west" + } + }, + { + "id": 2359, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:warped_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19124, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 19125, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 19126, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 19127, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 19128, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 19129, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 19130, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 19131, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 19132, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 19133, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 19134, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 19135, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 19136, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 19137, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 19138, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 19139, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 19140, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 19141, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 19142, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 19143, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 19144, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 19145, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 19146, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 19147, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:warped_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19212, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19213, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19214, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19215, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19216, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19217, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19218, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19219, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19220, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19221, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19222, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 19223, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19224, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19225, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19226, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19227, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19228, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19229, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19230, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19231, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19232, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19233, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19234, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19235, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19236, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19237, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19238, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19239, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19240, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19241, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19242, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19243, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19244, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19245, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19246, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19247, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19248, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19249, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19250, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19251, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19252, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19253, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19254, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19255, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19256, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19257, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19258, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19259, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19260, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19261, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19262, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19263, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19264, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19265, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19266, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19267, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19268, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19269, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19270, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19271, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19272, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19273, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19274, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19275, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:warped_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18716, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18717, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18718, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18719, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18720, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18721, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18722, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18723, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18724, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18725, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18726, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18727, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18728, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18729, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18730, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18731, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18732, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18733, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18734, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18735, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18736, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18737, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18738, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18739, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18740, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18741, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18742, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18743, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18744, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18745, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18746, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 18747, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:warped_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18908, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18909, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18910, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18911, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18912, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18913, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18914, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 18915, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 18916, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18917, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18918, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18919, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18920, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18921, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18922, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 18923, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 18924, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18925, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18926, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18927, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18928, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18929, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18930, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 18931, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 18932, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18933, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18934, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18935, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18936, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18937, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18938, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 18939, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:warped_fungus": { + "states": [ + { + "default": true, + "id": 18592 + } + ] + }, + "minecraft:warped_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5346, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5347, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5348, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5349, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5350, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5351, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5352, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5353, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5354, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5355, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5356, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5357, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5358, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5359, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5360, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5361, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5362, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5363, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5364, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5365, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5366, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5367, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5368, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5369, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5370, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5371, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5372, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5373, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5374, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5375, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5376, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5377, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5378, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5379, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5380, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5381, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5382, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5383, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5384, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5385, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5386, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5387, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5388, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5389, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5390, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5391, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5392, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5393, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5394, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5395, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5396, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5397, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5398, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5399, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5400, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5401, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5402, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5403, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5404, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5405, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5406, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5407, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5408, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5409, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_hyphae": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18585, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 18586, + "properties": { + "axis": "y" + } + }, + { + "id": 18587, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:warped_nylium": { + "states": [ + { + "default": true, + "id": 18591 + } + ] + }, + "minecraft:warped_planks": { + "states": [ + { + "default": true, + "id": 18667 + } + ] + }, + "minecraft:warped_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18682, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 18683, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:warped_roots": { + "states": [ + { + "default": true, + "id": 18594 + } + ] + }, + "minecraft:warped_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19308, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19309, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 19310, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 19311, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 19312, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 19313, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 19314, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 19315, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 19316, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 19317, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 19318, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 19319, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 19320, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 19321, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 19322, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 19323, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 19324, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 19325, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 19326, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 19327, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 19328, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 19329, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 19330, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 19331, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 19332, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 19333, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 19334, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 19335, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 19336, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 19337, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 19338, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 19339, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18674, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 18675, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 18676, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18677, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 18678, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 18679, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19020, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19021, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19022, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19023, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19024, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19025, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19026, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19027, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19028, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19029, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19030, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19031, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19032, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19033, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19034, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19035, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19036, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19037, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19038, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19039, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19040, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19041, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19042, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19043, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19044, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19045, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19046, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19047, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19048, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19049, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19050, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19051, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19052, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19053, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19054, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19055, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19056, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19057, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19058, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19059, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19060, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19061, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19062, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19063, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19064, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19065, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19066, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19067, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19068, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19069, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19070, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19071, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19072, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19073, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19074, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19075, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19076, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19077, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19078, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19079, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19080, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19081, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19082, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19083, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19084, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19085, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19086, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19087, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19088, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19089, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19090, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19091, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19092, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19093, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19094, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19095, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19096, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19097, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19098, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19099, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_stem": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18579, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 18580, + "properties": { + "axis": "y" + } + }, + { + "id": 18581, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:warped_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18812, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18813, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18814, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18815, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18816, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18817, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18818, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18819, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18820, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18821, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18822, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18823, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18824, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18825, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18826, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18827, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18828, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18829, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18830, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18831, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18832, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18833, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18834, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18835, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18836, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18837, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18838, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18839, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18840, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18841, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18842, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18843, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18844, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18845, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18846, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18847, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18848, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18849, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18850, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18851, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18852, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18853, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18854, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18855, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18856, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18857, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18858, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18859, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18860, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18861, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18862, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18863, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18864, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18865, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18866, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18867, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18868, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18869, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18870, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18871, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18872, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18873, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18874, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18875, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5610, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5611, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5612, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5613, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5614, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5615, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5616, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5617, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19348, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19349, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 19350, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 19351, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 19352, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 19353, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 19354, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 19355, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_wart_block": { + "states": [ + { + "default": true, + "id": 18593 + } + ] + }, + "minecraft:water": { + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 80, + "properties": { + "level": "0" + } + }, + { + "id": 81, + "properties": { + "level": "1" + } + }, + { + "id": 82, + "properties": { + "level": "2" + } + }, + { + "id": 83, + "properties": { + "level": "3" + } + }, + { + "id": 84, + "properties": { + "level": "4" + } + }, + { + "id": 85, + "properties": { + "level": "5" + } + }, + { + "id": 86, + "properties": { + "level": "6" + } + }, + { + "id": 87, + "properties": { + "level": "7" + } + }, + { + "id": 88, + "properties": { + "level": "8" + } + }, + { + "id": 89, + "properties": { + "level": "9" + } + }, + { + "id": 90, + "properties": { + "level": "10" + } + }, + { + "id": 91, + "properties": { + "level": "11" + } + }, + { + "id": 92, + "properties": { + "level": "12" + } + }, + { + "id": 93, + "properties": { + "level": "13" + } + }, + { + "id": 94, + "properties": { + "level": "14" + } + }, + { + "id": 95, + "properties": { + "level": "15" + } + } + ] + }, + "minecraft:water_cauldron": { + "properties": { + "level": [ + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 7399, + "properties": { + "level": "1" + } + }, + { + "id": 7400, + "properties": { + "level": "2" + } + }, + { + "id": 7401, + "properties": { + "level": "3" + } + } + ] + }, + "minecraft:waxed_chiseled_copper": { + "states": [ + { + "default": true, + "id": 22955 + } + ] + }, + "minecraft:waxed_copper_block": { + "states": [ + { + "default": true, + "id": 23300 + } + ] + }, + "minecraft:waxed_copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24708, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24709, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24710, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24711, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_copper_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23908, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23909, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23910, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23911, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23912, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23913, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23914, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23915, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23916, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23917, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23918, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 23919, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23920, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23921, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23922, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23923, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23924, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23925, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23926, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23927, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23928, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23929, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23930, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23931, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23932, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23933, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23934, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23935, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23936, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23937, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23938, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23939, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23940, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23941, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23942, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23943, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23944, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23945, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23946, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23947, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23948, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23949, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23950, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23951, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23952, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23953, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23954, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23955, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23956, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23957, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23958, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23959, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23960, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23961, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23962, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23963, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23964, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23965, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23966, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23967, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23968, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23969, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23970, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23971, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_copper_grate": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24684, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24685, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24420, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24421, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24422, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24423, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24424, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24425, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24426, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24427, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24428, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24429, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24430, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24431, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24432, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24433, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24434, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24435, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24436, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24437, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24438, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24439, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24440, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24441, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24442, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24443, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24444, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24445, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24446, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24447, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24448, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24449, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24450, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24451, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24452, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24453, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24454, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24455, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24456, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24457, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24458, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24459, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24460, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24461, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24462, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24463, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24464, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24465, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24466, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24467, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24468, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24469, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24470, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24471, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24472, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24473, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24474, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24475, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24476, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24477, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24478, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24479, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24480, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24481, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24482, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24483, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_cut_copper": { + "states": [ + { + "default": true, + "id": 23307 + } + ] + }, + "minecraft:waxed_cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23646, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23647, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23648, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23649, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23650, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23651, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23548, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23549, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23550, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23551, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23552, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23553, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23554, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23555, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23556, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23557, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23558, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23559, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23560, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23561, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23562, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23563, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23564, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23565, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23566, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23567, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23568, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23569, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23570, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23571, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23572, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23573, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23574, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23575, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23576, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23577, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23578, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23579, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23580, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23581, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23582, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23583, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23584, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23585, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23586, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23587, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23588, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23589, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23590, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23591, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23592, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23593, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23594, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23595, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23596, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23597, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23598, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23599, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23600, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23601, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23602, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23603, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23604, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23605, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23606, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23607, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23608, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23609, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23610, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23611, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23612, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23613, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23614, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23615, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23616, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23617, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23618, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23619, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23620, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23621, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23622, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23623, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23624, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23625, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23626, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23627, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_chiseled_copper": { + "states": [ + { + "default": true, + "id": 22954 + } + ] + }, + "minecraft:waxed_exposed_copper": { + "states": [ + { + "default": true, + "id": 23302 + } + ] + }, + "minecraft:waxed_exposed_copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24712, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24713, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24714, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24715, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23972, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23973, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23974, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23975, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23976, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23977, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23978, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23979, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23980, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23981, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23982, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 23983, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23984, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23985, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23986, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23987, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23988, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23989, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23990, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23991, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23992, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23993, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23994, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23995, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23996, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23997, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23998, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23999, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24000, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24001, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24002, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24003, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24004, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24005, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24006, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24007, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24008, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24009, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24010, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24011, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24012, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24013, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24014, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24015, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24016, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24017, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24018, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24019, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24020, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24021, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24022, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24023, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24024, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24025, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24026, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24027, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24028, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24029, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24030, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24031, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24032, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24033, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24034, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24035, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_grate": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24686, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24687, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24484, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24485, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24486, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24487, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24488, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24489, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24490, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24491, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24492, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24493, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24494, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24495, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24496, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24497, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24498, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24499, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24500, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24501, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24502, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24503, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24504, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24505, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24506, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24507, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24508, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24509, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24510, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24511, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24512, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24513, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24514, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24515, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24516, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24517, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24518, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24519, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24520, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24521, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24522, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24523, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24524, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24525, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24526, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24527, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24528, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24529, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24530, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24531, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24532, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24533, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24534, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24535, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24536, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24537, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24538, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24539, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24540, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24541, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24542, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24543, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24544, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24545, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24546, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24547, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_cut_copper": { + "states": [ + { + "default": true, + "id": 23306 + } + ] + }, + "minecraft:waxed_exposed_cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23640, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23641, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23642, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23643, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23644, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23645, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23468, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23469, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23470, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23471, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23472, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23473, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23474, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23475, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23476, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23477, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23478, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23479, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23480, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23481, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23482, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23483, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23484, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23485, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23486, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23487, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23488, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23489, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23490, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23491, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23492, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23493, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23494, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23495, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23496, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23497, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23498, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23499, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23500, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23501, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23502, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23503, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23504, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23505, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23506, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23507, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23508, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23509, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23510, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23511, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23512, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23513, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23514, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23515, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23516, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23517, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23518, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23519, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23520, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23521, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23522, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23523, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23524, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23525, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23526, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23527, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23528, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23529, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23530, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23531, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23532, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23533, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23534, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23535, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23536, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23537, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23538, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23539, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23540, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23541, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23542, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23543, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23544, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23545, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23546, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23547, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_chiseled_copper": { + "states": [ + { + "default": true, + "id": 22952 + } + ] + }, + "minecraft:waxed_oxidized_copper": { + "states": [ + { + "default": true, + "id": 23303 + } + ] + }, + "minecraft:waxed_oxidized_copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24720, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24721, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24722, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24723, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24036, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24037, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24038, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24039, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24040, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24041, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24042, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24043, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24044, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24045, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24046, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24047, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24048, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24049, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24050, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24051, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24052, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24053, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24054, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24055, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24056, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24057, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24058, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24059, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24060, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24061, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24062, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24063, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24064, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24065, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24066, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24067, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24068, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24069, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24070, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24071, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24072, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24073, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24074, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24075, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24076, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24077, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24078, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24079, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24080, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24081, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24082, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24083, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24084, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24085, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24086, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24087, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24088, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24089, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24090, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24091, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24092, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24093, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24094, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24095, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24096, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24097, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24098, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24099, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_grate": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24690, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24691, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24548, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24549, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24550, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24551, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24552, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24553, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24554, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24555, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24556, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24557, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24558, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24559, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24560, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24561, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24562, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24563, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24564, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24565, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24566, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24567, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24568, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24569, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24570, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24571, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24572, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24573, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24574, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24575, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24576, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24577, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24578, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24579, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24580, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24581, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24582, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24583, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24584, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24585, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24586, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24587, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24588, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24589, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24590, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24591, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24592, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24593, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24594, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24595, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24596, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24597, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24598, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24599, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24600, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24601, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24602, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24603, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24604, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24605, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24606, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24607, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24608, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24609, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24610, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24611, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_cut_copper": { + "states": [ + { + "default": true, + "id": 23304 + } + ] + }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23628, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23629, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23630, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23631, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23632, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23633, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23308, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23309, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23310, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23311, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23312, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23313, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23314, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23315, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23316, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23317, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23318, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23319, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23320, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23321, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23322, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23323, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23324, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23325, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23326, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23327, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23328, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23329, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23330, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23331, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23332, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23333, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23334, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23335, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23336, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23337, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23338, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23339, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23340, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23341, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23342, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23343, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23344, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23345, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23346, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23347, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23348, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23349, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23350, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23351, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23352, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23353, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23354, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23355, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23356, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23357, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23358, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23359, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23360, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23361, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23362, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23363, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23364, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23365, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23366, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23367, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23368, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23369, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23370, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23371, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23372, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23373, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23374, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23375, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23376, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23377, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23378, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23379, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23380, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23381, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23382, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23383, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23384, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23385, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23386, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23387, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_chiseled_copper": { + "states": [ + { + "default": true, + "id": 22953 + } + ] + }, + "minecraft:waxed_weathered_copper": { + "states": [ + { + "default": true, + "id": 23301 + } + ] + }, + "minecraft:waxed_weathered_copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24716, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24717, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24718, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24719, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24100, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24101, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24102, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24103, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24104, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24105, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24106, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24107, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24108, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24109, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24110, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24111, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24112, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24113, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24114, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24115, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24116, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24117, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24118, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24119, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24120, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24121, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24122, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24123, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24124, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24125, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24126, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24127, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24128, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24129, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24130, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24131, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24132, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24133, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24134, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24135, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24136, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24137, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24138, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24139, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24140, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24141, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24142, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24143, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24144, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24145, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24146, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24147, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24148, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24149, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24150, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24151, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24152, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24153, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24154, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24155, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24156, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24157, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24158, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24159, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24160, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24161, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24162, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24163, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_grate": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24688, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24689, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24612, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24613, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24614, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24615, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24616, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24617, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24618, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24619, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24620, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24621, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24622, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24623, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24624, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24625, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24626, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24627, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24628, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24629, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24630, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24631, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24632, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24633, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24634, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24635, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24636, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24637, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24638, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24639, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24640, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24641, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24642, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24643, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24644, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24645, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24646, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24647, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24648, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24649, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24650, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24651, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24652, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24653, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24654, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24655, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24656, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24657, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24658, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24659, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24660, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24661, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24662, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24663, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24664, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24665, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24666, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24667, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24668, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24669, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24670, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24671, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24672, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24673, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24674, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24675, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_cut_copper": { + "states": [ + { + "default": true, + "id": 23305 + } + ] + }, + "minecraft:waxed_weathered_cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23634, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23635, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23636, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23637, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23638, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23639, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23388, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23389, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23390, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23391, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23392, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23393, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23394, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23395, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23396, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23397, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23398, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23399, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23400, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23401, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23402, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23403, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23404, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23405, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23406, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23407, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23408, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23409, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23410, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23411, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23412, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23413, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23414, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23415, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23416, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23417, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23418, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23419, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23420, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23421, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23422, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23423, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23424, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23425, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23426, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23427, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23428, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23429, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23430, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23431, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23432, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23433, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23434, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23435, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23436, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23437, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23438, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23439, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23440, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23441, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23442, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23443, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23444, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23445, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23446, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23447, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23448, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23449, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23450, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23451, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23452, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23453, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23454, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23455, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23456, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23457, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23458, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23459, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23460, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23461, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23462, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23463, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23464, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23465, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23466, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23467, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_chiseled_copper": { + "states": [ + { + "default": true, + "id": 22949 + } + ] + }, + "minecraft:weathered_copper": { + "states": [ + { + "default": true, + "id": 22940 + } + ] + }, + "minecraft:weathered_copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24700, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24701, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24702, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24703, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:weathered_copper_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23844, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23845, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23846, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23847, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23848, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23849, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23850, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23851, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23852, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23853, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23854, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 23855, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23856, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23857, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23858, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23859, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23860, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23861, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23862, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23863, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23864, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23865, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23866, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23867, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23868, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23869, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23870, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23871, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23872, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23873, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23874, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23875, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23876, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23877, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23878, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23879, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23880, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23881, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23882, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23883, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23884, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23885, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23886, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23887, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23888, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23889, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23890, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23891, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23892, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23893, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23894, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23895, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23896, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23897, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23898, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23899, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23900, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23901, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23902, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23903, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23904, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23905, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23906, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23907, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:weathered_copper_grate": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24680, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24681, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24356, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24357, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24358, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24359, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24360, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24361, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24362, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24363, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24364, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24365, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24366, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24367, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24368, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24369, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24370, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24371, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24372, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24373, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24374, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24375, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24376, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24377, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24378, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24379, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24380, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24381, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24382, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24383, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24384, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24385, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24386, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24387, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24388, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24389, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24390, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24391, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24392, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24393, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24394, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24395, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24396, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24397, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24398, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24399, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24400, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24401, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24402, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24403, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24404, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24405, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24406, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24407, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24408, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24409, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24410, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24411, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24412, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24413, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24414, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24415, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24416, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24417, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24418, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24419, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_cut_copper": { + "states": [ + { + "default": true, + "id": 22945 + } + ] + }, + "minecraft:weathered_cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23282, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23283, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23284, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23285, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23286, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23287, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23036, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23037, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23038, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23039, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23040, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23041, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23042, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23043, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23044, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23045, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23046, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23047, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23048, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23049, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23050, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23051, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23052, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23053, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23054, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23055, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23056, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23057, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23058, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23059, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23060, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23061, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23062, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23063, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23064, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23065, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23066, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23067, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23068, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23069, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23070, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23071, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23072, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23073, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23074, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23075, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23076, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23077, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23078, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23079, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23080, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23081, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23082, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23083, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23084, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23085, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23086, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23087, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23088, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23089, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23090, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23091, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23092, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23093, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23094, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23095, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23096, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23097, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23098, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23099, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23100, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23101, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23102, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23103, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23104, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23105, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23106, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23107, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23108, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23109, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23110, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23111, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23112, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23113, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23114, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23115, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weeping_vines": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + }, + "states": [ + { + "default": true, + "id": 18611, + "properties": { + "age": "0" + } + }, + { + "id": 18612, + "properties": { + "age": "1" + } + }, + { + "id": 18613, + "properties": { + "age": "2" + } + }, + { + "id": 18614, + "properties": { + "age": "3" + } + }, + { + "id": 18615, + "properties": { + "age": "4" + } + }, + { + "id": 18616, + "properties": { + "age": "5" + } + }, + { + "id": 18617, + "properties": { + "age": "6" + } + }, + { + "id": 18618, + "properties": { + "age": "7" + } + }, + { + "id": 18619, + "properties": { + "age": "8" + } + }, + { + "id": 18620, + "properties": { + "age": "9" + } + }, + { + "id": 18621, + "properties": { + "age": "10" + } + }, + { + "id": 18622, + "properties": { + "age": "11" + } + }, + { + "id": 18623, + "properties": { + "age": "12" + } + }, + { + "id": 18624, + "properties": { + "age": "13" + } + }, + { + "id": 18625, + "properties": { + "age": "14" + } + }, + { + "id": 18626, + "properties": { + "age": "15" + } + }, + { + "id": 18627, + "properties": { + "age": "16" + } + }, + { + "id": 18628, + "properties": { + "age": "17" + } + }, + { + "id": 18629, + "properties": { + "age": "18" + } + }, + { + "id": 18630, + "properties": { + "age": "19" + } + }, + { + "id": 18631, + "properties": { + "age": "20" + } + }, + { + "id": 18632, + "properties": { + "age": "21" + } + }, + { + "id": 18633, + "properties": { + "age": "22" + } + }, + { + "id": 18634, + "properties": { + "age": "23" + } + }, + { + "id": 18635, + "properties": { + "age": "24" + } + }, + { + "id": 18636, + "properties": { + "age": "25" + } + } + ] + }, + "minecraft:weeping_vines_plant": { + "states": [ + { + "default": true, + "id": 18637 + } + ] + }, + "minecraft:wet_sponge": { + "states": [ + { + "default": true, + "id": 518 + } + ] + }, + "minecraft:wheat": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 4278, + "properties": { + "age": "0" + } + }, + { + "id": 4279, + "properties": { + "age": "1" + } + }, + { + "id": 4280, + "properties": { + "age": "2" + } + }, + { + "id": 4281, + "properties": { + "age": "3" + } + }, + { + "id": 4282, + "properties": { + "age": "4" + } + }, + { + "id": 4283, + "properties": { + "age": "5" + } + }, + { + "id": 4284, + "properties": { + "age": "6" + } + }, + { + "id": 4285, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:white_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10759, + "properties": { + "rotation": "0" + } + }, + { + "id": 10760, + "properties": { + "rotation": "1" + } + }, + { + "id": 10761, + "properties": { + "rotation": "2" + } + }, + { + "id": 10762, + "properties": { + "rotation": "3" + } + }, + { + "id": 10763, + "properties": { + "rotation": "4" + } + }, + { + "id": 10764, + "properties": { + "rotation": "5" + } + }, + { + "id": 10765, + "properties": { + "rotation": "6" + } + }, + { + "id": 10766, + "properties": { + "rotation": "7" + } + }, + { + "id": 10767, + "properties": { + "rotation": "8" + } + }, + { + "id": 10768, + "properties": { + "rotation": "9" + } + }, + { + "id": 10769, + "properties": { + "rotation": "10" + } + }, + { + "id": 10770, + "properties": { + "rotation": "11" + } + }, + { + "id": 10771, + "properties": { + "rotation": "12" + } + }, + { + "id": 10772, + "properties": { + "rotation": "13" + } + }, + { + "id": 10773, + "properties": { + "rotation": "14" + } + }, + { + "id": 10774, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:white_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1688, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1689, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1690, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1691, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1692, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1693, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1694, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1695, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1696, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1697, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1698, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1699, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1700, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1701, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1702, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1703, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:white_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20741, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20742, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20743, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20744, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20745, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20746, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20747, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20748, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20749, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20750, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20751, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20752, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20753, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20754, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20755, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20756, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:white_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20999, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21000, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:white_carpet": { + "states": [ + { + "default": true, + "id": 10728 + } + ] + }, + "minecraft:white_concrete": { + "states": [ + { + "default": true, + "id": 12728 + } + ] + }, + "minecraft:white_concrete_powder": { + "states": [ + { + "default": true, + "id": 12744 + } + ] + }, + "minecraft:white_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12664, + "properties": { + "facing": "north" + } + }, + { + "id": 12665, + "properties": { + "facing": "south" + } + }, + { + "id": 12666, + "properties": { + "facing": "west" + } + }, + { + "id": 12667, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:white_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12568, + "properties": { + "facing": "north" + } + }, + { + "id": 12569, + "properties": { + "facing": "east" + } + }, + { + "id": 12570, + "properties": { + "facing": "south" + } + }, + { + "id": 12571, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12572, + "properties": { + "facing": "up" + } + }, + { + "id": 12573, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:white_stained_glass": { + "states": [ + { + "default": true, + "id": 5945 + } + ] + }, + "minecraft:white_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9372, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9373, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9374, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9375, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9376, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9377, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9378, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9379, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9380, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9381, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9382, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9383, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9384, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9385, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9386, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9387, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9388, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9389, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9390, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9391, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9392, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9393, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9394, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9395, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9396, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9397, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9398, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9399, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9400, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9401, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9402, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9403, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:white_terracotta": { + "states": [ + { + "default": true, + "id": 9356 + } + ] + }, + "minecraft:white_tulip": { + "states": [ + { + "default": true, + "id": 2083 + } + ] + }, + "minecraft:white_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11015, + "properties": { + "facing": "north" + } + }, + { + "id": 11016, + "properties": { + "facing": "south" + } + }, + { + "id": 11017, + "properties": { + "facing": "west" + } + }, + { + "id": 11018, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:white_wool": { + "states": [ + { + "default": true, + "id": 2047 + } + ] + }, + "minecraft:wither_rose": { + "states": [ + { + "default": true, + "id": 2087 + } + ] + }, + "minecraft:wither_skeleton_skull": { + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 8867, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 8868, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 8869, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 8870, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 8871, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 8872, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 8873, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 8874, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 8875, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 8876, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 8877, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 8878, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 8879, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 8880, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 8881, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 8882, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 8883, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 8884, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 8885, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 8886, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 8887, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 8888, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 8889, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 8890, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 8891, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 8892, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 8893, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 8894, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 8895, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 8896, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 8897, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 8898, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:wither_skeleton_wall_skull": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8899, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8900, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 8901, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 8902, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 8903, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 8904, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 8905, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 8906, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:yellow_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10823, + "properties": { + "rotation": "0" + } + }, + { + "id": 10824, + "properties": { + "rotation": "1" + } + }, + { + "id": 10825, + "properties": { + "rotation": "2" + } + }, + { + "id": 10826, + "properties": { + "rotation": "3" + } + }, + { + "id": 10827, + "properties": { + "rotation": "4" + } + }, + { + "id": 10828, + "properties": { + "rotation": "5" + } + }, + { + "id": 10829, + "properties": { + "rotation": "6" + } + }, + { + "id": 10830, + "properties": { + "rotation": "7" + } + }, + { + "id": 10831, + "properties": { + "rotation": "8" + } + }, + { + "id": 10832, + "properties": { + "rotation": "9" + } + }, + { + "id": 10833, + "properties": { + "rotation": "10" + } + }, + { + "id": 10834, + "properties": { + "rotation": "11" + } + }, + { + "id": 10835, + "properties": { + "rotation": "12" + } + }, + { + "id": 10836, + "properties": { + "rotation": "13" + } + }, + { + "id": 10837, + "properties": { + "rotation": "14" + } + }, + { + "id": 10838, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:yellow_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1752, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1753, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1754, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1755, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1756, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1757, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1758, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1759, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1760, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1761, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1762, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1763, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1764, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1765, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1766, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1767, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:yellow_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20805, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20806, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20807, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20808, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20809, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20810, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20811, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20812, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20813, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20814, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20815, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20816, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20817, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20818, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20819, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20820, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:yellow_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21007, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21008, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:yellow_carpet": { + "states": [ + { + "default": true, + "id": 10732 + } + ] + }, + "minecraft:yellow_concrete": { + "states": [ + { + "default": true, + "id": 12732 + } + ] + }, + "minecraft:yellow_concrete_powder": { + "states": [ + { + "default": true, + "id": 12748 + } + ] + }, + "minecraft:yellow_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12680, + "properties": { + "facing": "north" + } + }, + { + "id": 12681, + "properties": { + "facing": "south" + } + }, + { + "id": 12682, + "properties": { + "facing": "west" + } + }, + { + "id": 12683, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:yellow_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12592, + "properties": { + "facing": "north" + } + }, + { + "id": 12593, + "properties": { + "facing": "east" + } + }, + { + "id": 12594, + "properties": { + "facing": "south" + } + }, + { + "id": 12595, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12596, + "properties": { + "facing": "up" + } + }, + { + "id": 12597, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:yellow_stained_glass": { + "states": [ + { + "default": true, + "id": 5949 + } + ] + }, + "minecraft:yellow_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9500, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9501, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9502, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9503, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9504, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9505, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9506, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9507, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9508, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9509, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9510, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9511, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9512, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9513, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9514, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9515, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9516, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9517, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9518, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9519, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9520, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9521, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9522, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9523, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9524, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9525, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9526, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9527, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9528, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9529, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9530, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9531, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:yellow_terracotta": { + "states": [ + { + "default": true, + "id": 9360 + } + ] + }, + "minecraft:yellow_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11031, + "properties": { + "facing": "north" + } + }, + { + "id": 11032, + "properties": { + "facing": "south" + } + }, + { + "id": 11033, + "properties": { + "facing": "west" + } + }, + { + "id": 11034, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:yellow_wool": { + "states": [ + { + "default": true, + "id": 2051 + } + ] + }, + "minecraft:zombie_head": { + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 8907, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 8908, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 8909, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 8910, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 8911, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 8912, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 8913, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 8914, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 8915, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 8916, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 8917, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 8918, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 8919, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 8920, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 8921, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 8922, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 8923, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 8924, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 8925, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 8926, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 8927, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 8928, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 8929, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 8930, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 8931, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 8932, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 8933, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 8934, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 8935, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 8936, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 8937, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 8938, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:zombie_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8939, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8940, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 8941, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 8942, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 8943, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 8944, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 8945, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 8946, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + } +} \ No newline at end of file diff --git a/mc_data/gen_info.yaml b/mc_data/gen_info.yaml new file mode 100644 index 00000000..ec62477c --- /dev/null +++ b/mc_data/gen_info.yaml @@ -0,0 +1,227 @@ +# This file defines all the blocks that MCHPRS implements (or at least recognizes). +# It is used alongside the JSON reports generated by an official Minecraft server's +# data generators to generate the Block enum and associated functions. + +# Blocks can have several attributes: +# solid: can be powered by redstone. +# cube: redstone can be placed on top of it. +# transparent: redstone cannot travel down the block. +# maybe_solid: depends on block state properties +# maybe_cube: depends on block state properties +# maybe_transparent: depends on block state properties +# prop_struct: make a separate struct containing block properties +# item: also creates an item with the same name +# simple_item: also create an item with the same name that gets simply placed when used. +# This attribute cannot be used if the block has properties. +# complex_transform: used when properties cannot be transformed independently +# wool: note block instrument material +# wood: note block instrument material +# stone: note block instrument material +# glass: note block instrument material + +blocks: + "minecraft:air": "" + "minecraft:stone": "solid,cube,simple_item,stone" + "minecraft:glass": "transparent,cube,simple_item,glass" + "minecraft:glowstone": "transparent,cube,simple_item" + "minecraft:redstone_wire": "prop_struct,complex_transform" + "minecraft:oak_wall_sign": "wood" + "minecraft:spruce_wall_sign": "wood" + "minecraft:birch_wall_sign": "wood" + "minecraft:acacia_wall_sign": "wood" + "minecraft:jungle_wall_sign": "wood" + "minecraft:dark_oak_wall_sign": "wood" + "minecraft:crimson_wall_sign": "wood" + "minecraft:warped_wall_sign": "wood" + "minecraft:oak_sign": "item,wood" + "minecraft:spruce_sign": "item,wood" + "minecraft:birch_sign": "item,wood" + "minecraft:acacia_sign": "item,wood" + "minecraft:jungle_sign": "item,wood" + "minecraft:dark_oak_sign": "item,wood" + "minecraft:crimson_sign": "item,wood" + "minecraft:warped_sign": "item,wood" + "minecraft:lever": "item" + "minecraft:stone_button": "item" + "minecraft:redstone_torch": "item" + "minecraft:redstone_wall_torch": "" + "minecraft:repeater": "prop_struct,item" + "minecraft:redstone_lamp": "solid,cube,item" + "minecraft:tripwire_hook": "item" + "minecraft:comparator": "prop_struct,item" + "minecraft:redstone_block": "transparent,cube,simple_item" + "minecraft:observer": "item" + "minecraft:sea_pickle": "item" + "minecraft:target": "solid,cube,item" + "minecraft:stone_pressure_plate": "item" + "minecraft:cake": "item" + "minecraft:barrel": "solid,cube,item,wood" + "minecraft:hopper": "transparent,cube,item" + "minecraft:sandstone": "solid,cube,simple_item,stone" + "minecraft:coal_block": "solid,cube,simple_item,stone" + "minecraft:furnace": "solid,cube,item" + "minecraft:quartz_block": "solid,cube,simple_item" + "minecraft:smooth_quartz": "solid,cube,simple_item" + "minecraft:smooth_stone_slab": "maybe_solid,maybe_cube,maybe_transparent,item" + "minecraft:quartz_slab": "maybe_solid,maybe_cube,maybe_transparent,item" + "minecraft:cauldron": "transparent,item" + "minecraft:water_cauldron": "transparent" + "minecraft:composter": "transparent,cube,item,wood" # FIXME: You can place repeaters and comparators on it, but not wires? + "minecraft:white_concrete": "solid,cube,simple_item,stone" + "minecraft:orange_concrete": "solid,cube,simple_item,stone" + "minecraft:magenta_concrete": "solid,cube,simple_item,stone" + "minecraft:light_blue_concrete": "solid,cube,simple_item,stone" + "minecraft:yellow_concrete": "solid,cube,simple_item,stone" + "minecraft:lime_concrete": "solid,cube,simple_item,stone" + "minecraft:pink_concrete": "solid,cube,simple_item,stone" + "minecraft:gray_concrete": "solid,cube,simple_item,stone" + "minecraft:light_gray_concrete": "solid,cube,simple_item,stone" + "minecraft:cyan_concrete": "solid,cube,simple_item,stone" + "minecraft:purple_concrete": "solid,cube,simple_item,stone" + "minecraft:blue_concrete": "solid,cube,simple_item,stone" + "minecraft:brown_concrete": "solid,cube,simple_item,stone" + "minecraft:green_concrete": "solid,cube,simple_item,stone" + "minecraft:red_concrete": "solid,cube,simple_item,stone" + "minecraft:black_concrete": "solid,cube,simple_item,stone" + "minecraft:white_stained_glass": "transparent,cube,simple_item,glass" + "minecraft:orange_stained_glass": "transparent,cube,simple_item,glass" + "minecraft:magenta_stained_glass": "transparent,cube,simple_item,glass" + "minecraft:light_blue_stained_glass": "transparent,cube,simple_item,glass" + "minecraft:yellow_stained_glass": "transparent,cube,simple_item,glass" + "minecraft:lime_stained_glass": "transparent,cube,simple_item,glass" + "minecraft:pink_stained_glass": "transparent,cube,simple_item,glass" + "minecraft:gray_stained_glass": "transparent,cube,simple_item,glass" + "minecraft:light_gray_stained_glass": "transparent,cube,simple_item,glass" + "minecraft:cyan_stained_glass": "transparent,cube,simple_item,glass" + "minecraft:purple_stained_glass": "transparent,cube,simple_item,glass" + "minecraft:blue_stained_glass": "transparent,cube,simple_item,glass" + "minecraft:brown_stained_glass": "transparent,cube,simple_item,glass" + "minecraft:green_stained_glass": "transparent,cube,simple_item,glass" + "minecraft:red_stained_glass": "transparent,cube,simple_item,glass" + "minecraft:black_stained_glass": "transparent,cube,simple_item,glass" + "minecraft:terracotta": "solid,cube,simple_item,stone" + "minecraft:white_terracotta": "solid,cube,simple_item,stone" + "minecraft:orange_terracotta": "solid,cube,simple_item,stone" + "minecraft:magenta_terracotta": "solid,cube,simple_item,stone" + "minecraft:light_blue_terracotta": "solid,cube,simple_item,stone" + "minecraft:yellow_terracotta": "solid,cube,simple_item,stone" + "minecraft:lime_terracotta": "solid,cube,simple_item,stone" + "minecraft:pink_terracotta": "solid,cube,simple_item,stone" + "minecraft:gray_terracotta": "solid,cube,simple_item,stone" + "minecraft:light_gray_terracotta": "solid,cube,simple_item,stone" + "minecraft:cyan_terracotta": "solid,cube,simple_item,stone" + "minecraft:purple_terracotta": "solid,cube,simple_item,stone" + "minecraft:blue_terracotta": "solid,cube,simple_item,stone" + "minecraft:brown_terracotta": "solid,cube,simple_item,stone" + "minecraft:green_terracotta": "solid,cube,simple_item,stone" + "minecraft:red_terracotta": "solid,cube,simple_item,stone" + "minecraft:black_terracotta": "solid,cube,simple_item,stone" + "minecraft:white_wool": "solid,cube,simple_item,wool" + "minecraft:orange_wool": "solid,cube,simple_item,wool" + "minecraft:magenta_wool": "solid,cube,simple_item,wool" + "minecraft:light_blue_wool": "solid,cube,simple_item,wool" + "minecraft:yellow_wool": "solid,cube,simple_item,wool" + "minecraft:lime_wool": "solid,cube,simple_item,wool" + "minecraft:pink_wool": "solid,cube,simple_item,wool" + "minecraft:gray_wool": "solid,cube,simple_item,wool" + "minecraft:light_gray_wool": "solid,cube,simple_item,wool" + "minecraft:cyan_wool": "solid,cube,simple_item,wool" + "minecraft:purple_wool": "solid,cube,simple_item,wool" + "minecraft:blue_wool": "solid,cube,simple_item,wool" + "minecraft:brown_wool": "solid,cube,simple_item,wool" + "minecraft:green_wool": "solid,cube,simple_item,wool" + "minecraft:red_wool": "solid,cube,simple_item,wool" + "minecraft:black_wool": "solid,cube,simple_item,wool" + "minecraft:iron_trapdoor": "solid,cube,item" + "minecraft:note_block": "solid,cube,item,wood" + "minecraft:clay": "solid,cube,simple_item" + "minecraft:gold_block": "solid,cube,simple_item" + "minecraft:packed_ice": "solid,cube,simple_item" + "minecraft:bone_block": "solid,cube,item" + "minecraft:iron_block": "solid,cube,simple_item" + "minecraft:soul_sand": "solid,cube,simple_item" + "minecraft:pumpkin": "solid,cube,item" + "minecraft:emerald_block": "solid,cube,simple_item" + "minecraft:hay_block": "solid,cube,item" + "minecraft:sand": "solid,cube,simple_item" + "minecraft:stone_bricks": "solid,cube,simple_item" + "minecraft:end_portal_frame": "solid,cube,item" + +# Map block property sets to a Rust enum type +prop_types: + BlockDirection: + - north + - south + - west + - east + BlockFacing: + - north + - east + - south + - west + - up + - down + LeverFace: + - floor + - wall + - ceiling + HopperFacing: + - down + - north + - south + - west + - east + SlabType: + - top + - bottom + - double + BlockAxis: + - x + - y + - z + Instrument: + - harp + - basedrum + - snare + - hat + - bass + - flute + - bell + - guitar + - chime + - xylophone + - iron_xylophone + - cow_bell + - didgeridoo + - bit + - banjo + - pling + - zombie + - skeleton + - creeper + - dragon + - wither_skeleton + - piglin + - custom_head + RedstoneWireSide: + - up + - side + - none + TrapdoorHalf: + - top + - bottom + ComparatorMode: + - compare + - subtract + +# Items can have the following attributes +# max_stack:##: the maximum number of this item that fits in one inventory slot +# block: this item can be placed + +items: + "minecraft:wooden_axe": "max_stack:1" + "minecraft:snowball": "max_stack:16" + "minecraft:totem_of_undying": "max_stack:1" + "minecraft:milk_bucket": "max_stack:1" + "minecraft:redstone": "block" + "minecraft:ender_eye": "" diff --git a/mc_data/registries.json b/mc_data/registries.json new file mode 100644 index 00000000..422a7c23 --- /dev/null +++ b/mc_data/registries.json @@ -0,0 +1,13873 @@ +{ + "minecraft:activity": { + "entries": { + "minecraft:admire_item": { + "protocol_id": 12 + }, + "minecraft:avoid": { + "protocol_id": 13 + }, + "minecraft:celebrate": { + "protocol_id": 11 + }, + "minecraft:core": { + "protocol_id": 0 + }, + "minecraft:dig": { + "protocol_id": 25 + }, + "minecraft:emerge": { + "protocol_id": 24 + }, + "minecraft:fight": { + "protocol_id": 10 + }, + "minecraft:hide": { + "protocol_id": 9 + }, + "minecraft:idle": { + "protocol_id": 1 + }, + "minecraft:investigate": { + "protocol_id": 22 + }, + "minecraft:lay_spawn": { + "protocol_id": 20 + }, + "minecraft:long_jump": { + "protocol_id": 16 + }, + "minecraft:meet": { + "protocol_id": 5 + }, + "minecraft:panic": { + "protocol_id": 6 + }, + "minecraft:play": { + "protocol_id": 3 + }, + "minecraft:play_dead": { + "protocol_id": 15 + }, + "minecraft:pre_raid": { + "protocol_id": 8 + }, + "minecraft:raid": { + "protocol_id": 7 + }, + "minecraft:ram": { + "protocol_id": 17 + }, + "minecraft:rest": { + "protocol_id": 4 + }, + "minecraft:ride": { + "protocol_id": 14 + }, + "minecraft:roar": { + "protocol_id": 23 + }, + "minecraft:sniff": { + "protocol_id": 21 + }, + "minecraft:swim": { + "protocol_id": 19 + }, + "minecraft:tongue": { + "protocol_id": 18 + }, + "minecraft:work": { + "protocol_id": 2 + } + }, + "protocol_id": 30 + }, + "minecraft:attribute": { + "entries": { + "minecraft:generic.armor": { + "protocol_id": 0 + }, + "minecraft:generic.armor_toughness": { + "protocol_id": 1 + }, + "minecraft:generic.attack_damage": { + "protocol_id": 2 + }, + "minecraft:generic.attack_knockback": { + "protocol_id": 3 + }, + "minecraft:generic.attack_speed": { + "protocol_id": 4 + }, + "minecraft:generic.flying_speed": { + "protocol_id": 5 + }, + "minecraft:generic.follow_range": { + "protocol_id": 6 + }, + "minecraft:generic.knockback_resistance": { + "protocol_id": 8 + }, + "minecraft:generic.luck": { + "protocol_id": 9 + }, + "minecraft:generic.max_absorption": { + "protocol_id": 10 + }, + "minecraft:generic.max_health": { + "protocol_id": 11 + }, + "minecraft:generic.movement_speed": { + "protocol_id": 12 + }, + "minecraft:horse.jump_strength": { + "protocol_id": 7 + }, + "minecraft:zombie.spawn_reinforcements": { + "protocol_id": 13 + } + }, + "protocol_id": 20 + }, + "minecraft:banner_pattern": { + "entries": { + "minecraft:base": { + "protocol_id": 0 + }, + "minecraft:border": { + "protocol_id": 30 + }, + "minecraft:bricks": { + "protocol_id": 34 + }, + "minecraft:circle": { + "protocol_id": 24 + }, + "minecraft:creeper": { + "protocol_id": 36 + }, + "minecraft:cross": { + "protocol_id": 14 + }, + "minecraft:curly_border": { + "protocol_id": 31 + }, + "minecraft:diagonal_left": { + "protocol_id": 20 + }, + "minecraft:diagonal_right": { + "protocol_id": 23 + }, + "minecraft:diagonal_up_left": { + "protocol_id": 22 + }, + "minecraft:diagonal_up_right": { + "protocol_id": 21 + }, + "minecraft:flower": { + "protocol_id": 38 + }, + "minecraft:globe": { + "protocol_id": 35 + }, + "minecraft:gradient": { + "protocol_id": 32 + }, + "minecraft:gradient_up": { + "protocol_id": 33 + }, + "minecraft:half_horizontal": { + "protocol_id": 27 + }, + "minecraft:half_horizontal_bottom": { + "protocol_id": 29 + }, + "minecraft:half_vertical": { + "protocol_id": 26 + }, + "minecraft:half_vertical_right": { + "protocol_id": 28 + }, + "minecraft:mojang": { + "protocol_id": 39 + }, + "minecraft:piglin": { + "protocol_id": 40 + }, + "minecraft:rhombus": { + "protocol_id": 25 + }, + "minecraft:skull": { + "protocol_id": 37 + }, + "minecraft:small_stripes": { + "protocol_id": 13 + }, + "minecraft:square_bottom_left": { + "protocol_id": 1 + }, + "minecraft:square_bottom_right": { + "protocol_id": 2 + }, + "minecraft:square_top_left": { + "protocol_id": 3 + }, + "minecraft:square_top_right": { + "protocol_id": 4 + }, + "minecraft:straight_cross": { + "protocol_id": 15 + }, + "minecraft:stripe_bottom": { + "protocol_id": 5 + }, + "minecraft:stripe_center": { + "protocol_id": 9 + }, + "minecraft:stripe_downleft": { + "protocol_id": 12 + }, + "minecraft:stripe_downright": { + "protocol_id": 11 + }, + "minecraft:stripe_left": { + "protocol_id": 7 + }, + "minecraft:stripe_middle": { + "protocol_id": 10 + }, + "minecraft:stripe_right": { + "protocol_id": 8 + }, + "minecraft:stripe_top": { + "protocol_id": 6 + }, + "minecraft:triangle_bottom": { + "protocol_id": 16 + }, + "minecraft:triangle_top": { + "protocol_id": 17 + }, + "minecraft:triangles_bottom": { + "protocol_id": 18 + }, + "minecraft:triangles_top": { + "protocol_id": 19 + } + }, + "protocol_id": 64 + }, + "minecraft:block_entity_type": { + "entries": { + "minecraft:banner": { + "protocol_id": 19 + }, + "minecraft:barrel": { + "protocol_id": 26 + }, + "minecraft:beacon": { + "protocol_id": 14 + }, + "minecraft:bed": { + "protocol_id": 24 + }, + "minecraft:beehive": { + "protocol_id": 33 + }, + "minecraft:bell": { + "protocol_id": 30 + }, + "minecraft:blast_furnace": { + "protocol_id": 28 + }, + "minecraft:brewing_stand": { + "protocol_id": 11 + }, + "minecraft:brushable_block": { + "protocol_id": 39 + }, + "minecraft:calibrated_sculk_sensor": { + "protocol_id": 35 + }, + "minecraft:campfire": { + "protocol_id": 32 + }, + "minecraft:chest": { + "protocol_id": 1 + }, + "minecraft:chiseled_bookshelf": { + "protocol_id": 38 + }, + "minecraft:command_block": { + "protocol_id": 22 + }, + "minecraft:comparator": { + "protocol_id": 18 + }, + "minecraft:conduit": { + "protocol_id": 25 + }, + "minecraft:crafter": { + "protocol_id": 41 + }, + "minecraft:daylight_detector": { + "protocol_id": 16 + }, + "minecraft:decorated_pot": { + "protocol_id": 40 + }, + "minecraft:dispenser": { + "protocol_id": 5 + }, + "minecraft:dropper": { + "protocol_id": 6 + }, + "minecraft:enchanting_table": { + "protocol_id": 12 + }, + "minecraft:end_gateway": { + "protocol_id": 21 + }, + "minecraft:end_portal": { + "protocol_id": 13 + }, + "minecraft:ender_chest": { + "protocol_id": 3 + }, + "minecraft:furnace": { + "protocol_id": 0 + }, + "minecraft:hanging_sign": { + "protocol_id": 8 + }, + "minecraft:hopper": { + "protocol_id": 17 + }, + "minecraft:jigsaw": { + "protocol_id": 31 + }, + "minecraft:jukebox": { + "protocol_id": 4 + }, + "minecraft:lectern": { + "protocol_id": 29 + }, + "minecraft:mob_spawner": { + "protocol_id": 9 + }, + "minecraft:piston": { + "protocol_id": 10 + }, + "minecraft:sculk_catalyst": { + "protocol_id": 36 + }, + "minecraft:sculk_sensor": { + "protocol_id": 34 + }, + "minecraft:sculk_shrieker": { + "protocol_id": 37 + }, + "minecraft:shulker_box": { + "protocol_id": 23 + }, + "minecraft:sign": { + "protocol_id": 7 + }, + "minecraft:skull": { + "protocol_id": 15 + }, + "minecraft:smoker": { + "protocol_id": 27 + }, + "minecraft:structure_block": { + "protocol_id": 20 + }, + "minecraft:trapped_chest": { + "protocol_id": 2 + }, + "minecraft:trial_spawner": { + "protocol_id": 42 + } + }, + "protocol_id": 10 + }, + "minecraft:block_predicate_type": { + "entries": { + "minecraft:all_of": { + "protocol_id": 9 + }, + "minecraft:any_of": { + "protocol_id": 8 + }, + "minecraft:has_sturdy_face": { + "protocol_id": 3 + }, + "minecraft:inside_world_bounds": { + "protocol_id": 7 + }, + "minecraft:matching_block_tag": { + "protocol_id": 1 + }, + "minecraft:matching_blocks": { + "protocol_id": 0 + }, + "minecraft:matching_fluids": { + "protocol_id": 2 + }, + "minecraft:not": { + "protocol_id": 10 + }, + "minecraft:replaceable": { + "protocol_id": 5 + }, + "minecraft:solid": { + "protocol_id": 4 + }, + "minecraft:true": { + "protocol_id": 11 + }, + "minecraft:would_survive": { + "protocol_id": 6 + } + }, + "protocol_id": 40 + }, + "minecraft:block_type": { + "entries": { + "minecraft:air": { + "protocol_id": 1 + }, + "minecraft:amethyst": { + "protocol_id": 2 + }, + "minecraft:amethyst_cluster": { + "protocol_id": 3 + }, + "minecraft:anvil": { + "protocol_id": 4 + }, + "minecraft:attached_stem": { + "protocol_id": 5 + }, + "minecraft:azalea": { + "protocol_id": 6 + }, + "minecraft:bamboo_sapling": { + "protocol_id": 7 + }, + "minecraft:bamboo_stalk": { + "protocol_id": 8 + }, + "minecraft:banner": { + "protocol_id": 9 + }, + "minecraft:barrel": { + "protocol_id": 10 + }, + "minecraft:barrier": { + "protocol_id": 11 + }, + "minecraft:base_coral_fan": { + "protocol_id": 12 + }, + "minecraft:base_coral_plant": { + "protocol_id": 13 + }, + "minecraft:base_coral_wall_fan": { + "protocol_id": 14 + }, + "minecraft:beacon": { + "protocol_id": 15 + }, + "minecraft:bed": { + "protocol_id": 16 + }, + "minecraft:beehive": { + "protocol_id": 17 + }, + "minecraft:beetroot": { + "protocol_id": 18 + }, + "minecraft:bell": { + "protocol_id": 19 + }, + "minecraft:big_dripleaf": { + "protocol_id": 20 + }, + "minecraft:big_dripleaf_stem": { + "protocol_id": 21 + }, + "minecraft:blast_furnace": { + "protocol_id": 22 + }, + "minecraft:block": { + "protocol_id": 0 + }, + "minecraft:brewing_stand": { + "protocol_id": 23 + }, + "minecraft:brushable": { + "protocol_id": 24 + }, + "minecraft:bubble_column": { + "protocol_id": 25 + }, + "minecraft:budding_amethyst": { + "protocol_id": 26 + }, + "minecraft:button": { + "protocol_id": 27 + }, + "minecraft:cactus": { + "protocol_id": 28 + }, + "minecraft:cake": { + "protocol_id": 29 + }, + "minecraft:calibrated_sculk_sensor": { + "protocol_id": 30 + }, + "minecraft:campfire": { + "protocol_id": 31 + }, + "minecraft:candle": { + "protocol_id": 33 + }, + "minecraft:candle_cake": { + "protocol_id": 32 + }, + "minecraft:carpet": { + "protocol_id": 34 + }, + "minecraft:carrot": { + "protocol_id": 35 + }, + "minecraft:cartography_table": { + "protocol_id": 36 + }, + "minecraft:carved_pumpkin": { + "protocol_id": 37 + }, + "minecraft:cauldron": { + "protocol_id": 38 + }, + "minecraft:cave_vines": { + "protocol_id": 39 + }, + "minecraft:cave_vines_plant": { + "protocol_id": 40 + }, + "minecraft:ceiling_hanging_sign": { + "protocol_id": 41 + }, + "minecraft:chain": { + "protocol_id": 42 + }, + "minecraft:cherry_leaves": { + "protocol_id": 43 + }, + "minecraft:chest": { + "protocol_id": 44 + }, + "minecraft:chiseled_book_shelf": { + "protocol_id": 45 + }, + "minecraft:chorus_flower": { + "protocol_id": 46 + }, + "minecraft:chorus_plant": { + "protocol_id": 47 + }, + "minecraft:cocoa": { + "protocol_id": 48 + }, + "minecraft:colored_falling": { + "protocol_id": 49 + }, + "minecraft:command": { + "protocol_id": 50 + }, + "minecraft:comparator": { + "protocol_id": 51 + }, + "minecraft:composter": { + "protocol_id": 52 + }, + "minecraft:concrete_powder": { + "protocol_id": 53 + }, + "minecraft:conduit": { + "protocol_id": 54 + }, + "minecraft:copper_bulb_block": { + "protocol_id": 55 + }, + "minecraft:coral": { + "protocol_id": 56 + }, + "minecraft:coral_fan": { + "protocol_id": 57 + }, + "minecraft:coral_plant": { + "protocol_id": 58 + }, + "minecraft:coral_wall_fan": { + "protocol_id": 59 + }, + "minecraft:crafter": { + "protocol_id": 60 + }, + "minecraft:crafting_table": { + "protocol_id": 61 + }, + "minecraft:crop": { + "protocol_id": 62 + }, + "minecraft:crying_obsidian": { + "protocol_id": 63 + }, + "minecraft:daylight_detector": { + "protocol_id": 64 + }, + "minecraft:dead_bush": { + "protocol_id": 65 + }, + "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: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:farm": { + "protocol_id": 81 + }, + "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_roots": { + "protocol_id": 97 + }, + "minecraft:hay": { + "protocol_id": 98 + }, + "minecraft:honey": { + "protocol_id": 99 + }, + "minecraft:hopper": { + "protocol_id": 100 + }, + "minecraft:huge_mushroom": { + "protocol_id": 101 + }, + "minecraft:ice": { + "protocol_id": 102 + }, + "minecraft:infested": { + "protocol_id": 103 + }, + "minecraft:infested_rotated_pillar": { + "protocol_id": 104 + }, + "minecraft:iron_bars": { + "protocol_id": 105 + }, + "minecraft:jack_o_lantern": { + "protocol_id": 106 + }, + "minecraft:jigsaw": { + "protocol_id": 107 + }, + "minecraft:jukebox": { + "protocol_id": 108 + }, + "minecraft:kelp": { + "protocol_id": 109 + }, + "minecraft:kelp_plant": { + "protocol_id": 110 + }, + "minecraft:ladder": { + "protocol_id": 111 + }, + "minecraft:lantern": { + "protocol_id": 112 + }, + "minecraft:lava_cauldron": { + "protocol_id": 113 + }, + "minecraft:layered_cauldron": { + "protocol_id": 114 + }, + "minecraft:leaves": { + "protocol_id": 115 + }, + "minecraft:lectern": { + "protocol_id": 116 + }, + "minecraft:lever": { + "protocol_id": 117 + }, + "minecraft:light": { + "protocol_id": 118 + }, + "minecraft:lightning_rod": { + "protocol_id": 119 + }, + "minecraft:liquid": { + "protocol_id": 120 + }, + "minecraft:loom": { + "protocol_id": 121 + }, + "minecraft:magma": { + "protocol_id": 122 + }, + "minecraft:mangrove_leaves": { + "protocol_id": 123 + }, + "minecraft:mangrove_propagule": { + "protocol_id": 124 + }, + "minecraft:mangrove_roots": { + "protocol_id": 125 + }, + "minecraft:moss": { + "protocol_id": 126 + }, + "minecraft:moving_piston": { + "protocol_id": 127 + }, + "minecraft:mud": { + "protocol_id": 128 + }, + "minecraft:mushroom": { + "protocol_id": 129 + }, + "minecraft:mycelium": { + "protocol_id": 130 + }, + "minecraft:nether_portal": { + "protocol_id": 131 + }, + "minecraft:nether_sprouts": { + "protocol_id": 133 + }, + "minecraft:nether_wart": { + "protocol_id": 134 + }, + "minecraft:netherrack": { + "protocol_id": 132 + }, + "minecraft:note": { + "protocol_id": 135 + }, + "minecraft:nylium": { + "protocol_id": 136 + }, + "minecraft:observer": { + "protocol_id": 137 + }, + "minecraft:piglinwallskull": { + "protocol_id": 138 + }, + "minecraft:pink_petals": { + "protocol_id": 139 + }, + "minecraft:piston_base": { + "protocol_id": 140 + }, + "minecraft:piston_head": { + "protocol_id": 141 + }, + "minecraft:pitcher_crop": { + "protocol_id": 142 + }, + "minecraft:player_head": { + "protocol_id": 143 + }, + "minecraft:player_wall_head": { + "protocol_id": 144 + }, + "minecraft:pointed_dripstone": { + "protocol_id": 145 + }, + "minecraft:potato": { + "protocol_id": 146 + }, + "minecraft:powder_snow": { + "protocol_id": 147 + }, + "minecraft:powered": { + "protocol_id": 148 + }, + "minecraft:powered_rail": { + "protocol_id": 149 + }, + "minecraft:pressure_plate": { + "protocol_id": 150 + }, + "minecraft:pumpkin": { + "protocol_id": 151 + }, + "minecraft:rail": { + "protocol_id": 152 + }, + "minecraft:redstone_lamp": { + "protocol_id": 153 + }, + "minecraft:redstone_ore": { + "protocol_id": 154 + }, + "minecraft:redstone_torch": { + "protocol_id": 155 + }, + "minecraft:redstone_wall_torch": { + "protocol_id": 156 + }, + "minecraft:redstone_wire": { + "protocol_id": 157 + }, + "minecraft:repeater": { + "protocol_id": 158 + }, + "minecraft:respawn_anchor": { + "protocol_id": 159 + }, + "minecraft:rooted_dirt": { + "protocol_id": 160 + }, + "minecraft:roots": { + "protocol_id": 161 + }, + "minecraft:rotated_pillar": { + "protocol_id": 162 + }, + "minecraft:sapling": { + "protocol_id": 163 + }, + "minecraft:scaffolding": { + "protocol_id": 164 + }, + "minecraft:sculk": { + "protocol_id": 166 + }, + "minecraft:sculk_catalyst": { + "protocol_id": 165 + }, + "minecraft:sculk_sensor": { + "protocol_id": 167 + }, + "minecraft:sculk_shrieker": { + "protocol_id": 168 + }, + "minecraft:sculk_vein": { + "protocol_id": 169 + }, + "minecraft:sea_pickle": { + "protocol_id": 171 + }, + "minecraft:seagrass": { + "protocol_id": 170 + }, + "minecraft:shulker_box": { + "protocol_id": 172 + }, + "minecraft:skull": { + "protocol_id": 173 + }, + "minecraft:slab": { + "protocol_id": 174 + }, + "minecraft:slime": { + "protocol_id": 175 + }, + "minecraft:small_dripleaf": { + "protocol_id": 176 + }, + "minecraft:smithing_table": { + "protocol_id": 177 + }, + "minecraft:smoker": { + "protocol_id": 178 + }, + "minecraft:sniffer_egg": { + "protocol_id": 179 + }, + "minecraft:snow_layer": { + "protocol_id": 180 + }, + "minecraft:snowy_dirt": { + "protocol_id": 181 + }, + "minecraft:soul_fire": { + "protocol_id": 182 + }, + "minecraft:soul_sand": { + "protocol_id": 183 + }, + "minecraft:spawner": { + "protocol_id": 184 + }, + "minecraft:sponge": { + "protocol_id": 185 + }, + "minecraft:spore_blossom": { + "protocol_id": 186 + }, + "minecraft:stained_glass": { + "protocol_id": 188 + }, + "minecraft:stained_glass_pane": { + "protocol_id": 187 + }, + "minecraft:stair": { + "protocol_id": 189 + }, + "minecraft:standing_sign": { + "protocol_id": 190 + }, + "minecraft:stem": { + "protocol_id": 191 + }, + "minecraft:stonecutter": { + "protocol_id": 192 + }, + "minecraft:structure": { + "protocol_id": 193 + }, + "minecraft:structure_void": { + "protocol_id": 194 + }, + "minecraft:sugar_cane": { + "protocol_id": 195 + }, + "minecraft:sweet_berry_bush": { + "protocol_id": 196 + }, + "minecraft:tall_flower": { + "protocol_id": 197 + }, + "minecraft:tall_grass": { + "protocol_id": 198 + }, + "minecraft:tall_seagrass": { + "protocol_id": 199 + }, + "minecraft:target": { + "protocol_id": 200 + }, + "minecraft:tinted_glass": { + "protocol_id": 201 + }, + "minecraft:tnt": { + "protocol_id": 202 + }, + "minecraft:torch": { + "protocol_id": 204 + }, + "minecraft:torchflower_crop": { + "protocol_id": 203 + }, + "minecraft:transparent": { + "protocol_id": 205 + }, + "minecraft:trapdoor": { + "protocol_id": 206 + }, + "minecraft:trapped_chest": { + "protocol_id": 207 + }, + "minecraft:trial_spawner": { + "protocol_id": 208 + }, + "minecraft:trip_wire_hook": { + "protocol_id": 209 + }, + "minecraft:tripwire": { + "protocol_id": 210 + }, + "minecraft:turtle_egg": { + "protocol_id": 211 + }, + "minecraft:twisting_vines": { + "protocol_id": 213 + }, + "minecraft:twisting_vines_plant": { + "protocol_id": 212 + }, + "minecraft:vine": { + "protocol_id": 214 + }, + "minecraft:wall": { + "protocol_id": 220 + }, + "minecraft:wall_banner": { + "protocol_id": 215 + }, + "minecraft:wall_hanging_sign": { + "protocol_id": 216 + }, + "minecraft:wall_sign": { + "protocol_id": 217 + }, + "minecraft:wall_skull": { + "protocol_id": 218 + }, + "minecraft:wall_torch": { + "protocol_id": 219 + }, + "minecraft:waterlily": { + "protocol_id": 221 + }, + "minecraft:waterlogged_transparent": { + "protocol_id": 222 + }, + "minecraft:weathering_copper_bulb": { + "protocol_id": 223 + }, + "minecraft:weathering_copper_door": { + "protocol_id": 224 + }, + "minecraft:weathering_copper_full": { + "protocol_id": 225 + }, + "minecraft:weathering_copper_grate": { + "protocol_id": 226 + }, + "minecraft:weathering_copper_slab": { + "protocol_id": 227 + }, + "minecraft:weathering_copper_stair": { + "protocol_id": 228 + }, + "minecraft:weathering_copper_trap_door": { + "protocol_id": 229 + }, + "minecraft:web": { + "protocol_id": 230 + }, + "minecraft:weeping_vines": { + "protocol_id": 232 + }, + "minecraft:weeping_vines_plant": { + "protocol_id": 231 + }, + "minecraft:weighted_pressure_plate": { + "protocol_id": 233 + }, + "minecraft:wet_sponge": { + "protocol_id": 234 + }, + "minecraft:wither_rose": { + "protocol_id": 235 + }, + "minecraft:wither_skull": { + "protocol_id": 236 + }, + "minecraft:wither_wall_skull": { + "protocol_id": 237 + }, + "minecraft:wool_carpet": { + "protocol_id": 238 + } + }, + "protocol_id": 58 + }, + "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": 62 + }, + "minecraft:chunk_status": { + "default": "minecraft:empty", + "entries": { + "minecraft:biomes": { + "protocol_id": 3 + }, + "minecraft:carvers": { + "protocol_id": 6 + }, + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:features": { + "protocol_id": 7 + }, + "minecraft:full": { + "protocol_id": 11 + }, + "minecraft:initialize_light": { + "protocol_id": 8 + }, + "minecraft:light": { + "protocol_id": 9 + }, + "minecraft:noise": { + "protocol_id": 4 + }, + "minecraft:spawn": { + "protocol_id": 10 + }, + "minecraft:structure_references": { + "protocol_id": 2 + }, + "minecraft:structure_starts": { + "protocol_id": 1 + }, + "minecraft:surface": { + "protocol_id": 5 + } + }, + "protocol_id": 13 + }, + "minecraft:command_argument_type": { + "entries": { + "brigadier:bool": { + "protocol_id": 0 + }, + "brigadier:double": { + "protocol_id": 2 + }, + "brigadier:float": { + "protocol_id": 1 + }, + "brigadier:integer": { + "protocol_id": 3 + }, + "brigadier:long": { + "protocol_id": 4 + }, + "brigadier:string": { + "protocol_id": 5 + }, + "minecraft:angle": { + "protocol_id": 27 + }, + "minecraft:block_pos": { + "protocol_id": 8 + }, + "minecraft:block_predicate": { + "protocol_id": 13 + }, + "minecraft:block_state": { + "protocol_id": 12 + }, + "minecraft:color": { + "protocol_id": 16 + }, + "minecraft:column_pos": { + "protocol_id": 9 + }, + "minecraft:component": { + "protocol_id": 17 + }, + "minecraft:dimension": { + "protocol_id": 39 + }, + "minecraft:entity": { + "protocol_id": 6 + }, + "minecraft:entity_anchor": { + "protocol_id": 36 + }, + "minecraft:float_range": { + "protocol_id": 38 + }, + "minecraft:function": { + "protocol_id": 35 + }, + "minecraft:game_profile": { + "protocol_id": 7 + }, + "minecraft:gamemode": { + "protocol_id": 40 + }, + "minecraft:heightmap": { + "protocol_id": 48 + }, + "minecraft:int_range": { + "protocol_id": 37 + }, + "minecraft:item_predicate": { + "protocol_id": 15 + }, + "minecraft:item_slot": { + "protocol_id": 33 + }, + "minecraft:item_stack": { + "protocol_id": 14 + }, + "minecraft:message": { + "protocol_id": 19 + }, + "minecraft:nbt_compound_tag": { + "protocol_id": 20 + }, + "minecraft:nbt_path": { + "protocol_id": 22 + }, + "minecraft:nbt_tag": { + "protocol_id": 21 + }, + "minecraft:objective": { + "protocol_id": 23 + }, + "minecraft:objective_criteria": { + "protocol_id": 24 + }, + "minecraft:operation": { + "protocol_id": 25 + }, + "minecraft:particle": { + "protocol_id": 26 + }, + "minecraft:resource": { + "protocol_id": 44 + }, + "minecraft:resource_key": { + "protocol_id": 45 + }, + "minecraft:resource_location": { + "protocol_id": 34 + }, + "minecraft:resource_or_tag": { + "protocol_id": 42 + }, + "minecraft:resource_or_tag_key": { + "protocol_id": 43 + }, + "minecraft:rotation": { + "protocol_id": 28 + }, + "minecraft:score_holder": { + "protocol_id": 30 + }, + "minecraft:scoreboard_slot": { + "protocol_id": 29 + }, + "minecraft:style": { + "protocol_id": 18 + }, + "minecraft:swizzle": { + "protocol_id": 31 + }, + "minecraft:team": { + "protocol_id": 32 + }, + "minecraft:template_mirror": { + "protocol_id": 46 + }, + "minecraft:template_rotation": { + "protocol_id": 47 + }, + "minecraft:time": { + "protocol_id": 41 + }, + "minecraft:uuid": { + "protocol_id": 49 + }, + "minecraft:vec2": { + "protocol_id": 11 + }, + "minecraft:vec3": { + "protocol_id": 10 + } + }, + "protocol_id": 22 + }, + "minecraft:creative_mode_tab": { + "entries": { + "minecraft:building_blocks": { + "protocol_id": 0 + }, + "minecraft:colored_blocks": { + "protocol_id": 1 + }, + "minecraft:combat": { + "protocol_id": 8 + }, + "minecraft:food_and_drinks": { + "protocol_id": 9 + }, + "minecraft:functional_blocks": { + "protocol_id": 3 + }, + "minecraft:hotbar": { + "protocol_id": 5 + }, + "minecraft:ingredients": { + "protocol_id": 10 + }, + "minecraft:inventory": { + "protocol_id": 13 + }, + "minecraft:natural_blocks": { + "protocol_id": 2 + }, + "minecraft:op_blocks": { + "protocol_id": 12 + }, + "minecraft:redstone_blocks": { + "protocol_id": 4 + }, + "minecraft:search": { + "protocol_id": 6 + }, + "minecraft:spawn_eggs": { + "protocol_id": 11 + }, + "minecraft:tools_and_utilities": { + "protocol_id": 7 + } + }, + "protocol_id": 67 + }, + "minecraft:custom_stat": { + "entries": { + "minecraft:animals_bred": { + "protocol_id": 32 + }, + "minecraft:aviate_one_cm": { + "protocol_id": 18 + }, + "minecraft:bell_ring": { + "protocol_id": 68 + }, + "minecraft:boat_one_cm": { + "protocol_id": 15 + }, + "minecraft:clean_armor": { + "protocol_id": 40 + }, + "minecraft:clean_banner": { + "protocol_id": 41 + }, + "minecraft:clean_shulker_box": { + "protocol_id": 42 + }, + "minecraft:climb_one_cm": { + "protocol_id": 11 + }, + "minecraft:crouch_one_cm": { + "protocol_id": 7 + }, + "minecraft:damage_absorbed": { + "protocol_id": 28 + }, + "minecraft:damage_blocked_by_shield": { + "protocol_id": 27 + }, + "minecraft:damage_dealt": { + "protocol_id": 23 + }, + "minecraft:damage_dealt_absorbed": { + "protocol_id": 24 + }, + "minecraft:damage_dealt_resisted": { + "protocol_id": 25 + }, + "minecraft:damage_resisted": { + "protocol_id": 29 + }, + "minecraft:damage_taken": { + "protocol_id": 26 + }, + "minecraft:deaths": { + "protocol_id": 30 + }, + "minecraft:drop": { + "protocol_id": 22 + }, + "minecraft:eat_cake_slice": { + "protocol_id": 37 + }, + "minecraft:enchant_item": { + "protocol_id": 53 + }, + "minecraft:fall_one_cm": { + "protocol_id": 10 + }, + "minecraft:fill_cauldron": { + "protocol_id": 38 + }, + "minecraft:fish_caught": { + "protocol_id": 34 + }, + "minecraft:fly_one_cm": { + "protocol_id": 12 + }, + "minecraft:horse_one_cm": { + "protocol_id": 17 + }, + "minecraft:inspect_dispenser": { + "protocol_id": 47 + }, + "minecraft:inspect_dropper": { + "protocol_id": 45 + }, + "minecraft:inspect_hopper": { + "protocol_id": 46 + }, + "minecraft:interact_with_anvil": { + "protocol_id": 71 + }, + "minecraft:interact_with_beacon": { + "protocol_id": 44 + }, + "minecraft:interact_with_blast_furnace": { + "protocol_id": 61 + }, + "minecraft:interact_with_brewingstand": { + "protocol_id": 43 + }, + "minecraft:interact_with_campfire": { + "protocol_id": 64 + }, + "minecraft:interact_with_cartography_table": { + "protocol_id": 65 + }, + "minecraft:interact_with_crafting_table": { + "protocol_id": 56 + }, + "minecraft:interact_with_furnace": { + "protocol_id": 55 + }, + "minecraft:interact_with_grindstone": { + "protocol_id": 72 + }, + "minecraft:interact_with_lectern": { + "protocol_id": 63 + }, + "minecraft:interact_with_loom": { + "protocol_id": 66 + }, + "minecraft:interact_with_smithing_table": { + "protocol_id": 74 + }, + "minecraft:interact_with_smoker": { + "protocol_id": 62 + }, + "minecraft:interact_with_stonecutter": { + "protocol_id": 67 + }, + "minecraft:jump": { + "protocol_id": 21 + }, + "minecraft:leave_game": { + "protocol_id": 0 + }, + "minecraft:minecart_one_cm": { + "protocol_id": 14 + }, + "minecraft:mob_kills": { + "protocol_id": 31 + }, + "minecraft:open_barrel": { + "protocol_id": 60 + }, + "minecraft:open_chest": { + "protocol_id": 57 + }, + "minecraft:open_enderchest": { + "protocol_id": 52 + }, + "minecraft:open_shulker_box": { + "protocol_id": 59 + }, + "minecraft:pig_one_cm": { + "protocol_id": 16 + }, + "minecraft:play_noteblock": { + "protocol_id": 48 + }, + "minecraft:play_record": { + "protocol_id": 54 + }, + "minecraft:play_time": { + "protocol_id": 1 + }, + "minecraft:player_kills": { + "protocol_id": 33 + }, + "minecraft:pot_flower": { + "protocol_id": 50 + }, + "minecraft:raid_trigger": { + "protocol_id": 69 + }, + "minecraft:raid_win": { + "protocol_id": 70 + }, + "minecraft:sleep_in_bed": { + "protocol_id": 58 + }, + "minecraft:sneak_time": { + "protocol_id": 5 + }, + "minecraft:sprint_one_cm": { + "protocol_id": 8 + }, + "minecraft:strider_one_cm": { + "protocol_id": 20 + }, + "minecraft:swim_one_cm": { + "protocol_id": 19 + }, + "minecraft:talked_to_villager": { + "protocol_id": 35 + }, + "minecraft:target_hit": { + "protocol_id": 73 + }, + "minecraft:time_since_death": { + "protocol_id": 3 + }, + "minecraft:time_since_rest": { + "protocol_id": 4 + }, + "minecraft:total_world_time": { + "protocol_id": 2 + }, + "minecraft:traded_with_villager": { + "protocol_id": 36 + }, + "minecraft:trigger_trapped_chest": { + "protocol_id": 51 + }, + "minecraft:tune_noteblock": { + "protocol_id": 49 + }, + "minecraft:use_cauldron": { + "protocol_id": 39 + }, + "minecraft:walk_on_water_one_cm": { + "protocol_id": 9 + }, + "minecraft:walk_one_cm": { + "protocol_id": 6 + }, + "minecraft:walk_under_water_one_cm": { + "protocol_id": 13 + } + }, + "protocol_id": 12 + }, + "minecraft:decorated_pot_patterns": { + "entries": { + "minecraft:angler_pottery_pattern": { + "protocol_id": 1 + }, + "minecraft:archer_pottery_pattern": { + "protocol_id": 2 + }, + "minecraft:arms_up_pottery_pattern": { + "protocol_id": 3 + }, + "minecraft:blade_pottery_pattern": { + "protocol_id": 4 + }, + "minecraft:brewer_pottery_pattern": { + "protocol_id": 5 + }, + "minecraft:burn_pottery_pattern": { + "protocol_id": 6 + }, + "minecraft:danger_pottery_pattern": { + "protocol_id": 7 + }, + "minecraft:decorated_pot_base": { + "protocol_id": 21 + }, + "minecraft:decorated_pot_side": { + "protocol_id": 0 + }, + "minecraft:explorer_pottery_pattern": { + "protocol_id": 8 + }, + "minecraft:friend_pottery_pattern": { + "protocol_id": 9 + }, + "minecraft:heart_pottery_pattern": { + "protocol_id": 10 + }, + "minecraft:heartbreak_pottery_pattern": { + "protocol_id": 11 + }, + "minecraft:howl_pottery_pattern": { + "protocol_id": 12 + }, + "minecraft:miner_pottery_pattern": { + "protocol_id": 13 + }, + "minecraft:mourner_pottery_pattern": { + "protocol_id": 14 + }, + "minecraft:plenty_pottery_pattern": { + "protocol_id": 15 + }, + "minecraft:prize_pottery_pattern": { + "protocol_id": 16 + }, + "minecraft:sheaf_pottery_pattern": { + "protocol_id": 17 + }, + "minecraft:shelter_pottery_pattern": { + "protocol_id": 18 + }, + "minecraft:skull_pottery_pattern": { + "protocol_id": 19 + }, + "minecraft:snort_pottery_pattern": { + "protocol_id": 20 + } + }, + "protocol_id": 66 + }, + "minecraft:enchantment": { + "entries": { + "minecraft:aqua_affinity": { + "protocol_id": 6 + }, + "minecraft:bane_of_arthropods": { + "protocol_id": 15 + }, + "minecraft:binding_curse": { + "protocol_id": 10 + }, + "minecraft:blast_protection": { + "protocol_id": 3 + }, + "minecraft:channeling": { + "protocol_id": 33 + }, + "minecraft:depth_strider": { + "protocol_id": 8 + }, + "minecraft:efficiency": { + "protocol_id": 20 + }, + "minecraft:feather_falling": { + "protocol_id": 2 + }, + "minecraft:fire_aspect": { + "protocol_id": 17 + }, + "minecraft:fire_protection": { + "protocol_id": 1 + }, + "minecraft:flame": { + "protocol_id": 26 + }, + "minecraft:fortune": { + "protocol_id": 23 + }, + "minecraft:frost_walker": { + "protocol_id": 9 + }, + "minecraft:impaling": { + "protocol_id": 31 + }, + "minecraft:infinity": { + "protocol_id": 27 + }, + "minecraft:knockback": { + "protocol_id": 16 + }, + "minecraft:looting": { + "protocol_id": 18 + }, + "minecraft:loyalty": { + "protocol_id": 30 + }, + "minecraft:luck_of_the_sea": { + "protocol_id": 28 + }, + "minecraft:lure": { + "protocol_id": 29 + }, + "minecraft:mending": { + "protocol_id": 37 + }, + "minecraft:multishot": { + "protocol_id": 34 + }, + "minecraft:piercing": { + "protocol_id": 36 + }, + "minecraft:power": { + "protocol_id": 24 + }, + "minecraft:projectile_protection": { + "protocol_id": 4 + }, + "minecraft:protection": { + "protocol_id": 0 + }, + "minecraft:punch": { + "protocol_id": 25 + }, + "minecraft:quick_charge": { + "protocol_id": 35 + }, + "minecraft:respiration": { + "protocol_id": 5 + }, + "minecraft:riptide": { + "protocol_id": 32 + }, + "minecraft:sharpness": { + "protocol_id": 13 + }, + "minecraft:silk_touch": { + "protocol_id": 21 + }, + "minecraft:smite": { + "protocol_id": 14 + }, + "minecraft:soul_speed": { + "protocol_id": 11 + }, + "minecraft:sweeping": { + "protocol_id": 19 + }, + "minecraft:swift_sneak": { + "protocol_id": 12 + }, + "minecraft:thorns": { + "protocol_id": 7 + }, + "minecraft:unbreaking": { + "protocol_id": 22 + }, + "minecraft:vanishing_curse": { + "protocol_id": 38 + } + }, + "protocol_id": 5 + }, + "minecraft:entity_type": { + "default": "minecraft:pig", + "entries": { + "minecraft:allay": { + "protocol_id": 0 + }, + "minecraft:area_effect_cloud": { + "protocol_id": 1 + }, + "minecraft:armor_stand": { + "protocol_id": 2 + }, + "minecraft:arrow": { + "protocol_id": 3 + }, + "minecraft:axolotl": { + "protocol_id": 4 + }, + "minecraft:bat": { + "protocol_id": 5 + }, + "minecraft:bee": { + "protocol_id": 6 + }, + "minecraft:blaze": { + "protocol_id": 7 + }, + "minecraft:block_display": { + "protocol_id": 8 + }, + "minecraft:boat": { + "protocol_id": 9 + }, + "minecraft:breeze": { + "protocol_id": 10 + }, + "minecraft:camel": { + "protocol_id": 11 + }, + "minecraft:cat": { + "protocol_id": 12 + }, + "minecraft:cave_spider": { + "protocol_id": 13 + }, + "minecraft:chest_boat": { + "protocol_id": 14 + }, + "minecraft:chest_minecart": { + "protocol_id": 15 + }, + "minecraft:chicken": { + "protocol_id": 16 + }, + "minecraft:cod": { + "protocol_id": 17 + }, + "minecraft:command_block_minecart": { + "protocol_id": 18 + }, + "minecraft:cow": { + "protocol_id": 19 + }, + "minecraft:creeper": { + "protocol_id": 20 + }, + "minecraft:dolphin": { + "protocol_id": 21 + }, + "minecraft:donkey": { + "protocol_id": 22 + }, + "minecraft:dragon_fireball": { + "protocol_id": 23 + }, + "minecraft:drowned": { + "protocol_id": 24 + }, + "minecraft:egg": { + "protocol_id": 25 + }, + "minecraft:elder_guardian": { + "protocol_id": 26 + }, + "minecraft:end_crystal": { + "protocol_id": 27 + }, + "minecraft:ender_dragon": { + "protocol_id": 28 + }, + "minecraft:ender_pearl": { + "protocol_id": 29 + }, + "minecraft:enderman": { + "protocol_id": 30 + }, + "minecraft:endermite": { + "protocol_id": 31 + }, + "minecraft:evoker": { + "protocol_id": 32 + }, + "minecraft:evoker_fangs": { + "protocol_id": 33 + }, + "minecraft:experience_bottle": { + "protocol_id": 34 + }, + "minecraft:experience_orb": { + "protocol_id": 35 + }, + "minecraft:eye_of_ender": { + "protocol_id": 36 + }, + "minecraft:falling_block": { + "protocol_id": 37 + }, + "minecraft:fireball": { + "protocol_id": 58 + }, + "minecraft:firework_rocket": { + "protocol_id": 38 + }, + "minecraft:fishing_bobber": { + "protocol_id": 125 + }, + "minecraft:fox": { + "protocol_id": 39 + }, + "minecraft:frog": { + "protocol_id": 40 + }, + "minecraft:furnace_minecart": { + "protocol_id": 41 + }, + "minecraft:ghast": { + "protocol_id": 42 + }, + "minecraft:giant": { + "protocol_id": 43 + }, + "minecraft:glow_item_frame": { + "protocol_id": 44 + }, + "minecraft:glow_squid": { + "protocol_id": 45 + }, + "minecraft:goat": { + "protocol_id": 46 + }, + "minecraft:guardian": { + "protocol_id": 47 + }, + "minecraft:hoglin": { + "protocol_id": 48 + }, + "minecraft:hopper_minecart": { + "protocol_id": 49 + }, + "minecraft:horse": { + "protocol_id": 50 + }, + "minecraft:husk": { + "protocol_id": 51 + }, + "minecraft:illusioner": { + "protocol_id": 52 + }, + "minecraft:interaction": { + "protocol_id": 53 + }, + "minecraft:iron_golem": { + "protocol_id": 54 + }, + "minecraft:item": { + "protocol_id": 55 + }, + "minecraft:item_display": { + "protocol_id": 56 + }, + "minecraft:item_frame": { + "protocol_id": 57 + }, + "minecraft:leash_knot": { + "protocol_id": 59 + }, + "minecraft:lightning_bolt": { + "protocol_id": 60 + }, + "minecraft:llama": { + "protocol_id": 61 + }, + "minecraft:llama_spit": { + "protocol_id": 62 + }, + "minecraft:magma_cube": { + "protocol_id": 63 + }, + "minecraft:marker": { + "protocol_id": 64 + }, + "minecraft:minecart": { + "protocol_id": 65 + }, + "minecraft:mooshroom": { + "protocol_id": 66 + }, + "minecraft:mule": { + "protocol_id": 67 + }, + "minecraft:ocelot": { + "protocol_id": 68 + }, + "minecraft:painting": { + "protocol_id": 69 + }, + "minecraft:panda": { + "protocol_id": 70 + }, + "minecraft:parrot": { + "protocol_id": 71 + }, + "minecraft:phantom": { + "protocol_id": 72 + }, + "minecraft:pig": { + "protocol_id": 73 + }, + "minecraft:piglin": { + "protocol_id": 74 + }, + "minecraft:piglin_brute": { + "protocol_id": 75 + }, + "minecraft:pillager": { + "protocol_id": 76 + }, + "minecraft:player": { + "protocol_id": 124 + }, + "minecraft:polar_bear": { + "protocol_id": 77 + }, + "minecraft:potion": { + "protocol_id": 78 + }, + "minecraft:pufferfish": { + "protocol_id": 79 + }, + "minecraft:rabbit": { + "protocol_id": 80 + }, + "minecraft:ravager": { + "protocol_id": 81 + }, + "minecraft:salmon": { + "protocol_id": 82 + }, + "minecraft:sheep": { + "protocol_id": 83 + }, + "minecraft:shulker": { + "protocol_id": 84 + }, + "minecraft:shulker_bullet": { + "protocol_id": 85 + }, + "minecraft:silverfish": { + "protocol_id": 86 + }, + "minecraft:skeleton": { + "protocol_id": 87 + }, + "minecraft:skeleton_horse": { + "protocol_id": 88 + }, + "minecraft:slime": { + "protocol_id": 89 + }, + "minecraft:small_fireball": { + "protocol_id": 90 + }, + "minecraft:sniffer": { + "protocol_id": 91 + }, + "minecraft:snow_golem": { + "protocol_id": 92 + }, + "minecraft:snowball": { + "protocol_id": 93 + }, + "minecraft:spawner_minecart": { + "protocol_id": 94 + }, + "minecraft:spectral_arrow": { + "protocol_id": 95 + }, + "minecraft:spider": { + "protocol_id": 96 + }, + "minecraft:squid": { + "protocol_id": 97 + }, + "minecraft:stray": { + "protocol_id": 98 + }, + "minecraft:strider": { + "protocol_id": 99 + }, + "minecraft:tadpole": { + "protocol_id": 100 + }, + "minecraft:text_display": { + "protocol_id": 101 + }, + "minecraft:tnt": { + "protocol_id": 102 + }, + "minecraft:tnt_minecart": { + "protocol_id": 103 + }, + "minecraft:trader_llama": { + "protocol_id": 104 + }, + "minecraft:trident": { + "protocol_id": 105 + }, + "minecraft:tropical_fish": { + "protocol_id": 106 + }, + "minecraft:turtle": { + "protocol_id": 107 + }, + "minecraft:vex": { + "protocol_id": 108 + }, + "minecraft:villager": { + "protocol_id": 109 + }, + "minecraft:vindicator": { + "protocol_id": 110 + }, + "minecraft:wandering_trader": { + "protocol_id": 111 + }, + "minecraft:warden": { + "protocol_id": 112 + }, + "minecraft:wind_charge": { + "protocol_id": 113 + }, + "minecraft:witch": { + "protocol_id": 114 + }, + "minecraft:wither": { + "protocol_id": 115 + }, + "minecraft:wither_skeleton": { + "protocol_id": 116 + }, + "minecraft:wither_skull": { + "protocol_id": 117 + }, + "minecraft:wolf": { + "protocol_id": 118 + }, + "minecraft:zoglin": { + "protocol_id": 119 + }, + "minecraft:zombie": { + "protocol_id": 120 + }, + "minecraft:zombie_horse": { + "protocol_id": 121 + }, + "minecraft:zombie_villager": { + "protocol_id": 122 + }, + "minecraft:zombified_piglin": { + "protocol_id": 123 + } + }, + "protocol_id": 6 + }, + "minecraft:float_provider_type": { + "entries": { + "minecraft:clamped_normal": { + "protocol_id": 2 + }, + "minecraft:constant": { + "protocol_id": 0 + }, + "minecraft:trapezoid": { + "protocol_id": 3 + }, + "minecraft:uniform": { + "protocol_id": 1 + } + }, + "protocol_id": 37 + }, + "minecraft:fluid": { + "default": "minecraft:empty", + "entries": { + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:flowing_lava": { + "protocol_id": 3 + }, + "minecraft:flowing_water": { + "protocol_id": 1 + }, + "minecraft:lava": { + "protocol_id": 4 + }, + "minecraft:water": { + "protocol_id": 2 + } + }, + "protocol_id": 2 + }, + "minecraft:frog_variant": { + "entries": { + "minecraft:cold": { + "protocol_id": 2 + }, + "minecraft:temperate": { + "protocol_id": 0 + }, + "minecraft:warm": { + "protocol_id": 1 + } + }, + "protocol_id": 63 + }, + "minecraft:game_event": { + "default": "minecraft:step", + "entries": { + "minecraft:block_activate": { + "protocol_id": 0 + }, + "minecraft:block_attach": { + "protocol_id": 1 + }, + "minecraft:block_change": { + "protocol_id": 2 + }, + "minecraft:block_close": { + "protocol_id": 3 + }, + "minecraft:block_deactivate": { + "protocol_id": 4 + }, + "minecraft:block_destroy": { + "protocol_id": 5 + }, + "minecraft:block_detach": { + "protocol_id": 6 + }, + "minecraft:block_open": { + "protocol_id": 7 + }, + "minecraft:block_place": { + "protocol_id": 8 + }, + "minecraft:container_close": { + "protocol_id": 9 + }, + "minecraft:container_open": { + "protocol_id": 10 + }, + "minecraft:drink": { + "protocol_id": 11 + }, + "minecraft:eat": { + "protocol_id": 12 + }, + "minecraft:elytra_glide": { + "protocol_id": 13 + }, + "minecraft:entity_action": { + "protocol_id": 20 + }, + "minecraft:entity_damage": { + "protocol_id": 14 + }, + "minecraft:entity_die": { + "protocol_id": 15 + }, + "minecraft:entity_dismount": { + "protocol_id": 16 + }, + "minecraft:entity_interact": { + "protocol_id": 17 + }, + "minecraft:entity_mount": { + "protocol_id": 18 + }, + "minecraft:entity_place": { + "protocol_id": 19 + }, + "minecraft:equip": { + "protocol_id": 21 + }, + "minecraft:explode": { + "protocol_id": 22 + }, + "minecraft:flap": { + "protocol_id": 23 + }, + "minecraft:fluid_pickup": { + "protocol_id": 24 + }, + "minecraft:fluid_place": { + "protocol_id": 25 + }, + "minecraft:hit_ground": { + "protocol_id": 26 + }, + "minecraft:instrument_play": { + "protocol_id": 27 + }, + "minecraft:item_interact_finish": { + "protocol_id": 28 + }, + "minecraft:item_interact_start": { + "protocol_id": 29 + }, + "minecraft:jukebox_play": { + "protocol_id": 30 + }, + "minecraft:jukebox_stop_play": { + "protocol_id": 31 + }, + "minecraft:lightning_strike": { + "protocol_id": 32 + }, + "minecraft:note_block_play": { + "protocol_id": 33 + }, + "minecraft:prime_fuse": { + "protocol_id": 34 + }, + "minecraft:projectile_land": { + "protocol_id": 35 + }, + "minecraft:projectile_shoot": { + "protocol_id": 36 + }, + "minecraft:resonate_1": { + "protocol_id": 45 + }, + "minecraft:resonate_10": { + "protocol_id": 54 + }, + "minecraft:resonate_11": { + "protocol_id": 55 + }, + "minecraft:resonate_12": { + "protocol_id": 56 + }, + "minecraft:resonate_13": { + "protocol_id": 57 + }, + "minecraft:resonate_14": { + "protocol_id": 58 + }, + "minecraft:resonate_15": { + "protocol_id": 59 + }, + "minecraft:resonate_2": { + "protocol_id": 46 + }, + "minecraft:resonate_3": { + "protocol_id": 47 + }, + "minecraft:resonate_4": { + "protocol_id": 48 + }, + "minecraft:resonate_5": { + "protocol_id": 49 + }, + "minecraft:resonate_6": { + "protocol_id": 50 + }, + "minecraft:resonate_7": { + "protocol_id": 51 + }, + "minecraft:resonate_8": { + "protocol_id": 52 + }, + "minecraft:resonate_9": { + "protocol_id": 53 + }, + "minecraft:sculk_sensor_tendrils_clicking": { + "protocol_id": 37 + }, + "minecraft:shear": { + "protocol_id": 38 + }, + "minecraft:shriek": { + "protocol_id": 39 + }, + "minecraft:splash": { + "protocol_id": 40 + }, + "minecraft:step": { + "protocol_id": 41 + }, + "minecraft:swim": { + "protocol_id": 42 + }, + "minecraft:teleport": { + "protocol_id": 43 + }, + "minecraft:unequip": { + "protocol_id": 44 + } + }, + "protocol_id": 0 + }, + "minecraft:height_provider_type": { + "entries": { + "minecraft:biased_to_bottom": { + "protocol_id": 2 + }, + "minecraft:constant": { + "protocol_id": 0 + }, + "minecraft:trapezoid": { + "protocol_id": 4 + }, + "minecraft:uniform": { + "protocol_id": 1 + }, + "minecraft:very_biased_to_bottom": { + "protocol_id": 3 + }, + "minecraft:weighted_list": { + "protocol_id": 5 + } + }, + "protocol_id": 39 + }, + "minecraft:instrument": { + "entries": { + "minecraft:admire_goat_horn": { + "protocol_id": 4 + }, + "minecraft:call_goat_horn": { + "protocol_id": 5 + }, + "minecraft:dream_goat_horn": { + "protocol_id": 7 + }, + "minecraft:feel_goat_horn": { + "protocol_id": 3 + }, + "minecraft:ponder_goat_horn": { + "protocol_id": 0 + }, + "minecraft:seek_goat_horn": { + "protocol_id": 2 + }, + "minecraft:sing_goat_horn": { + "protocol_id": 1 + }, + "minecraft:yearn_goat_horn": { + "protocol_id": 6 + } + }, + "protocol_id": 65 + }, + "minecraft:int_provider_type": { + "entries": { + "minecraft:biased_to_bottom": { + "protocol_id": 2 + }, + "minecraft:clamped": { + "protocol_id": 3 + }, + "minecraft:clamped_normal": { + "protocol_id": 5 + }, + "minecraft:constant": { + "protocol_id": 0 + }, + "minecraft:uniform": { + "protocol_id": 1 + }, + "minecraft:weighted_list": { + "protocol_id": 4 + } + }, + "protocol_id": 38 + }, + "minecraft:item": { + "default": "minecraft:air", + "entries": { + "minecraft:acacia_boat": { + "protocol_id": 781 + }, + "minecraft:acacia_button": { + "protocol_id": 687 + }, + "minecraft:acacia_chest_boat": { + "protocol_id": 782 + }, + "minecraft:acacia_door": { + "protocol_id": 714 + }, + "minecraft:acacia_fence": { + "protocol_id": 314 + }, + "minecraft:acacia_fence_gate": { + "protocol_id": 753 + }, + "minecraft:acacia_hanging_sign": { + "protocol_id": 898 + }, + "minecraft:acacia_leaves": { + "protocol_id": 179 + }, + "minecraft:acacia_log": { + "protocol_id": 135 + }, + "minecraft:acacia_planks": { + "protocol_id": 40 + }, + "minecraft:acacia_pressure_plate": { + "protocol_id": 702 + }, + "minecraft:acacia_sapling": { + "protocol_id": 52 + }, + "minecraft:acacia_sign": { + "protocol_id": 887 + }, + "minecraft:acacia_slab": { + "protocol_id": 255 + }, + "minecraft:acacia_stairs": { + "protocol_id": 386 + }, + "minecraft:acacia_trapdoor": { + "protocol_id": 734 + }, + "minecraft:acacia_wood": { + "protocol_id": 169 + }, + "minecraft:activator_rail": { + "protocol_id": 763 + }, + "minecraft:air": { + "protocol_id": 0 + }, + "minecraft:allay_spawn_egg": { + "protocol_id": 1005 + }, + "minecraft:allium": { + "protocol_id": 220 + }, + "minecraft:amethyst_block": { + "protocol_id": 85 + }, + "minecraft:amethyst_cluster": { + "protocol_id": 1249 + }, + "minecraft:amethyst_shard": { + "protocol_id": 805 + }, + "minecraft:ancient_debris": { + "protocol_id": 80 + }, + "minecraft:andesite": { + "protocol_id": 6 + }, + "minecraft:andesite_slab": { + "protocol_id": 647 + }, + "minecraft:andesite_stairs": { + "protocol_id": 630 + }, + "minecraft:andesite_wall": { + "protocol_id": 406 + }, + "minecraft:angler_pottery_sherd": { + "protocol_id": 1274 + }, + "minecraft:anvil": { + "protocol_id": 418 + }, + "minecraft:apple": { + "protocol_id": 796 + }, + "minecraft:archer_pottery_sherd": { + "protocol_id": 1275 + }, + "minecraft:armor_stand": { + "protocol_id": 1116 + }, + "minecraft:arms_up_pottery_sherd": { + "protocol_id": 1276 + }, + "minecraft:arrow": { + "protocol_id": 798 + }, + "minecraft:axolotl_bucket": { + "protocol_id": 916 + }, + "minecraft:axolotl_spawn_egg": { + "protocol_id": 1006 + }, + "minecraft:azalea": { + "protocol_id": 196 + }, + "minecraft:azalea_leaves": { + "protocol_id": 183 + }, + "minecraft:azure_bluet": { + "protocol_id": 221 + }, + "minecraft:baked_potato": { + "protocol_id": 1092 + }, + "minecraft:bamboo": { + "protocol_id": 250 + }, + "minecraft:bamboo_block": { + "protocol_id": 143 + }, + "minecraft:bamboo_button": { + "protocol_id": 691 + }, + "minecraft:bamboo_chest_raft": { + "protocol_id": 790 + }, + "minecraft:bamboo_door": { + "protocol_id": 718 + }, + "minecraft:bamboo_fence": { + "protocol_id": 318 + }, + "minecraft:bamboo_fence_gate": { + "protocol_id": 757 + }, + "minecraft:bamboo_hanging_sign": { + "protocol_id": 902 + }, + "minecraft:bamboo_mosaic": { + "protocol_id": 47 + }, + "minecraft:bamboo_mosaic_slab": { + "protocol_id": 260 + }, + "minecraft:bamboo_mosaic_stairs": { + "protocol_id": 391 + }, + "minecraft:bamboo_planks": { + "protocol_id": 44 + }, + "minecraft:bamboo_pressure_plate": { + "protocol_id": 706 + }, + "minecraft:bamboo_raft": { + "protocol_id": 789 + }, + "minecraft:bamboo_sign": { + "protocol_id": 891 + }, + "minecraft:bamboo_slab": { + "protocol_id": 259 + }, + "minecraft:bamboo_stairs": { + "protocol_id": 390 + }, + "minecraft:bamboo_trapdoor": { + "protocol_id": 738 + }, + "minecraft:barrel": { + "protocol_id": 1193 + }, + "minecraft:barrier": { + "protocol_id": 442 + }, + "minecraft:basalt": { + "protocol_id": 327 + }, + "minecraft:bat_spawn_egg": { + "protocol_id": 1007 + }, + "minecraft:beacon": { + "protocol_id": 395 + }, + "minecraft:bedrock": { + "protocol_id": 56 + }, + "minecraft:bee_nest": { + "protocol_id": 1210 + }, + "minecraft:bee_spawn_egg": { + "protocol_id": 1008 + }, + "minecraft:beef": { + "protocol_id": 985 + }, + "minecraft:beehive": { + "protocol_id": 1211 + }, + "minecraft:beetroot": { + "protocol_id": 1147 + }, + "minecraft:beetroot_seeds": { + "protocol_id": 1148 + }, + "minecraft:beetroot_soup": { + "protocol_id": 1149 + }, + "minecraft:bell": { + "protocol_id": 1201 + }, + "minecraft:big_dripleaf": { + "protocol_id": 248 + }, + "minecraft:birch_boat": { + "protocol_id": 777 + }, + "minecraft:birch_button": { + "protocol_id": 685 + }, + "minecraft:birch_chest_boat": { + "protocol_id": 778 + }, + "minecraft:birch_door": { + "protocol_id": 712 + }, + "minecraft:birch_fence": { + "protocol_id": 312 + }, + "minecraft:birch_fence_gate": { + "protocol_id": 751 + }, + "minecraft:birch_hanging_sign": { + "protocol_id": 896 + }, + "minecraft:birch_leaves": { + "protocol_id": 177 + }, + "minecraft:birch_log": { + "protocol_id": 133 + }, + "minecraft:birch_planks": { + "protocol_id": 38 + }, + "minecraft:birch_pressure_plate": { + "protocol_id": 700 + }, + "minecraft:birch_sapling": { + "protocol_id": 50 + }, + "minecraft:birch_sign": { + "protocol_id": 885 + }, + "minecraft:birch_slab": { + "protocol_id": 253 + }, + "minecraft:birch_stairs": { + "protocol_id": 384 + }, + "minecraft:birch_trapdoor": { + "protocol_id": 732 + }, + "minecraft:birch_wood": { + "protocol_id": 167 + }, + "minecraft:black_banner": { + "protocol_id": 1141 + }, + "minecraft:black_bed": { + "protocol_id": 976 + }, + "minecraft:black_candle": { + "protocol_id": 1245 + }, + "minecraft:black_carpet": { + "protocol_id": 460 + }, + "minecraft:black_concrete": { + "protocol_id": 569 + }, + "minecraft:black_concrete_powder": { + "protocol_id": 585 + }, + "minecraft:black_dye": { + "protocol_id": 956 + }, + "minecraft:black_glazed_terracotta": { + "protocol_id": 553 + }, + "minecraft:black_shulker_box": { + "protocol_id": 537 + }, + "minecraft:black_stained_glass": { + "protocol_id": 485 + }, + "minecraft:black_stained_glass_pane": { + "protocol_id": 501 + }, + "minecraft:black_terracotta": { + "protocol_id": 441 + }, + "minecraft:black_wool": { + "protocol_id": 216 + }, + "minecraft:blackstone": { + "protocol_id": 1216 + }, + "minecraft:blackstone_slab": { + "protocol_id": 1217 + }, + "minecraft:blackstone_stairs": { + "protocol_id": 1218 + }, + "minecraft:blackstone_wall": { + "protocol_id": 411 + }, + "minecraft:blade_pottery_sherd": { + "protocol_id": 1277 + }, + "minecraft:blast_furnace": { + "protocol_id": 1195 + }, + "minecraft:blaze_powder": { + "protocol_id": 999 + }, + "minecraft:blaze_rod": { + "protocol_id": 991 + }, + "minecraft:blaze_spawn_egg": { + "protocol_id": 1009 + }, + "minecraft:blue_banner": { + "protocol_id": 1137 + }, + "minecraft:blue_bed": { + "protocol_id": 972 + }, + "minecraft:blue_candle": { + "protocol_id": 1241 + }, + "minecraft:blue_carpet": { + "protocol_id": 456 + }, + "minecraft:blue_concrete": { + "protocol_id": 565 + }, + "minecraft:blue_concrete_powder": { + "protocol_id": 581 + }, + "minecraft:blue_dye": { + "protocol_id": 952 + }, + "minecraft:blue_glazed_terracotta": { + "protocol_id": 549 + }, + "minecraft:blue_ice": { + "protocol_id": 618 + }, + "minecraft:blue_orchid": { + "protocol_id": 219 + }, + "minecraft:blue_shulker_box": { + "protocol_id": 533 + }, + "minecraft:blue_stained_glass": { + "protocol_id": 481 + }, + "minecraft:blue_stained_glass_pane": { + "protocol_id": 497 + }, + "minecraft:blue_terracotta": { + "protocol_id": 437 + }, + "minecraft:blue_wool": { + "protocol_id": 212 + }, + "minecraft:bone": { + "protocol_id": 958 + }, + "minecraft:bone_block": { + "protocol_id": 519 + }, + "minecraft:bone_meal": { + "protocol_id": 957 + }, + "minecraft:book": { + "protocol_id": 922 + }, + "minecraft:bookshelf": { + "protocol_id": 285 + }, + "minecraft:bow": { + "protocol_id": 797 + }, + "minecraft:bowl": { + "protocol_id": 845 + }, + "minecraft:brain_coral": { + "protocol_id": 599 + }, + "minecraft:brain_coral_block": { + "protocol_id": 594 + }, + "minecraft:brain_coral_fan": { + "protocol_id": 609 + }, + "minecraft:bread": { + "protocol_id": 852 + }, + "minecraft:breeze_spawn_egg": { + "protocol_id": 1010 + }, + "minecraft:brewer_pottery_sherd": { + "protocol_id": 1278 + }, + "minecraft:brewing_stand": { + "protocol_id": 1001 + }, + "minecraft:brick": { + "protocol_id": 918 + }, + "minecraft:brick_slab": { + "protocol_id": 269 + }, + "minecraft:brick_stairs": { + "protocol_id": 360 + }, + "minecraft:brick_wall": { + "protocol_id": 398 + }, + "minecraft:bricks": { + "protocol_id": 284 + }, + "minecraft:brown_banner": { + "protocol_id": 1138 + }, + "minecraft:brown_bed": { + "protocol_id": 973 + }, + "minecraft:brown_candle": { + "protocol_id": 1242 + }, + "minecraft:brown_carpet": { + "protocol_id": 457 + }, + "minecraft:brown_concrete": { + "protocol_id": 566 + }, + "minecraft:brown_concrete_powder": { + "protocol_id": 582 + }, + "minecraft:brown_dye": { + "protocol_id": 953 + }, + "minecraft:brown_glazed_terracotta": { + "protocol_id": 550 + }, + "minecraft:brown_mushroom": { + "protocol_id": 233 + }, + "minecraft:brown_mushroom_block": { + "protocol_id": 351 + }, + "minecraft:brown_shulker_box": { + "protocol_id": 534 + }, + "minecraft:brown_stained_glass": { + "protocol_id": 482 + }, + "minecraft:brown_stained_glass_pane": { + "protocol_id": 498 + }, + "minecraft:brown_terracotta": { + "protocol_id": 438 + }, + "minecraft:brown_wool": { + "protocol_id": 213 + }, + "minecraft:brush": { + "protocol_id": 1256 + }, + "minecraft:bubble_coral": { + "protocol_id": 600 + }, + "minecraft:bubble_coral_block": { + "protocol_id": 595 + }, + "minecraft:bubble_coral_fan": { + "protocol_id": 610 + }, + "minecraft:bucket": { + "protocol_id": 905 + }, + "minecraft:budding_amethyst": { + "protocol_id": 86 + }, + "minecraft:bundle": { + "protocol_id": 927 + }, + "minecraft:burn_pottery_sherd": { + "protocol_id": 1279 + }, + "minecraft:cactus": { + "protocol_id": 307 + }, + "minecraft:cake": { + "protocol_id": 960 + }, + "minecraft:calcite": { + "protocol_id": 11 + }, + "minecraft:calibrated_sculk_sensor": { + "protocol_id": 675 + }, + "minecraft:camel_spawn_egg": { + "protocol_id": 1012 + }, + "minecraft:campfire": { + "protocol_id": 1206 + }, + "minecraft:candle": { + "protocol_id": 1229 + }, + "minecraft:carrot": { + "protocol_id": 1090 + }, + "minecraft:carrot_on_a_stick": { + "protocol_id": 770 + }, + "minecraft:cartography_table": { + "protocol_id": 1196 + }, + "minecraft:carved_pumpkin": { + "protocol_id": 322 + }, + "minecraft:cat_spawn_egg": { + "protocol_id": 1011 + }, + "minecraft:cauldron": { + "protocol_id": 1002 + }, + "minecraft:cave_spider_spawn_egg": { + "protocol_id": 1013 + }, + "minecraft:chain": { + "protocol_id": 355 + }, + "minecraft:chain_command_block": { + "protocol_id": 514 + }, + "minecraft:chainmail_boots": { + "protocol_id": 860 + }, + "minecraft:chainmail_chestplate": { + "protocol_id": 858 + }, + "minecraft:chainmail_helmet": { + "protocol_id": 857 + }, + "minecraft:chainmail_leggings": { + "protocol_id": 859 + }, + "minecraft:charcoal": { + "protocol_id": 800 + }, + "minecraft:cherry_boat": { + "protocol_id": 783 + }, + "minecraft:cherry_button": { + "protocol_id": 688 + }, + "minecraft:cherry_chest_boat": { + "protocol_id": 784 + }, + "minecraft:cherry_door": { + "protocol_id": 715 + }, + "minecraft:cherry_fence": { + "protocol_id": 315 + }, + "minecraft:cherry_fence_gate": { + "protocol_id": 754 + }, + "minecraft:cherry_hanging_sign": { + "protocol_id": 899 + }, + "minecraft:cherry_leaves": { + "protocol_id": 180 + }, + "minecraft:cherry_log": { + "protocol_id": 136 + }, + "minecraft:cherry_planks": { + "protocol_id": 41 + }, + "minecraft:cherry_pressure_plate": { + "protocol_id": 703 + }, + "minecraft:cherry_sapling": { + "protocol_id": 53 + }, + "minecraft:cherry_sign": { + "protocol_id": 888 + }, + "minecraft:cherry_slab": { + "protocol_id": 256 + }, + "minecraft:cherry_stairs": { + "protocol_id": 387 + }, + "minecraft:cherry_trapdoor": { + "protocol_id": 735 + }, + "minecraft:cherry_wood": { + "protocol_id": 170 + }, + "minecraft:chest": { + "protocol_id": 298 + }, + "minecraft:chest_minecart": { + "protocol_id": 766 + }, + "minecraft:chicken": { + "protocol_id": 987 + }, + "minecraft:chicken_spawn_egg": { + "protocol_id": 1014 + }, + "minecraft:chipped_anvil": { + "protocol_id": 419 + }, + "minecraft:chiseled_bookshelf": { + "protocol_id": 286 + }, + "minecraft:chiseled_copper": { + "protocol_id": 95 + }, + "minecraft:chiseled_deepslate": { + "protocol_id": 349 + }, + "minecraft:chiseled_nether_bricks": { + "protocol_id": 367 + }, + "minecraft:chiseled_polished_blackstone": { + "protocol_id": 1223 + }, + "minecraft:chiseled_quartz_block": { + "protocol_id": 421 + }, + "minecraft:chiseled_red_sandstone": { + "protocol_id": 510 + }, + "minecraft:chiseled_sandstone": { + "protocol_id": 191 + }, + "minecraft:chiseled_stone_bricks": { + "protocol_id": 342 + }, + "minecraft:chiseled_tuff": { + "protocol_id": 16 + }, + "minecraft:chiseled_tuff_bricks": { + "protocol_id": 25 + }, + "minecraft:chorus_flower": { + "protocol_id": 293 + }, + "minecraft:chorus_fruit": { + "protocol_id": 1143 + }, + "minecraft:chorus_plant": { + "protocol_id": 292 + }, + "minecraft:clay": { + "protocol_id": 308 + }, + "minecraft:clay_ball": { + "protocol_id": 919 + }, + "minecraft:clock": { + "protocol_id": 929 + }, + "minecraft:coal": { + "protocol_id": 799 + }, + "minecraft:coal_block": { + "protocol_id": 81 + }, + "minecraft:coal_ore": { + "protocol_id": 62 + }, + "minecraft:coarse_dirt": { + "protocol_id": 29 + }, + "minecraft:coast_armor_trim_smithing_template": { + "protocol_id": 1260 + }, + "minecraft:cobbled_deepslate": { + "protocol_id": 9 + }, + "minecraft:cobbled_deepslate_slab": { + "protocol_id": 651 + }, + "minecraft:cobbled_deepslate_stairs": { + "protocol_id": 634 + }, + "minecraft:cobbled_deepslate_wall": { + "protocol_id": 414 + }, + "minecraft:cobblestone": { + "protocol_id": 35 + }, + "minecraft:cobblestone_slab": { + "protocol_id": 268 + }, + "minecraft:cobblestone_stairs": { + "protocol_id": 303 + }, + "minecraft:cobblestone_wall": { + "protocol_id": 396 + }, + "minecraft:cobweb": { + "protocol_id": 193 + }, + "minecraft:cocoa_beans": { + "protocol_id": 940 + }, + "minecraft:cod": { + "protocol_id": 932 + }, + "minecraft:cod_bucket": { + "protocol_id": 914 + }, + "minecraft:cod_spawn_egg": { + "protocol_id": 1015 + }, + "minecraft:command_block": { + "protocol_id": 394 + }, + "minecraft:command_block_minecart": { + "protocol_id": 1123 + }, + "minecraft:comparator": { + "protocol_id": 660 + }, + "minecraft:compass": { + "protocol_id": 925 + }, + "minecraft:composter": { + "protocol_id": 1192 + }, + "minecraft:conduit": { + "protocol_id": 619 + }, + "minecraft:cooked_beef": { + "protocol_id": 986 + }, + "minecraft:cooked_chicken": { + "protocol_id": 988 + }, + "minecraft:cooked_cod": { + "protocol_id": 936 + }, + "minecraft:cooked_mutton": { + "protocol_id": 1125 + }, + "minecraft:cooked_porkchop": { + "protocol_id": 879 + }, + "minecraft:cooked_rabbit": { + "protocol_id": 1112 + }, + "minecraft:cooked_salmon": { + "protocol_id": 937 + }, + "minecraft:cookie": { + "protocol_id": 977 + }, + "minecraft:copper_block": { + "protocol_id": 88 + }, + "minecraft:copper_bulb": { + "protocol_id": 1302 + }, + "minecraft:copper_door": { + "protocol_id": 721 + }, + "minecraft:copper_grate": { + "protocol_id": 1294 + }, + "minecraft:copper_ingot": { + "protocol_id": 809 + }, + "minecraft:copper_ore": { + "protocol_id": 66 + }, + "minecraft:copper_trapdoor": { + "protocol_id": 741 + }, + "minecraft:cornflower": { + "protocol_id": 227 + }, + "minecraft:cow_spawn_egg": { + "protocol_id": 1016 + }, + "minecraft:cracked_deepslate_bricks": { + "protocol_id": 346 + }, + "minecraft:cracked_deepslate_tiles": { + "protocol_id": 348 + }, + "minecraft:cracked_nether_bricks": { + "protocol_id": 366 + }, + "minecraft:cracked_polished_blackstone_bricks": { + "protocol_id": 1227 + }, + "minecraft:cracked_stone_bricks": { + "protocol_id": 341 + }, + "minecraft:crafter": { + "protocol_id": 978 + }, + "minecraft:crafting_table": { + "protocol_id": 299 + }, + "minecraft:creeper_banner_pattern": { + "protocol_id": 1186 + }, + "minecraft:creeper_head": { + "protocol_id": 1100 + }, + "minecraft:creeper_spawn_egg": { + "protocol_id": 1017 + }, + "minecraft:crimson_button": { + "protocol_id": 692 + }, + "minecraft:crimson_door": { + "protocol_id": 719 + }, + "minecraft:crimson_fence": { + "protocol_id": 319 + }, + "minecraft:crimson_fence_gate": { + "protocol_id": 758 + }, + "minecraft:crimson_fungus": { + "protocol_id": 235 + }, + "minecraft:crimson_hanging_sign": { + "protocol_id": 903 + }, + "minecraft:crimson_hyphae": { + "protocol_id": 173 + }, + "minecraft:crimson_nylium": { + "protocol_id": 33 + }, + "minecraft:crimson_planks": { + "protocol_id": 45 + }, + "minecraft:crimson_pressure_plate": { + "protocol_id": 707 + }, + "minecraft:crimson_roots": { + "protocol_id": 237 + }, + "minecraft:crimson_sign": { + "protocol_id": 892 + }, + "minecraft:crimson_slab": { + "protocol_id": 261 + }, + "minecraft:crimson_stairs": { + "protocol_id": 392 + }, + "minecraft:crimson_stem": { + "protocol_id": 141 + }, + "minecraft:crimson_trapdoor": { + "protocol_id": 739 + }, + "minecraft:crossbow": { + "protocol_id": 1182 + }, + "minecraft:crying_obsidian": { + "protocol_id": 1215 + }, + "minecraft:cut_copper": { + "protocol_id": 99 + }, + "minecraft:cut_copper_slab": { + "protocol_id": 107 + }, + "minecraft:cut_copper_stairs": { + "protocol_id": 103 + }, + "minecraft:cut_red_sandstone": { + "protocol_id": 511 + }, + "minecraft:cut_red_sandstone_slab": { + "protocol_id": 275 + }, + "minecraft:cut_sandstone": { + "protocol_id": 192 + }, + "minecraft:cut_sandstone_slab": { + "protocol_id": 266 + }, + "minecraft:cyan_banner": { + "protocol_id": 1135 + }, + "minecraft:cyan_bed": { + "protocol_id": 970 + }, + "minecraft:cyan_candle": { + "protocol_id": 1239 + }, + "minecraft:cyan_carpet": { + "protocol_id": 454 + }, + "minecraft:cyan_concrete": { + "protocol_id": 563 + }, + "minecraft:cyan_concrete_powder": { + "protocol_id": 579 + }, + "minecraft:cyan_dye": { + "protocol_id": 950 + }, + "minecraft:cyan_glazed_terracotta": { + "protocol_id": 547 + }, + "minecraft:cyan_shulker_box": { + "protocol_id": 531 + }, + "minecraft:cyan_stained_glass": { + "protocol_id": 479 + }, + "minecraft:cyan_stained_glass_pane": { + "protocol_id": 495 + }, + "minecraft:cyan_terracotta": { + "protocol_id": 435 + }, + "minecraft:cyan_wool": { + "protocol_id": 210 + }, + "minecraft:damaged_anvil": { + "protocol_id": 420 + }, + "minecraft:dandelion": { + "protocol_id": 217 + }, + "minecraft:danger_pottery_sherd": { + "protocol_id": 1280 + }, + "minecraft:dark_oak_boat": { + "protocol_id": 785 + }, + "minecraft:dark_oak_button": { + "protocol_id": 689 + }, + "minecraft:dark_oak_chest_boat": { + "protocol_id": 786 + }, + "minecraft:dark_oak_door": { + "protocol_id": 716 + }, + "minecraft:dark_oak_fence": { + "protocol_id": 316 + }, + "minecraft:dark_oak_fence_gate": { + "protocol_id": 755 + }, + "minecraft:dark_oak_hanging_sign": { + "protocol_id": 900 + }, + "minecraft:dark_oak_leaves": { + "protocol_id": 181 + }, + "minecraft:dark_oak_log": { + "protocol_id": 137 + }, + "minecraft:dark_oak_planks": { + "protocol_id": 42 + }, + "minecraft:dark_oak_pressure_plate": { + "protocol_id": 704 + }, + "minecraft:dark_oak_sapling": { + "protocol_id": 54 + }, + "minecraft:dark_oak_sign": { + "protocol_id": 889 + }, + "minecraft:dark_oak_slab": { + "protocol_id": 257 + }, + "minecraft:dark_oak_stairs": { + "protocol_id": 388 + }, + "minecraft:dark_oak_trapdoor": { + "protocol_id": 736 + }, + "minecraft:dark_oak_wood": { + "protocol_id": 171 + }, + "minecraft:dark_prismarine": { + "protocol_id": 504 + }, + "minecraft:dark_prismarine_slab": { + "protocol_id": 279 + }, + "minecraft:dark_prismarine_stairs": { + "protocol_id": 507 + }, + "minecraft:daylight_detector": { + "protocol_id": 673 + }, + "minecraft:dead_brain_coral": { + "protocol_id": 603 + }, + "minecraft:dead_brain_coral_block": { + "protocol_id": 589 + }, + "minecraft:dead_brain_coral_fan": { + "protocol_id": 614 + }, + "minecraft:dead_bubble_coral": { + "protocol_id": 604 + }, + "minecraft:dead_bubble_coral_block": { + "protocol_id": 590 + }, + "minecraft:dead_bubble_coral_fan": { + "protocol_id": 615 + }, + "minecraft:dead_bush": { + "protocol_id": 198 + }, + "minecraft:dead_fire_coral": { + "protocol_id": 605 + }, + "minecraft:dead_fire_coral_block": { + "protocol_id": 591 + }, + "minecraft:dead_fire_coral_fan": { + "protocol_id": 616 + }, + "minecraft:dead_horn_coral": { + "protocol_id": 606 + }, + "minecraft:dead_horn_coral_block": { + "protocol_id": 592 + }, + "minecraft:dead_horn_coral_fan": { + "protocol_id": 617 + }, + "minecraft:dead_tube_coral": { + "protocol_id": 607 + }, + "minecraft:dead_tube_coral_block": { + "protocol_id": 588 + }, + "minecraft:dead_tube_coral_fan": { + "protocol_id": 613 + }, + "minecraft:debug_stick": { + "protocol_id": 1160 + }, + "minecraft:decorated_pot": { + "protocol_id": 287 + }, + "minecraft:deepslate": { + "protocol_id": 8 + }, + "minecraft:deepslate_brick_slab": { + "protocol_id": 653 + }, + "minecraft:deepslate_brick_stairs": { + "protocol_id": 636 + }, + "minecraft:deepslate_brick_wall": { + "protocol_id": 416 + }, + "minecraft:deepslate_bricks": { + "protocol_id": 345 + }, + "minecraft:deepslate_coal_ore": { + "protocol_id": 63 + }, + "minecraft:deepslate_copper_ore": { + "protocol_id": 67 + }, + "minecraft:deepslate_diamond_ore": { + "protocol_id": 77 + }, + "minecraft:deepslate_emerald_ore": { + "protocol_id": 73 + }, + "minecraft:deepslate_gold_ore": { + "protocol_id": 69 + }, + "minecraft:deepslate_iron_ore": { + "protocol_id": 65 + }, + "minecraft:deepslate_lapis_ore": { + "protocol_id": 75 + }, + "minecraft:deepslate_redstone_ore": { + "protocol_id": 71 + }, + "minecraft:deepslate_tile_slab": { + "protocol_id": 654 + }, + "minecraft:deepslate_tile_stairs": { + "protocol_id": 637 + }, + "minecraft:deepslate_tile_wall": { + "protocol_id": 417 + }, + "minecraft:deepslate_tiles": { + "protocol_id": 347 + }, + "minecraft:detector_rail": { + "protocol_id": 761 + }, + "minecraft:diamond": { + "protocol_id": 801 + }, + "minecraft:diamond_axe": { + "protocol_id": 837 + }, + "minecraft:diamond_block": { + "protocol_id": 90 + }, + "minecraft:diamond_boots": { + "protocol_id": 868 + }, + "minecraft:diamond_chestplate": { + "protocol_id": 866 + }, + "minecraft:diamond_helmet": { + "protocol_id": 865 + }, + "minecraft:diamond_hoe": { + "protocol_id": 838 + }, + "minecraft:diamond_horse_armor": { + "protocol_id": 1119 + }, + "minecraft:diamond_leggings": { + "protocol_id": 867 + }, + "minecraft:diamond_ore": { + "protocol_id": 76 + }, + "minecraft:diamond_pickaxe": { + "protocol_id": 836 + }, + "minecraft:diamond_shovel": { + "protocol_id": 835 + }, + "minecraft:diamond_sword": { + "protocol_id": 834 + }, + "minecraft:diorite": { + "protocol_id": 4 + }, + "minecraft:diorite_slab": { + "protocol_id": 650 + }, + "minecraft:diorite_stairs": { + "protocol_id": 633 + }, + "minecraft:diorite_wall": { + "protocol_id": 410 + }, + "minecraft:dirt": { + "protocol_id": 28 + }, + "minecraft:dirt_path": { + "protocol_id": 463 + }, + "minecraft:disc_fragment_5": { + "protocol_id": 1177 + }, + "minecraft:dispenser": { + "protocol_id": 667 + }, + "minecraft:dolphin_spawn_egg": { + "protocol_id": 1018 + }, + "minecraft:donkey_spawn_egg": { + "protocol_id": 1019 + }, + "minecraft:dragon_breath": { + "protocol_id": 1150 + }, + "minecraft:dragon_egg": { + "protocol_id": 378 + }, + "minecraft:dragon_head": { + "protocol_id": 1101 + }, + "minecraft:dried_kelp": { + "protocol_id": 982 + }, + "minecraft:dried_kelp_block": { + "protocol_id": 920 + }, + "minecraft:dripstone_block": { + "protocol_id": 26 + }, + "minecraft:dropper": { + "protocol_id": 668 + }, + "minecraft:drowned_spawn_egg": { + "protocol_id": 1020 + }, + "minecraft:dune_armor_trim_smithing_template": { + "protocol_id": 1259 + }, + "minecraft:echo_shard": { + "protocol_id": 1255 + }, + "minecraft:egg": { + "protocol_id": 924 + }, + "minecraft:elder_guardian_spawn_egg": { + "protocol_id": 1021 + }, + "minecraft:elytra": { + "protocol_id": 772 + }, + "minecraft:emerald": { + "protocol_id": 802 + }, + "minecraft:emerald_block": { + "protocol_id": 381 + }, + "minecraft:emerald_ore": { + "protocol_id": 72 + }, + "minecraft:enchanted_book": { + "protocol_id": 1107 + }, + "minecraft:enchanted_golden_apple": { + "protocol_id": 882 + }, + "minecraft:enchanting_table": { + "protocol_id": 374 + }, + "minecraft:end_crystal": { + "protocol_id": 1142 + }, + "minecraft:end_portal_frame": { + "protocol_id": 375 + }, + "minecraft:end_rod": { + "protocol_id": 291 + }, + "minecraft:end_stone": { + "protocol_id": 376 + }, + "minecraft:end_stone_brick_slab": { + "protocol_id": 643 + }, + "minecraft:end_stone_brick_stairs": { + "protocol_id": 625 + }, + "minecraft:end_stone_brick_wall": { + "protocol_id": 409 + }, + "minecraft:end_stone_bricks": { + "protocol_id": 377 + }, + "minecraft:ender_chest": { + "protocol_id": 380 + }, + "minecraft:ender_dragon_spawn_egg": { + "protocol_id": 1022 + }, + "minecraft:ender_eye": { + "protocol_id": 1003 + }, + "minecraft:ender_pearl": { + "protocol_id": 990 + }, + "minecraft:enderman_spawn_egg": { + "protocol_id": 1023 + }, + "minecraft:endermite_spawn_egg": { + "protocol_id": 1024 + }, + "minecraft:evoker_spawn_egg": { + "protocol_id": 1025 + }, + "minecraft:experience_bottle": { + "protocol_id": 1083 + }, + "minecraft:explorer_pottery_sherd": { + "protocol_id": 1281 + }, + "minecraft:exposed_chiseled_copper": { + "protocol_id": 96 + }, + "minecraft:exposed_copper": { + "protocol_id": 92 + }, + "minecraft:exposed_copper_bulb": { + "protocol_id": 1303 + }, + "minecraft:exposed_copper_door": { + "protocol_id": 722 + }, + "minecraft:exposed_copper_grate": { + "protocol_id": 1295 + }, + "minecraft:exposed_copper_trapdoor": { + "protocol_id": 742 + }, + "minecraft:exposed_cut_copper": { + "protocol_id": 100 + }, + "minecraft:exposed_cut_copper_slab": { + "protocol_id": 108 + }, + "minecraft:exposed_cut_copper_stairs": { + "protocol_id": 104 + }, + "minecraft:eye_armor_trim_smithing_template": { + "protocol_id": 1263 + }, + "minecraft:farmland": { + "protocol_id": 300 + }, + "minecraft:feather": { + "protocol_id": 848 + }, + "minecraft:fermented_spider_eye": { + "protocol_id": 998 + }, + "minecraft:fern": { + "protocol_id": 195 + }, + "minecraft:filled_map": { + "protocol_id": 979 + }, + "minecraft:fire_charge": { + "protocol_id": 1084 + }, + "minecraft:fire_coral": { + "protocol_id": 601 + }, + "minecraft:fire_coral_block": { + "protocol_id": 596 + }, + "minecraft:fire_coral_fan": { + "protocol_id": 611 + }, + "minecraft:firework_rocket": { + "protocol_id": 1105 + }, + "minecraft:firework_star": { + "protocol_id": 1106 + }, + "minecraft:fishing_rod": { + "protocol_id": 928 + }, + "minecraft:fletching_table": { + "protocol_id": 1197 + }, + "minecraft:flint": { + "protocol_id": 877 + }, + "minecraft:flint_and_steel": { + "protocol_id": 795 + }, + "minecraft:flower_banner_pattern": { + "protocol_id": 1185 + }, + "minecraft:flower_pot": { + "protocol_id": 1089 + }, + "minecraft:flowering_azalea": { + "protocol_id": 197 + }, + "minecraft:flowering_azalea_leaves": { + "protocol_id": 184 + }, + "minecraft:fox_spawn_egg": { + "protocol_id": 1026 + }, + "minecraft:friend_pottery_sherd": { + "protocol_id": 1282 + }, + "minecraft:frog_spawn_egg": { + "protocol_id": 1027 + }, + "minecraft:frogspawn": { + "protocol_id": 1254 + }, + "minecraft:furnace": { + "protocol_id": 301 + }, + "minecraft:furnace_minecart": { + "protocol_id": 767 + }, + "minecraft:ghast_spawn_egg": { + "protocol_id": 1028 + }, + "minecraft:ghast_tear": { + "protocol_id": 992 + }, + "minecraft:gilded_blackstone": { + "protocol_id": 1219 + }, + "minecraft:glass": { + "protocol_id": 187 + }, + "minecraft:glass_bottle": { + "protocol_id": 996 + }, + "minecraft:glass_pane": { + "protocol_id": 356 + }, + "minecraft:glistering_melon_slice": { + "protocol_id": 1004 + }, + "minecraft:globe_banner_pattern": { + "protocol_id": 1189 + }, + "minecraft:glow_berries": { + "protocol_id": 1205 + }, + "minecraft:glow_ink_sac": { + "protocol_id": 939 + }, + "minecraft:glow_item_frame": { + "protocol_id": 1088 + }, + "minecraft:glow_lichen": { + "protocol_id": 359 + }, + "minecraft:glow_squid_spawn_egg": { + "protocol_id": 1029 + }, + "minecraft:glowstone": { + "protocol_id": 331 + }, + "minecraft:glowstone_dust": { + "protocol_id": 931 + }, + "minecraft:goat_horn": { + "protocol_id": 1191 + }, + "minecraft:goat_spawn_egg": { + "protocol_id": 1030 + }, + "minecraft:gold_block": { + "protocol_id": 89 + }, + "minecraft:gold_ingot": { + "protocol_id": 811 + }, + "minecraft:gold_nugget": { + "protocol_id": 993 + }, + "minecraft:gold_ore": { + "protocol_id": 68 + }, + "minecraft:golden_apple": { + "protocol_id": 881 + }, + "minecraft:golden_axe": { + "protocol_id": 827 + }, + "minecraft:golden_boots": { + "protocol_id": 872 + }, + "minecraft:golden_carrot": { + "protocol_id": 1095 + }, + "minecraft:golden_chestplate": { + "protocol_id": 870 + }, + "minecraft:golden_helmet": { + "protocol_id": 869 + }, + "minecraft:golden_hoe": { + "protocol_id": 828 + }, + "minecraft:golden_horse_armor": { + "protocol_id": 1118 + }, + "minecraft:golden_leggings": { + "protocol_id": 871 + }, + "minecraft:golden_pickaxe": { + "protocol_id": 826 + }, + "minecraft:golden_shovel": { + "protocol_id": 825 + }, + "minecraft:golden_sword": { + "protocol_id": 824 + }, + "minecraft:granite": { + "protocol_id": 2 + }, + "minecraft:granite_slab": { + "protocol_id": 646 + }, + "minecraft:granite_stairs": { + "protocol_id": 629 + }, + "minecraft:granite_wall": { + "protocol_id": 402 + }, + "minecraft:grass_block": { + "protocol_id": 27 + }, + "minecraft:gravel": { + "protocol_id": 61 + }, + "minecraft:gray_banner": { + "protocol_id": 1133 + }, + "minecraft:gray_bed": { + "protocol_id": 968 + }, + "minecraft:gray_candle": { + "protocol_id": 1237 + }, + "minecraft:gray_carpet": { + "protocol_id": 452 + }, + "minecraft:gray_concrete": { + "protocol_id": 561 + }, + "minecraft:gray_concrete_powder": { + "protocol_id": 577 + }, + "minecraft:gray_dye": { + "protocol_id": 948 + }, + "minecraft:gray_glazed_terracotta": { + "protocol_id": 545 + }, + "minecraft:gray_shulker_box": { + "protocol_id": 529 + }, + "minecraft:gray_stained_glass": { + "protocol_id": 477 + }, + "minecraft:gray_stained_glass_pane": { + "protocol_id": 493 + }, + "minecraft:gray_terracotta": { + "protocol_id": 433 + }, + "minecraft:gray_wool": { + "protocol_id": 208 + }, + "minecraft:green_banner": { + "protocol_id": 1139 + }, + "minecraft:green_bed": { + "protocol_id": 974 + }, + "minecraft:green_candle": { + "protocol_id": 1243 + }, + "minecraft:green_carpet": { + "protocol_id": 458 + }, + "minecraft:green_concrete": { + "protocol_id": 567 + }, + "minecraft:green_concrete_powder": { + "protocol_id": 583 + }, + "minecraft:green_dye": { + "protocol_id": 954 + }, + "minecraft:green_glazed_terracotta": { + "protocol_id": 551 + }, + "minecraft:green_shulker_box": { + "protocol_id": 535 + }, + "minecraft:green_stained_glass": { + "protocol_id": 483 + }, + "minecraft:green_stained_glass_pane": { + "protocol_id": 499 + }, + "minecraft:green_terracotta": { + "protocol_id": 439 + }, + "minecraft:green_wool": { + "protocol_id": 214 + }, + "minecraft:grindstone": { + "protocol_id": 1198 + }, + "minecraft:guardian_spawn_egg": { + "protocol_id": 1031 + }, + "minecraft:gunpowder": { + "protocol_id": 849 + }, + "minecraft:hanging_roots": { + "protocol_id": 247 + }, + "minecraft:hay_block": { + "protocol_id": 444 + }, + "minecraft:heart_of_the_sea": { + "protocol_id": 1181 + }, + "minecraft:heart_pottery_sherd": { + "protocol_id": 1283 + }, + "minecraft:heartbreak_pottery_sherd": { + "protocol_id": 1284 + }, + "minecraft:heavy_weighted_pressure_plate": { + "protocol_id": 697 + }, + "minecraft:hoglin_spawn_egg": { + "protocol_id": 1032 + }, + "minecraft:honey_block": { + "protocol_id": 664 + }, + "minecraft:honey_bottle": { + "protocol_id": 1212 + }, + "minecraft:honeycomb": { + "protocol_id": 1209 + }, + "minecraft:honeycomb_block": { + "protocol_id": 1213 + }, + "minecraft:hopper": { + "protocol_id": 666 + }, + "minecraft:hopper_minecart": { + "protocol_id": 769 + }, + "minecraft:horn_coral": { + "protocol_id": 602 + }, + "minecraft:horn_coral_block": { + "protocol_id": 597 + }, + "minecraft:horn_coral_fan": { + "protocol_id": 612 + }, + "minecraft:horse_spawn_egg": { + "protocol_id": 1033 + }, + "minecraft:host_armor_trim_smithing_template": { + "protocol_id": 1273 + }, + "minecraft:howl_pottery_sherd": { + "protocol_id": 1285 + }, + "minecraft:husk_spawn_egg": { + "protocol_id": 1034 + }, + "minecraft:ice": { + "protocol_id": 305 + }, + "minecraft:infested_chiseled_stone_bricks": { + "protocol_id": 337 + }, + "minecraft:infested_cobblestone": { + "protocol_id": 333 + }, + "minecraft:infested_cracked_stone_bricks": { + "protocol_id": 336 + }, + "minecraft:infested_deepslate": { + "protocol_id": 338 + }, + "minecraft:infested_mossy_stone_bricks": { + "protocol_id": 335 + }, + "minecraft:infested_stone": { + "protocol_id": 332 + }, + "minecraft:infested_stone_bricks": { + "protocol_id": 334 + }, + "minecraft:ink_sac": { + "protocol_id": 938 + }, + "minecraft:iron_axe": { + "protocol_id": 832 + }, + "minecraft:iron_bars": { + "protocol_id": 354 + }, + "minecraft:iron_block": { + "protocol_id": 87 + }, + "minecraft:iron_boots": { + "protocol_id": 864 + }, + "minecraft:iron_chestplate": { + "protocol_id": 862 + }, + "minecraft:iron_door": { + "protocol_id": 709 + }, + "minecraft:iron_golem_spawn_egg": { + "protocol_id": 1035 + }, + "minecraft:iron_helmet": { + "protocol_id": 861 + }, + "minecraft:iron_hoe": { + "protocol_id": 833 + }, + "minecraft:iron_horse_armor": { + "protocol_id": 1117 + }, + "minecraft:iron_ingot": { + "protocol_id": 807 + }, + "minecraft:iron_leggings": { + "protocol_id": 863 + }, + "minecraft:iron_nugget": { + "protocol_id": 1158 + }, + "minecraft:iron_ore": { + "protocol_id": 64 + }, + "minecraft:iron_pickaxe": { + "protocol_id": 831 + }, + "minecraft:iron_shovel": { + "protocol_id": 830 + }, + "minecraft:iron_sword": { + "protocol_id": 829 + }, + "minecraft:iron_trapdoor": { + "protocol_id": 729 + }, + "minecraft:item_frame": { + "protocol_id": 1087 + }, + "minecraft:jack_o_lantern": { + "protocol_id": 323 + }, + "minecraft:jigsaw": { + "protocol_id": 792 + }, + "minecraft:jukebox": { + "protocol_id": 309 + }, + "minecraft:jungle_boat": { + "protocol_id": 779 + }, + "minecraft:jungle_button": { + "protocol_id": 686 + }, + "minecraft:jungle_chest_boat": { + "protocol_id": 780 + }, + "minecraft:jungle_door": { + "protocol_id": 713 + }, + "minecraft:jungle_fence": { + "protocol_id": 313 + }, + "minecraft:jungle_fence_gate": { + "protocol_id": 752 + }, + "minecraft:jungle_hanging_sign": { + "protocol_id": 897 + }, + "minecraft:jungle_leaves": { + "protocol_id": 178 + }, + "minecraft:jungle_log": { + "protocol_id": 134 + }, + "minecraft:jungle_planks": { + "protocol_id": 39 + }, + "minecraft:jungle_pressure_plate": { + "protocol_id": 701 + }, + "minecraft:jungle_sapling": { + "protocol_id": 51 + }, + "minecraft:jungle_sign": { + "protocol_id": 886 + }, + "minecraft:jungle_slab": { + "protocol_id": 254 + }, + "minecraft:jungle_stairs": { + "protocol_id": 385 + }, + "minecraft:jungle_trapdoor": { + "protocol_id": 733 + }, + "minecraft:jungle_wood": { + "protocol_id": 168 + }, + "minecraft:kelp": { + "protocol_id": 243 + }, + "minecraft:knowledge_book": { + "protocol_id": 1159 + }, + "minecraft:ladder": { + "protocol_id": 302 + }, + "minecraft:lantern": { + "protocol_id": 1202 + }, + "minecraft:lapis_block": { + "protocol_id": 189 + }, + "minecraft:lapis_lazuli": { + "protocol_id": 803 + }, + "minecraft:lapis_ore": { + "protocol_id": 74 + }, + "minecraft:large_amethyst_bud": { + "protocol_id": 1248 + }, + "minecraft:large_fern": { + "protocol_id": 469 + }, + "minecraft:lava_bucket": { + "protocol_id": 907 + }, + "minecraft:lead": { + "protocol_id": 1121 + }, + "minecraft:leather": { + "protocol_id": 910 + }, + "minecraft:leather_boots": { + "protocol_id": 856 + }, + "minecraft:leather_chestplate": { + "protocol_id": 854 + }, + "minecraft:leather_helmet": { + "protocol_id": 853 + }, + "minecraft:leather_horse_armor": { + "protocol_id": 1120 + }, + "minecraft:leather_leggings": { + "protocol_id": 855 + }, + "minecraft:lectern": { + "protocol_id": 669 + }, + "minecraft:lever": { + "protocol_id": 671 + }, + "minecraft:light": { + "protocol_id": 443 + }, + "minecraft:light_blue_banner": { + "protocol_id": 1129 + }, + "minecraft:light_blue_bed": { + "protocol_id": 964 + }, + "minecraft:light_blue_candle": { + "protocol_id": 1233 + }, + "minecraft:light_blue_carpet": { + "protocol_id": 448 + }, + "minecraft:light_blue_concrete": { + "protocol_id": 557 + }, + "minecraft:light_blue_concrete_powder": { + "protocol_id": 573 + }, + "minecraft:light_blue_dye": { + "protocol_id": 944 + }, + "minecraft:light_blue_glazed_terracotta": { + "protocol_id": 541 + }, + "minecraft:light_blue_shulker_box": { + "protocol_id": 525 + }, + "minecraft:light_blue_stained_glass": { + "protocol_id": 473 + }, + "minecraft:light_blue_stained_glass_pane": { + "protocol_id": 489 + }, + "minecraft:light_blue_terracotta": { + "protocol_id": 429 + }, + "minecraft:light_blue_wool": { + "protocol_id": 204 + }, + "minecraft:light_gray_banner": { + "protocol_id": 1134 + }, + "minecraft:light_gray_bed": { + "protocol_id": 969 + }, + "minecraft:light_gray_candle": { + "protocol_id": 1238 + }, + "minecraft:light_gray_carpet": { + "protocol_id": 453 + }, + "minecraft:light_gray_concrete": { + "protocol_id": 562 + }, + "minecraft:light_gray_concrete_powder": { + "protocol_id": 578 + }, + "minecraft:light_gray_dye": { + "protocol_id": 949 + }, + "minecraft:light_gray_glazed_terracotta": { + "protocol_id": 546 + }, + "minecraft:light_gray_shulker_box": { + "protocol_id": 530 + }, + "minecraft:light_gray_stained_glass": { + "protocol_id": 478 + }, + "minecraft:light_gray_stained_glass_pane": { + "protocol_id": 494 + }, + "minecraft:light_gray_terracotta": { + "protocol_id": 434 + }, + "minecraft:light_gray_wool": { + "protocol_id": 209 + }, + "minecraft:light_weighted_pressure_plate": { + "protocol_id": 696 + }, + "minecraft:lightning_rod": { + "protocol_id": 672 + }, + "minecraft:lilac": { + "protocol_id": 465 + }, + "minecraft:lily_of_the_valley": { + "protocol_id": 228 + }, + "minecraft:lily_pad": { + "protocol_id": 364 + }, + "minecraft:lime_banner": { + "protocol_id": 1131 + }, + "minecraft:lime_bed": { + "protocol_id": 966 + }, + "minecraft:lime_candle": { + "protocol_id": 1235 + }, + "minecraft:lime_carpet": { + "protocol_id": 450 + }, + "minecraft:lime_concrete": { + "protocol_id": 559 + }, + "minecraft:lime_concrete_powder": { + "protocol_id": 575 + }, + "minecraft:lime_dye": { + "protocol_id": 946 + }, + "minecraft:lime_glazed_terracotta": { + "protocol_id": 543 + }, + "minecraft:lime_shulker_box": { + "protocol_id": 527 + }, + "minecraft:lime_stained_glass": { + "protocol_id": 475 + }, + "minecraft:lime_stained_glass_pane": { + "protocol_id": 491 + }, + "minecraft:lime_terracotta": { + "protocol_id": 431 + }, + "minecraft:lime_wool": { + "protocol_id": 206 + }, + "minecraft:lingering_potion": { + "protocol_id": 1154 + }, + "minecraft:llama_spawn_egg": { + "protocol_id": 1036 + }, + "minecraft:lodestone": { + "protocol_id": 1214 + }, + "minecraft:loom": { + "protocol_id": 1184 + }, + "minecraft:magenta_banner": { + "protocol_id": 1128 + }, + "minecraft:magenta_bed": { + "protocol_id": 963 + }, + "minecraft:magenta_candle": { + "protocol_id": 1232 + }, + "minecraft:magenta_carpet": { + "protocol_id": 447 + }, + "minecraft:magenta_concrete": { + "protocol_id": 556 + }, + "minecraft:magenta_concrete_powder": { + "protocol_id": 572 + }, + "minecraft:magenta_dye": { + "protocol_id": 943 + }, + "minecraft:magenta_glazed_terracotta": { + "protocol_id": 540 + }, + "minecraft:magenta_shulker_box": { + "protocol_id": 524 + }, + "minecraft:magenta_stained_glass": { + "protocol_id": 472 + }, + "minecraft:magenta_stained_glass_pane": { + "protocol_id": 488 + }, + "minecraft:magenta_terracotta": { + "protocol_id": 428 + }, + "minecraft:magenta_wool": { + "protocol_id": 203 + }, + "minecraft:magma_block": { + "protocol_id": 515 + }, + "minecraft:magma_cream": { + "protocol_id": 1000 + }, + "minecraft:magma_cube_spawn_egg": { + "protocol_id": 1037 + }, + "minecraft:mangrove_boat": { + "protocol_id": 787 + }, + "minecraft:mangrove_button": { + "protocol_id": 690 + }, + "minecraft:mangrove_chest_boat": { + "protocol_id": 788 + }, + "minecraft:mangrove_door": { + "protocol_id": 717 + }, + "minecraft:mangrove_fence": { + "protocol_id": 317 + }, + "minecraft:mangrove_fence_gate": { + "protocol_id": 756 + }, + "minecraft:mangrove_hanging_sign": { + "protocol_id": 901 + }, + "minecraft:mangrove_leaves": { + "protocol_id": 182 + }, + "minecraft:mangrove_log": { + "protocol_id": 138 + }, + "minecraft:mangrove_planks": { + "protocol_id": 43 + }, + "minecraft:mangrove_pressure_plate": { + "protocol_id": 705 + }, + "minecraft:mangrove_propagule": { + "protocol_id": 55 + }, + "minecraft:mangrove_roots": { + "protocol_id": 139 + }, + "minecraft:mangrove_sign": { + "protocol_id": 890 + }, + "minecraft:mangrove_slab": { + "protocol_id": 258 + }, + "minecraft:mangrove_stairs": { + "protocol_id": 389 + }, + "minecraft:mangrove_trapdoor": { + "protocol_id": 737 + }, + "minecraft:mangrove_wood": { + "protocol_id": 172 + }, + "minecraft:map": { + "protocol_id": 1094 + }, + "minecraft:medium_amethyst_bud": { + "protocol_id": 1247 + }, + "minecraft:melon": { + "protocol_id": 357 + }, + "minecraft:melon_seeds": { + "protocol_id": 984 + }, + "minecraft:melon_slice": { + "protocol_id": 981 + }, + "minecraft:milk_bucket": { + "protocol_id": 911 + }, + "minecraft:minecart": { + "protocol_id": 765 + }, + "minecraft:miner_pottery_sherd": { + "protocol_id": 1286 + }, + "minecraft:mojang_banner_pattern": { + "protocol_id": 1188 + }, + "minecraft:mooshroom_spawn_egg": { + "protocol_id": 1038 + }, + "minecraft:moss_block": { + "protocol_id": 246 + }, + "minecraft:moss_carpet": { + "protocol_id": 244 + }, + "minecraft:mossy_cobblestone": { + "protocol_id": 288 + }, + "minecraft:mossy_cobblestone_slab": { + "protocol_id": 642 + }, + "minecraft:mossy_cobblestone_stairs": { + "protocol_id": 624 + }, + "minecraft:mossy_cobblestone_wall": { + "protocol_id": 397 + }, + "minecraft:mossy_stone_brick_slab": { + "protocol_id": 640 + }, + "minecraft:mossy_stone_brick_stairs": { + "protocol_id": 622 + }, + "minecraft:mossy_stone_brick_wall": { + "protocol_id": 401 + }, + "minecraft:mossy_stone_bricks": { + "protocol_id": 340 + }, + "minecraft:mourner_pottery_sherd": { + "protocol_id": 1287 + }, + "minecraft:mud": { + "protocol_id": 32 + }, + "minecraft:mud_brick_slab": { + "protocol_id": 271 + }, + "minecraft:mud_brick_stairs": { + "protocol_id": 362 + }, + "minecraft:mud_brick_wall": { + "protocol_id": 404 + }, + "minecraft:mud_bricks": { + "protocol_id": 344 + }, + "minecraft:muddy_mangrove_roots": { + "protocol_id": 140 + }, + "minecraft:mule_spawn_egg": { + "protocol_id": 1039 + }, + "minecraft:mushroom_stem": { + "protocol_id": 353 + }, + "minecraft:mushroom_stew": { + "protocol_id": 846 + }, + "minecraft:music_disc_11": { + "protocol_id": 1171 + }, + "minecraft:music_disc_13": { + "protocol_id": 1161 + }, + "minecraft:music_disc_5": { + "protocol_id": 1175 + }, + "minecraft:music_disc_blocks": { + "protocol_id": 1163 + }, + "minecraft:music_disc_cat": { + "protocol_id": 1162 + }, + "minecraft:music_disc_chirp": { + "protocol_id": 1164 + }, + "minecraft:music_disc_far": { + "protocol_id": 1165 + }, + "minecraft:music_disc_mall": { + "protocol_id": 1166 + }, + "minecraft:music_disc_mellohi": { + "protocol_id": 1167 + }, + "minecraft:music_disc_otherside": { + "protocol_id": 1173 + }, + "minecraft:music_disc_pigstep": { + "protocol_id": 1176 + }, + "minecraft:music_disc_relic": { + "protocol_id": 1174 + }, + "minecraft:music_disc_stal": { + "protocol_id": 1168 + }, + "minecraft:music_disc_strad": { + "protocol_id": 1169 + }, + "minecraft:music_disc_wait": { + "protocol_id": 1172 + }, + "minecraft:music_disc_ward": { + "protocol_id": 1170 + }, + "minecraft:mutton": { + "protocol_id": 1124 + }, + "minecraft:mycelium": { + "protocol_id": 363 + }, + "minecraft:name_tag": { + "protocol_id": 1122 + }, + "minecraft:nautilus_shell": { + "protocol_id": 1180 + }, + "minecraft:nether_brick": { + "protocol_id": 1108 + }, + "minecraft:nether_brick_fence": { + "protocol_id": 368 + }, + "minecraft:nether_brick_slab": { + "protocol_id": 272 + }, + "minecraft:nether_brick_stairs": { + "protocol_id": 369 + }, + "minecraft:nether_brick_wall": { + "protocol_id": 405 + }, + "minecraft:nether_bricks": { + "protocol_id": 365 + }, + "minecraft:nether_gold_ore": { + "protocol_id": 78 + }, + "minecraft:nether_quartz_ore": { + "protocol_id": 79 + }, + "minecraft:nether_sprouts": { + "protocol_id": 239 + }, + "minecraft:nether_star": { + "protocol_id": 1103 + }, + "minecraft:nether_wart": { + "protocol_id": 994 + }, + "minecraft:nether_wart_block": { + "protocol_id": 516 + }, + "minecraft:netherite_axe": { + "protocol_id": 842 + }, + "minecraft:netherite_block": { + "protocol_id": 91 + }, + "minecraft:netherite_boots": { + "protocol_id": 876 + }, + "minecraft:netherite_chestplate": { + "protocol_id": 874 + }, + "minecraft:netherite_helmet": { + "protocol_id": 873 + }, + "minecraft:netherite_hoe": { + "protocol_id": 843 + }, + "minecraft:netherite_ingot": { + "protocol_id": 812 + }, + "minecraft:netherite_leggings": { + "protocol_id": 875 + }, + "minecraft:netherite_pickaxe": { + "protocol_id": 841 + }, + "minecraft:netherite_scrap": { + "protocol_id": 813 + }, + "minecraft:netherite_shovel": { + "protocol_id": 840 + }, + "minecraft:netherite_sword": { + "protocol_id": 839 + }, + "minecraft:netherite_upgrade_smithing_template": { + "protocol_id": 1257 + }, + "minecraft:netherrack": { + "protocol_id": 324 + }, + "minecraft:note_block": { + "protocol_id": 680 + }, + "minecraft:oak_boat": { + "protocol_id": 773 + }, + "minecraft:oak_button": { + "protocol_id": 683 + }, + "minecraft:oak_chest_boat": { + "protocol_id": 774 + }, + "minecraft:oak_door": { + "protocol_id": 710 + }, + "minecraft:oak_fence": { + "protocol_id": 310 + }, + "minecraft:oak_fence_gate": { + "protocol_id": 749 + }, + "minecraft:oak_hanging_sign": { + "protocol_id": 894 + }, + "minecraft:oak_leaves": { + "protocol_id": 175 + }, + "minecraft:oak_log": { + "protocol_id": 131 + }, + "minecraft:oak_planks": { + "protocol_id": 36 + }, + "minecraft:oak_pressure_plate": { + "protocol_id": 698 + }, + "minecraft:oak_sapling": { + "protocol_id": 48 + }, + "minecraft:oak_sign": { + "protocol_id": 883 + }, + "minecraft:oak_slab": { + "protocol_id": 251 + }, + "minecraft:oak_stairs": { + "protocol_id": 382 + }, + "minecraft:oak_trapdoor": { + "protocol_id": 730 + }, + "minecraft:oak_wood": { + "protocol_id": 165 + }, + "minecraft:observer": { + "protocol_id": 665 + }, + "minecraft:obsidian": { + "protocol_id": 289 + }, + "minecraft:ocelot_spawn_egg": { + "protocol_id": 1040 + }, + "minecraft:ochre_froglight": { + "protocol_id": 1251 + }, + "minecraft:orange_banner": { + "protocol_id": 1127 + }, + "minecraft:orange_bed": { + "protocol_id": 962 + }, + "minecraft:orange_candle": { + "protocol_id": 1231 + }, + "minecraft:orange_carpet": { + "protocol_id": 446 + }, + "minecraft:orange_concrete": { + "protocol_id": 555 + }, + "minecraft:orange_concrete_powder": { + "protocol_id": 571 + }, + "minecraft:orange_dye": { + "protocol_id": 942 + }, + "minecraft:orange_glazed_terracotta": { + "protocol_id": 539 + }, + "minecraft:orange_shulker_box": { + "protocol_id": 523 + }, + "minecraft:orange_stained_glass": { + "protocol_id": 471 + }, + "minecraft:orange_stained_glass_pane": { + "protocol_id": 487 + }, + "minecraft:orange_terracotta": { + "protocol_id": 427 + }, + "minecraft:orange_tulip": { + "protocol_id": 223 + }, + "minecraft:orange_wool": { + "protocol_id": 202 + }, + "minecraft:oxeye_daisy": { + "protocol_id": 226 + }, + "minecraft:oxidized_chiseled_copper": { + "protocol_id": 98 + }, + "minecraft:oxidized_copper": { + "protocol_id": 94 + }, + "minecraft:oxidized_copper_bulb": { + "protocol_id": 1305 + }, + "minecraft:oxidized_copper_door": { + "protocol_id": 724 + }, + "minecraft:oxidized_copper_grate": { + "protocol_id": 1297 + }, + "minecraft:oxidized_copper_trapdoor": { + "protocol_id": 744 + }, + "minecraft:oxidized_cut_copper": { + "protocol_id": 102 + }, + "minecraft:oxidized_cut_copper_slab": { + "protocol_id": 110 + }, + "minecraft:oxidized_cut_copper_stairs": { + "protocol_id": 106 + }, + "minecraft:packed_ice": { + "protocol_id": 462 + }, + "minecraft:packed_mud": { + "protocol_id": 343 + }, + "minecraft:painting": { + "protocol_id": 880 + }, + "minecraft:panda_spawn_egg": { + "protocol_id": 1041 + }, + "minecraft:paper": { + "protocol_id": 921 + }, + "minecraft:parrot_spawn_egg": { + "protocol_id": 1042 + }, + "minecraft:pearlescent_froglight": { + "protocol_id": 1253 + }, + "minecraft:peony": { + "protocol_id": 467 + }, + "minecraft:petrified_oak_slab": { + "protocol_id": 267 + }, + "minecraft:phantom_membrane": { + "protocol_id": 1179 + }, + "minecraft:phantom_spawn_egg": { + "protocol_id": 1043 + }, + "minecraft:pig_spawn_egg": { + "protocol_id": 1044 + }, + "minecraft:piglin_banner_pattern": { + "protocol_id": 1190 + }, + "minecraft:piglin_brute_spawn_egg": { + "protocol_id": 1046 + }, + "minecraft:piglin_head": { + "protocol_id": 1102 + }, + "minecraft:piglin_spawn_egg": { + "protocol_id": 1045 + }, + "minecraft:pillager_spawn_egg": { + "protocol_id": 1047 + }, + "minecraft:pink_banner": { + "protocol_id": 1132 + }, + "minecraft:pink_bed": { + "protocol_id": 967 + }, + "minecraft:pink_candle": { + "protocol_id": 1236 + }, + "minecraft:pink_carpet": { + "protocol_id": 451 + }, + "minecraft:pink_concrete": { + "protocol_id": 560 + }, + "minecraft:pink_concrete_powder": { + "protocol_id": 576 + }, + "minecraft:pink_dye": { + "protocol_id": 947 + }, + "minecraft:pink_glazed_terracotta": { + "protocol_id": 544 + }, + "minecraft:pink_petals": { + "protocol_id": 245 + }, + "minecraft:pink_shulker_box": { + "protocol_id": 528 + }, + "minecraft:pink_stained_glass": { + "protocol_id": 476 + }, + "minecraft:pink_stained_glass_pane": { + "protocol_id": 492 + }, + "minecraft:pink_terracotta": { + "protocol_id": 432 + }, + "minecraft:pink_tulip": { + "protocol_id": 225 + }, + "minecraft:pink_wool": { + "protocol_id": 207 + }, + "minecraft:piston": { + "protocol_id": 661 + }, + "minecraft:pitcher_plant": { + "protocol_id": 231 + }, + "minecraft:pitcher_pod": { + "protocol_id": 1146 + }, + "minecraft:player_head": { + "protocol_id": 1098 + }, + "minecraft:plenty_pottery_sherd": { + "protocol_id": 1288 + }, + "minecraft:podzol": { + "protocol_id": 30 + }, + "minecraft:pointed_dripstone": { + "protocol_id": 1250 + }, + "minecraft:poisonous_potato": { + "protocol_id": 1093 + }, + "minecraft:polar_bear_spawn_egg": { + "protocol_id": 1048 + }, + "minecraft:polished_andesite": { + "protocol_id": 7 + }, + "minecraft:polished_andesite_slab": { + "protocol_id": 649 + }, + "minecraft:polished_andesite_stairs": { + "protocol_id": 632 + }, + "minecraft:polished_basalt": { + "protocol_id": 328 + }, + "minecraft:polished_blackstone": { + "protocol_id": 1220 + }, + "minecraft:polished_blackstone_brick_slab": { + "protocol_id": 1225 + }, + "minecraft:polished_blackstone_brick_stairs": { + "protocol_id": 1226 + }, + "minecraft:polished_blackstone_brick_wall": { + "protocol_id": 413 + }, + "minecraft:polished_blackstone_bricks": { + "protocol_id": 1224 + }, + "minecraft:polished_blackstone_button": { + "protocol_id": 682 + }, + "minecraft:polished_blackstone_pressure_plate": { + "protocol_id": 695 + }, + "minecraft:polished_blackstone_slab": { + "protocol_id": 1221 + }, + "minecraft:polished_blackstone_stairs": { + "protocol_id": 1222 + }, + "minecraft:polished_blackstone_wall": { + "protocol_id": 412 + }, + "minecraft:polished_deepslate": { + "protocol_id": 10 + }, + "minecraft:polished_deepslate_slab": { + "protocol_id": 652 + }, + "minecraft:polished_deepslate_stairs": { + "protocol_id": 635 + }, + "minecraft:polished_deepslate_wall": { + "protocol_id": 415 + }, + "minecraft:polished_diorite": { + "protocol_id": 5 + }, + "minecraft:polished_diorite_slab": { + "protocol_id": 641 + }, + "minecraft:polished_diorite_stairs": { + "protocol_id": 623 + }, + "minecraft:polished_granite": { + "protocol_id": 3 + }, + "minecraft:polished_granite_slab": { + "protocol_id": 638 + }, + "minecraft:polished_granite_stairs": { + "protocol_id": 620 + }, + "minecraft:polished_tuff": { + "protocol_id": 17 + }, + "minecraft:polished_tuff_slab": { + "protocol_id": 18 + }, + "minecraft:polished_tuff_stairs": { + "protocol_id": 19 + }, + "minecraft:polished_tuff_wall": { + "protocol_id": 20 + }, + "minecraft:popped_chorus_fruit": { + "protocol_id": 1144 + }, + "minecraft:poppy": { + "protocol_id": 218 + }, + "minecraft:porkchop": { + "protocol_id": 878 + }, + "minecraft:potato": { + "protocol_id": 1091 + }, + "minecraft:potion": { + "protocol_id": 995 + }, + "minecraft:powder_snow_bucket": { + "protocol_id": 908 + }, + "minecraft:powered_rail": { + "protocol_id": 760 + }, + "minecraft:prismarine": { + "protocol_id": 502 + }, + "minecraft:prismarine_brick_slab": { + "protocol_id": 278 + }, + "minecraft:prismarine_brick_stairs": { + "protocol_id": 506 + }, + "minecraft:prismarine_bricks": { + "protocol_id": 503 + }, + "minecraft:prismarine_crystals": { + "protocol_id": 1110 + }, + "minecraft:prismarine_shard": { + "protocol_id": 1109 + }, + "minecraft:prismarine_slab": { + "protocol_id": 277 + }, + "minecraft:prismarine_stairs": { + "protocol_id": 505 + }, + "minecraft:prismarine_wall": { + "protocol_id": 399 + }, + "minecraft:prize_pottery_sherd": { + "protocol_id": 1289 + }, + "minecraft:pufferfish": { + "protocol_id": 935 + }, + "minecraft:pufferfish_bucket": { + "protocol_id": 912 + }, + "minecraft:pufferfish_spawn_egg": { + "protocol_id": 1049 + }, + "minecraft:pumpkin": { + "protocol_id": 321 + }, + "minecraft:pumpkin_pie": { + "protocol_id": 1104 + }, + "minecraft:pumpkin_seeds": { + "protocol_id": 983 + }, + "minecraft:purple_banner": { + "protocol_id": 1136 + }, + "minecraft:purple_bed": { + "protocol_id": 971 + }, + "minecraft:purple_candle": { + "protocol_id": 1240 + }, + "minecraft:purple_carpet": { + "protocol_id": 455 + }, + "minecraft:purple_concrete": { + "protocol_id": 564 + }, + "minecraft:purple_concrete_powder": { + "protocol_id": 580 + }, + "minecraft:purple_dye": { + "protocol_id": 951 + }, + "minecraft:purple_glazed_terracotta": { + "protocol_id": 548 + }, + "minecraft:purple_shulker_box": { + "protocol_id": 532 + }, + "minecraft:purple_stained_glass": { + "protocol_id": 480 + }, + "minecraft:purple_stained_glass_pane": { + "protocol_id": 496 + }, + "minecraft:purple_terracotta": { + "protocol_id": 436 + }, + "minecraft:purple_wool": { + "protocol_id": 211 + }, + "minecraft:purpur_block": { + "protocol_id": 294 + }, + "minecraft:purpur_pillar": { + "protocol_id": 295 + }, + "minecraft:purpur_slab": { + "protocol_id": 276 + }, + "minecraft:purpur_stairs": { + "protocol_id": 296 + }, + "minecraft:quartz": { + "protocol_id": 804 + }, + "minecraft:quartz_block": { + "protocol_id": 422 + }, + "minecraft:quartz_bricks": { + "protocol_id": 423 + }, + "minecraft:quartz_pillar": { + "protocol_id": 424 + }, + "minecraft:quartz_slab": { + "protocol_id": 273 + }, + "minecraft:quartz_stairs": { + "protocol_id": 425 + }, + "minecraft:rabbit": { + "protocol_id": 1111 + }, + "minecraft:rabbit_foot": { + "protocol_id": 1114 + }, + "minecraft:rabbit_hide": { + "protocol_id": 1115 + }, + "minecraft:rabbit_spawn_egg": { + "protocol_id": 1050 + }, + "minecraft:rabbit_stew": { + "protocol_id": 1113 + }, + "minecraft:rail": { + "protocol_id": 762 + }, + "minecraft:raiser_armor_trim_smithing_template": { + "protocol_id": 1272 + }, + "minecraft:ravager_spawn_egg": { + "protocol_id": 1051 + }, + "minecraft:raw_copper": { + "protocol_id": 808 + }, + "minecraft:raw_copper_block": { + "protocol_id": 83 + }, + "minecraft:raw_gold": { + "protocol_id": 810 + }, + "minecraft:raw_gold_block": { + "protocol_id": 84 + }, + "minecraft:raw_iron": { + "protocol_id": 806 + }, + "minecraft:raw_iron_block": { + "protocol_id": 82 + }, + "minecraft:recovery_compass": { + "protocol_id": 926 + }, + "minecraft:red_banner": { + "protocol_id": 1140 + }, + "minecraft:red_bed": { + "protocol_id": 975 + }, + "minecraft:red_candle": { + "protocol_id": 1244 + }, + "minecraft:red_carpet": { + "protocol_id": 459 + }, + "minecraft:red_concrete": { + "protocol_id": 568 + }, + "minecraft:red_concrete_powder": { + "protocol_id": 584 + }, + "minecraft:red_dye": { + "protocol_id": 955 + }, + "minecraft:red_glazed_terracotta": { + "protocol_id": 552 + }, + "minecraft:red_mushroom": { + "protocol_id": 234 + }, + "minecraft:red_mushroom_block": { + "protocol_id": 352 + }, + "minecraft:red_nether_brick_slab": { + "protocol_id": 648 + }, + "minecraft:red_nether_brick_stairs": { + "protocol_id": 631 + }, + "minecraft:red_nether_brick_wall": { + "protocol_id": 407 + }, + "minecraft:red_nether_bricks": { + "protocol_id": 518 + }, + "minecraft:red_sand": { + "protocol_id": 60 + }, + "minecraft:red_sandstone": { + "protocol_id": 509 + }, + "minecraft:red_sandstone_slab": { + "protocol_id": 274 + }, + "minecraft:red_sandstone_stairs": { + "protocol_id": 512 + }, + "minecraft:red_sandstone_wall": { + "protocol_id": 400 + }, + "minecraft:red_shulker_box": { + "protocol_id": 536 + }, + "minecraft:red_stained_glass": { + "protocol_id": 484 + }, + "minecraft:red_stained_glass_pane": { + "protocol_id": 500 + }, + "minecraft:red_terracotta": { + "protocol_id": 440 + }, + "minecraft:red_tulip": { + "protocol_id": 222 + }, + "minecraft:red_wool": { + "protocol_id": 215 + }, + "minecraft:redstone": { + "protocol_id": 656 + }, + "minecraft:redstone_block": { + "protocol_id": 658 + }, + "minecraft:redstone_lamp": { + "protocol_id": 679 + }, + "minecraft:redstone_ore": { + "protocol_id": 70 + }, + "minecraft:redstone_torch": { + "protocol_id": 657 + }, + "minecraft:reinforced_deepslate": { + "protocol_id": 350 + }, + "minecraft:repeater": { + "protocol_id": 659 + }, + "minecraft:repeating_command_block": { + "protocol_id": 513 + }, + "minecraft:respawn_anchor": { + "protocol_id": 1228 + }, + "minecraft:rib_armor_trim_smithing_template": { + "protocol_id": 1267 + }, + "minecraft:rooted_dirt": { + "protocol_id": 31 + }, + "minecraft:rose_bush": { + "protocol_id": 466 + }, + "minecraft:rotten_flesh": { + "protocol_id": 989 + }, + "minecraft:saddle": { + "protocol_id": 764 + }, + "minecraft:salmon": { + "protocol_id": 933 + }, + "minecraft:salmon_bucket": { + "protocol_id": 913 + }, + "minecraft:salmon_spawn_egg": { + "protocol_id": 1052 + }, + "minecraft:sand": { + "protocol_id": 57 + }, + "minecraft:sandstone": { + "protocol_id": 190 + }, + "minecraft:sandstone_slab": { + "protocol_id": 265 + }, + "minecraft:sandstone_stairs": { + "protocol_id": 379 + }, + "minecraft:sandstone_wall": { + "protocol_id": 408 + }, + "minecraft:scaffolding": { + "protocol_id": 655 + }, + "minecraft:sculk": { + "protocol_id": 370 + }, + "minecraft:sculk_catalyst": { + "protocol_id": 372 + }, + "minecraft:sculk_sensor": { + "protocol_id": 674 + }, + "minecraft:sculk_shrieker": { + "protocol_id": 373 + }, + "minecraft:sculk_vein": { + "protocol_id": 371 + }, + "minecraft:scute": { + "protocol_id": 794 + }, + "minecraft:sea_lantern": { + "protocol_id": 508 + }, + "minecraft:sea_pickle": { + "protocol_id": 200 + }, + "minecraft:seagrass": { + "protocol_id": 199 + }, + "minecraft:sentry_armor_trim_smithing_template": { + "protocol_id": 1258 + }, + "minecraft:shaper_armor_trim_smithing_template": { + "protocol_id": 1270 + }, + "minecraft:sheaf_pottery_sherd": { + "protocol_id": 1290 + }, + "minecraft:shears": { + "protocol_id": 980 + }, + "minecraft:sheep_spawn_egg": { + "protocol_id": 1053 + }, + "minecraft:shelter_pottery_sherd": { + "protocol_id": 1291 + }, + "minecraft:shield": { + "protocol_id": 1155 + }, + "minecraft:short_grass": { + "protocol_id": 194 + }, + "minecraft:shroomlight": { + "protocol_id": 1208 + }, + "minecraft:shulker_box": { + "protocol_id": 521 + }, + "minecraft:shulker_shell": { + "protocol_id": 1157 + }, + "minecraft:shulker_spawn_egg": { + "protocol_id": 1054 + }, + "minecraft:silence_armor_trim_smithing_template": { + "protocol_id": 1271 + }, + "minecraft:silverfish_spawn_egg": { + "protocol_id": 1055 + }, + "minecraft:skeleton_horse_spawn_egg": { + "protocol_id": 1057 + }, + "minecraft:skeleton_skull": { + "protocol_id": 1096 + }, + "minecraft:skeleton_spawn_egg": { + "protocol_id": 1056 + }, + "minecraft:skull_banner_pattern": { + "protocol_id": 1187 + }, + "minecraft:skull_pottery_sherd": { + "protocol_id": 1292 + }, + "minecraft:slime_ball": { + "protocol_id": 923 + }, + "minecraft:slime_block": { + "protocol_id": 663 + }, + "minecraft:slime_spawn_egg": { + "protocol_id": 1058 + }, + "minecraft:small_amethyst_bud": { + "protocol_id": 1246 + }, + "minecraft:small_dripleaf": { + "protocol_id": 249 + }, + "minecraft:smithing_table": { + "protocol_id": 1199 + }, + "minecraft:smoker": { + "protocol_id": 1194 + }, + "minecraft:smooth_basalt": { + "protocol_id": 329 + }, + "minecraft:smooth_quartz": { + "protocol_id": 280 + }, + "minecraft:smooth_quartz_slab": { + "protocol_id": 645 + }, + "minecraft:smooth_quartz_stairs": { + "protocol_id": 628 + }, + "minecraft:smooth_red_sandstone": { + "protocol_id": 281 + }, + "minecraft:smooth_red_sandstone_slab": { + "protocol_id": 639 + }, + "minecraft:smooth_red_sandstone_stairs": { + "protocol_id": 621 + }, + "minecraft:smooth_sandstone": { + "protocol_id": 282 + }, + "minecraft:smooth_sandstone_slab": { + "protocol_id": 644 + }, + "minecraft:smooth_sandstone_stairs": { + "protocol_id": 627 + }, + "minecraft:smooth_stone": { + "protocol_id": 283 + }, + "minecraft:smooth_stone_slab": { + "protocol_id": 264 + }, + "minecraft:sniffer_egg": { + "protocol_id": 587 + }, + "minecraft:sniffer_spawn_egg": { + "protocol_id": 1059 + }, + "minecraft:snort_pottery_sherd": { + "protocol_id": 1293 + }, + "minecraft:snout_armor_trim_smithing_template": { + "protocol_id": 1266 + }, + "minecraft:snow": { + "protocol_id": 304 + }, + "minecraft:snow_block": { + "protocol_id": 306 + }, + "minecraft:snow_golem_spawn_egg": { + "protocol_id": 1060 + }, + "minecraft:snowball": { + "protocol_id": 909 + }, + "minecraft:soul_campfire": { + "protocol_id": 1207 + }, + "minecraft:soul_lantern": { + "protocol_id": 1203 + }, + "minecraft:soul_sand": { + "protocol_id": 325 + }, + "minecraft:soul_soil": { + "protocol_id": 326 + }, + "minecraft:soul_torch": { + "protocol_id": 330 + }, + "minecraft:spawner": { + "protocol_id": 297 + }, + "minecraft:spectral_arrow": { + "protocol_id": 1152 + }, + "minecraft:spider_eye": { + "protocol_id": 997 + }, + "minecraft:spider_spawn_egg": { + "protocol_id": 1061 + }, + "minecraft:spire_armor_trim_smithing_template": { + "protocol_id": 1268 + }, + "minecraft:splash_potion": { + "protocol_id": 1151 + }, + "minecraft:sponge": { + "protocol_id": 185 + }, + "minecraft:spore_blossom": { + "protocol_id": 232 + }, + "minecraft:spruce_boat": { + "protocol_id": 775 + }, + "minecraft:spruce_button": { + "protocol_id": 684 + }, + "minecraft:spruce_chest_boat": { + "protocol_id": 776 + }, + "minecraft:spruce_door": { + "protocol_id": 711 + }, + "minecraft:spruce_fence": { + "protocol_id": 311 + }, + "minecraft:spruce_fence_gate": { + "protocol_id": 750 + }, + "minecraft:spruce_hanging_sign": { + "protocol_id": 895 + }, + "minecraft:spruce_leaves": { + "protocol_id": 176 + }, + "minecraft:spruce_log": { + "protocol_id": 132 + }, + "minecraft:spruce_planks": { + "protocol_id": 37 + }, + "minecraft:spruce_pressure_plate": { + "protocol_id": 699 + }, + "minecraft:spruce_sapling": { + "protocol_id": 49 + }, + "minecraft:spruce_sign": { + "protocol_id": 884 + }, + "minecraft:spruce_slab": { + "protocol_id": 252 + }, + "minecraft:spruce_stairs": { + "protocol_id": 383 + }, + "minecraft:spruce_trapdoor": { + "protocol_id": 731 + }, + "minecraft:spruce_wood": { + "protocol_id": 166 + }, + "minecraft:spyglass": { + "protocol_id": 930 + }, + "minecraft:squid_spawn_egg": { + "protocol_id": 1062 + }, + "minecraft:stick": { + "protocol_id": 844 + }, + "minecraft:sticky_piston": { + "protocol_id": 662 + }, + "minecraft:stone": { + "protocol_id": 1 + }, + "minecraft:stone_axe": { + "protocol_id": 822 + }, + "minecraft:stone_brick_slab": { + "protocol_id": 270 + }, + "minecraft:stone_brick_stairs": { + "protocol_id": 361 + }, + "minecraft:stone_brick_wall": { + "protocol_id": 403 + }, + "minecraft:stone_bricks": { + "protocol_id": 339 + }, + "minecraft:stone_button": { + "protocol_id": 681 + }, + "minecraft:stone_hoe": { + "protocol_id": 823 + }, + "minecraft:stone_pickaxe": { + "protocol_id": 821 + }, + "minecraft:stone_pressure_plate": { + "protocol_id": 694 + }, + "minecraft:stone_shovel": { + "protocol_id": 820 + }, + "minecraft:stone_slab": { + "protocol_id": 263 + }, + "minecraft:stone_stairs": { + "protocol_id": 626 + }, + "minecraft:stone_sword": { + "protocol_id": 819 + }, + "minecraft:stonecutter": { + "protocol_id": 1200 + }, + "minecraft:stray_spawn_egg": { + "protocol_id": 1063 + }, + "minecraft:strider_spawn_egg": { + "protocol_id": 1064 + }, + "minecraft:string": { + "protocol_id": 847 + }, + "minecraft:stripped_acacia_log": { + "protocol_id": 148 + }, + "minecraft:stripped_acacia_wood": { + "protocol_id": 158 + }, + "minecraft:stripped_bamboo_block": { + "protocol_id": 164 + }, + "minecraft:stripped_birch_log": { + "protocol_id": 146 + }, + "minecraft:stripped_birch_wood": { + "protocol_id": 156 + }, + "minecraft:stripped_cherry_log": { + "protocol_id": 149 + }, + "minecraft:stripped_cherry_wood": { + "protocol_id": 159 + }, + "minecraft:stripped_crimson_hyphae": { + "protocol_id": 162 + }, + "minecraft:stripped_crimson_stem": { + "protocol_id": 152 + }, + "minecraft:stripped_dark_oak_log": { + "protocol_id": 150 + }, + "minecraft:stripped_dark_oak_wood": { + "protocol_id": 160 + }, + "minecraft:stripped_jungle_log": { + "protocol_id": 147 + }, + "minecraft:stripped_jungle_wood": { + "protocol_id": 157 + }, + "minecraft:stripped_mangrove_log": { + "protocol_id": 151 + }, + "minecraft:stripped_mangrove_wood": { + "protocol_id": 161 + }, + "minecraft:stripped_oak_log": { + "protocol_id": 144 + }, + "minecraft:stripped_oak_wood": { + "protocol_id": 154 + }, + "minecraft:stripped_spruce_log": { + "protocol_id": 145 + }, + "minecraft:stripped_spruce_wood": { + "protocol_id": 155 + }, + "minecraft:stripped_warped_hyphae": { + "protocol_id": 163 + }, + "minecraft:stripped_warped_stem": { + "protocol_id": 153 + }, + "minecraft:structure_block": { + "protocol_id": 791 + }, + "minecraft:structure_void": { + "protocol_id": 520 + }, + "minecraft:sugar": { + "protocol_id": 959 + }, + "minecraft:sugar_cane": { + "protocol_id": 242 + }, + "minecraft:sunflower": { + "protocol_id": 464 + }, + "minecraft:suspicious_gravel": { + "protocol_id": 59 + }, + "minecraft:suspicious_sand": { + "protocol_id": 58 + }, + "minecraft:suspicious_stew": { + "protocol_id": 1183 + }, + "minecraft:sweet_berries": { + "protocol_id": 1204 + }, + "minecraft:tadpole_bucket": { + "protocol_id": 917 + }, + "minecraft:tadpole_spawn_egg": { + "protocol_id": 1065 + }, + "minecraft:tall_grass": { + "protocol_id": 468 + }, + "minecraft:target": { + "protocol_id": 670 + }, + "minecraft:terracotta": { + "protocol_id": 461 + }, + "minecraft:tide_armor_trim_smithing_template": { + "protocol_id": 1265 + }, + "minecraft:tinted_glass": { + "protocol_id": 188 + }, + "minecraft:tipped_arrow": { + "protocol_id": 1153 + }, + "minecraft:tnt": { + "protocol_id": 678 + }, + "minecraft:tnt_minecart": { + "protocol_id": 768 + }, + "minecraft:torch": { + "protocol_id": 290 + }, + "minecraft:torchflower": { + "protocol_id": 230 + }, + "minecraft:torchflower_seeds": { + "protocol_id": 1145 + }, + "minecraft:totem_of_undying": { + "protocol_id": 1156 + }, + "minecraft:trader_llama_spawn_egg": { + "protocol_id": 1066 + }, + "minecraft:trapped_chest": { + "protocol_id": 677 + }, + "minecraft:trial_key": { + "protocol_id": 1311 + }, + "minecraft:trial_spawner": { + "protocol_id": 1310 + }, + "minecraft:trident": { + "protocol_id": 1178 + }, + "minecraft:tripwire_hook": { + "protocol_id": 676 + }, + "minecraft:tropical_fish": { + "protocol_id": 934 + }, + "minecraft:tropical_fish_bucket": { + "protocol_id": 915 + }, + "minecraft:tropical_fish_spawn_egg": { + "protocol_id": 1067 + }, + "minecraft:tube_coral": { + "protocol_id": 598 + }, + "minecraft:tube_coral_block": { + "protocol_id": 593 + }, + "minecraft:tube_coral_fan": { + "protocol_id": 608 + }, + "minecraft:tuff": { + "protocol_id": 12 + }, + "minecraft:tuff_brick_slab": { + "protocol_id": 22 + }, + "minecraft:tuff_brick_stairs": { + "protocol_id": 23 + }, + "minecraft:tuff_brick_wall": { + "protocol_id": 24 + }, + "minecraft:tuff_bricks": { + "protocol_id": 21 + }, + "minecraft:tuff_slab": { + "protocol_id": 13 + }, + "minecraft:tuff_stairs": { + "protocol_id": 14 + }, + "minecraft:tuff_wall": { + "protocol_id": 15 + }, + "minecraft:turtle_egg": { + "protocol_id": 586 + }, + "minecraft:turtle_helmet": { + "protocol_id": 793 + }, + "minecraft:turtle_spawn_egg": { + "protocol_id": 1068 + }, + "minecraft:twisting_vines": { + "protocol_id": 241 + }, + "minecraft:verdant_froglight": { + "protocol_id": 1252 + }, + "minecraft:vex_armor_trim_smithing_template": { + "protocol_id": 1264 + }, + "minecraft:vex_spawn_egg": { + "protocol_id": 1069 + }, + "minecraft:villager_spawn_egg": { + "protocol_id": 1070 + }, + "minecraft:vindicator_spawn_egg": { + "protocol_id": 1071 + }, + "minecraft:vine": { + "protocol_id": 358 + }, + "minecraft:wandering_trader_spawn_egg": { + "protocol_id": 1072 + }, + "minecraft:ward_armor_trim_smithing_template": { + "protocol_id": 1262 + }, + "minecraft:warden_spawn_egg": { + "protocol_id": 1073 + }, + "minecraft:warped_button": { + "protocol_id": 693 + }, + "minecraft:warped_door": { + "protocol_id": 720 + }, + "minecraft:warped_fence": { + "protocol_id": 320 + }, + "minecraft:warped_fence_gate": { + "protocol_id": 759 + }, + "minecraft:warped_fungus": { + "protocol_id": 236 + }, + "minecraft:warped_fungus_on_a_stick": { + "protocol_id": 771 + }, + "minecraft:warped_hanging_sign": { + "protocol_id": 904 + }, + "minecraft:warped_hyphae": { + "protocol_id": 174 + }, + "minecraft:warped_nylium": { + "protocol_id": 34 + }, + "minecraft:warped_planks": { + "protocol_id": 46 + }, + "minecraft:warped_pressure_plate": { + "protocol_id": 708 + }, + "minecraft:warped_roots": { + "protocol_id": 238 + }, + "minecraft:warped_sign": { + "protocol_id": 893 + }, + "minecraft:warped_slab": { + "protocol_id": 262 + }, + "minecraft:warped_stairs": { + "protocol_id": 393 + }, + "minecraft:warped_stem": { + "protocol_id": 142 + }, + "minecraft:warped_trapdoor": { + "protocol_id": 740 + }, + "minecraft:warped_wart_block": { + "protocol_id": 517 + }, + "minecraft:water_bucket": { + "protocol_id": 906 + }, + "minecraft:waxed_chiseled_copper": { + "protocol_id": 115 + }, + "minecraft:waxed_copper_block": { + "protocol_id": 111 + }, + "minecraft:waxed_copper_bulb": { + "protocol_id": 1306 + }, + "minecraft:waxed_copper_door": { + "protocol_id": 725 + }, + "minecraft:waxed_copper_grate": { + "protocol_id": 1298 + }, + "minecraft:waxed_copper_trapdoor": { + "protocol_id": 745 + }, + "minecraft:waxed_cut_copper": { + "protocol_id": 119 + }, + "minecraft:waxed_cut_copper_slab": { + "protocol_id": 127 + }, + "minecraft:waxed_cut_copper_stairs": { + "protocol_id": 123 + }, + "minecraft:waxed_exposed_chiseled_copper": { + "protocol_id": 116 + }, + "minecraft:waxed_exposed_copper": { + "protocol_id": 112 + }, + "minecraft:waxed_exposed_copper_bulb": { + "protocol_id": 1307 + }, + "minecraft:waxed_exposed_copper_door": { + "protocol_id": 726 + }, + "minecraft:waxed_exposed_copper_grate": { + "protocol_id": 1299 + }, + "minecraft:waxed_exposed_copper_trapdoor": { + "protocol_id": 746 + }, + "minecraft:waxed_exposed_cut_copper": { + "protocol_id": 120 + }, + "minecraft:waxed_exposed_cut_copper_slab": { + "protocol_id": 128 + }, + "minecraft:waxed_exposed_cut_copper_stairs": { + "protocol_id": 124 + }, + "minecraft:waxed_oxidized_chiseled_copper": { + "protocol_id": 118 + }, + "minecraft:waxed_oxidized_copper": { + "protocol_id": 114 + }, + "minecraft:waxed_oxidized_copper_bulb": { + "protocol_id": 1309 + }, + "minecraft:waxed_oxidized_copper_door": { + "protocol_id": 728 + }, + "minecraft:waxed_oxidized_copper_grate": { + "protocol_id": 1301 + }, + "minecraft:waxed_oxidized_copper_trapdoor": { + "protocol_id": 748 + }, + "minecraft:waxed_oxidized_cut_copper": { + "protocol_id": 122 + }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "protocol_id": 130 + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "protocol_id": 126 + }, + "minecraft:waxed_weathered_chiseled_copper": { + "protocol_id": 117 + }, + "minecraft:waxed_weathered_copper": { + "protocol_id": 113 + }, + "minecraft:waxed_weathered_copper_bulb": { + "protocol_id": 1308 + }, + "minecraft:waxed_weathered_copper_door": { + "protocol_id": 727 + }, + "minecraft:waxed_weathered_copper_grate": { + "protocol_id": 1300 + }, + "minecraft:waxed_weathered_copper_trapdoor": { + "protocol_id": 747 + }, + "minecraft:waxed_weathered_cut_copper": { + "protocol_id": 121 + }, + "minecraft:waxed_weathered_cut_copper_slab": { + "protocol_id": 129 + }, + "minecraft:waxed_weathered_cut_copper_stairs": { + "protocol_id": 125 + }, + "minecraft:wayfinder_armor_trim_smithing_template": { + "protocol_id": 1269 + }, + "minecraft:weathered_chiseled_copper": { + "protocol_id": 97 + }, + "minecraft:weathered_copper": { + "protocol_id": 93 + }, + "minecraft:weathered_copper_bulb": { + "protocol_id": 1304 + }, + "minecraft:weathered_copper_door": { + "protocol_id": 723 + }, + "minecraft:weathered_copper_grate": { + "protocol_id": 1296 + }, + "minecraft:weathered_copper_trapdoor": { + "protocol_id": 743 + }, + "minecraft:weathered_cut_copper": { + "protocol_id": 101 + }, + "minecraft:weathered_cut_copper_slab": { + "protocol_id": 109 + }, + "minecraft:weathered_cut_copper_stairs": { + "protocol_id": 105 + }, + "minecraft:weeping_vines": { + "protocol_id": 240 + }, + "minecraft:wet_sponge": { + "protocol_id": 186 + }, + "minecraft:wheat": { + "protocol_id": 851 + }, + "minecraft:wheat_seeds": { + "protocol_id": 850 + }, + "minecraft:white_banner": { + "protocol_id": 1126 + }, + "minecraft:white_bed": { + "protocol_id": 961 + }, + "minecraft:white_candle": { + "protocol_id": 1230 + }, + "minecraft:white_carpet": { + "protocol_id": 445 + }, + "minecraft:white_concrete": { + "protocol_id": 554 + }, + "minecraft:white_concrete_powder": { + "protocol_id": 570 + }, + "minecraft:white_dye": { + "protocol_id": 941 + }, + "minecraft:white_glazed_terracotta": { + "protocol_id": 538 + }, + "minecraft:white_shulker_box": { + "protocol_id": 522 + }, + "minecraft:white_stained_glass": { + "protocol_id": 470 + }, + "minecraft:white_stained_glass_pane": { + "protocol_id": 486 + }, + "minecraft:white_terracotta": { + "protocol_id": 426 + }, + "minecraft:white_tulip": { + "protocol_id": 224 + }, + "minecraft:white_wool": { + "protocol_id": 201 + }, + "minecraft:wild_armor_trim_smithing_template": { + "protocol_id": 1261 + }, + "minecraft:witch_spawn_egg": { + "protocol_id": 1074 + }, + "minecraft:wither_rose": { + "protocol_id": 229 + }, + "minecraft:wither_skeleton_skull": { + "protocol_id": 1097 + }, + "minecraft:wither_skeleton_spawn_egg": { + "protocol_id": 1076 + }, + "minecraft:wither_spawn_egg": { + "protocol_id": 1075 + }, + "minecraft:wolf_spawn_egg": { + "protocol_id": 1077 + }, + "minecraft:wooden_axe": { + "protocol_id": 817 + }, + "minecraft:wooden_hoe": { + "protocol_id": 818 + }, + "minecraft:wooden_pickaxe": { + "protocol_id": 816 + }, + "minecraft:wooden_shovel": { + "protocol_id": 815 + }, + "minecraft:wooden_sword": { + "protocol_id": 814 + }, + "minecraft:writable_book": { + "protocol_id": 1085 + }, + "minecraft:written_book": { + "protocol_id": 1086 + }, + "minecraft:yellow_banner": { + "protocol_id": 1130 + }, + "minecraft:yellow_bed": { + "protocol_id": 965 + }, + "minecraft:yellow_candle": { + "protocol_id": 1234 + }, + "minecraft:yellow_carpet": { + "protocol_id": 449 + }, + "minecraft:yellow_concrete": { + "protocol_id": 558 + }, + "minecraft:yellow_concrete_powder": { + "protocol_id": 574 + }, + "minecraft:yellow_dye": { + "protocol_id": 945 + }, + "minecraft:yellow_glazed_terracotta": { + "protocol_id": 542 + }, + "minecraft:yellow_shulker_box": { + "protocol_id": 526 + }, + "minecraft:yellow_stained_glass": { + "protocol_id": 474 + }, + "minecraft:yellow_stained_glass_pane": { + "protocol_id": 490 + }, + "minecraft:yellow_terracotta": { + "protocol_id": 430 + }, + "minecraft:yellow_wool": { + "protocol_id": 205 + }, + "minecraft:zoglin_spawn_egg": { + "protocol_id": 1078 + }, + "minecraft:zombie_head": { + "protocol_id": 1099 + }, + "minecraft:zombie_horse_spawn_egg": { + "protocol_id": 1080 + }, + "minecraft:zombie_spawn_egg": { + "protocol_id": 1079 + }, + "minecraft:zombie_villager_spawn_egg": { + "protocol_id": 1081 + }, + "minecraft:zombified_piglin_spawn_egg": { + "protocol_id": 1082 + } + }, + "protocol_id": 7 + }, + "minecraft:loot_condition_type": { + "entries": { + "minecraft:all_of": { + "protocol_id": 2 + }, + "minecraft:any_of": { + "protocol_id": 1 + }, + "minecraft:block_state_property": { + "protocol_id": 8 + }, + "minecraft:damage_source_properties": { + "protocol_id": 12 + }, + "minecraft:entity_properties": { + "protocol_id": 5 + }, + "minecraft:entity_scores": { + "protocol_id": 7 + }, + "minecraft:inverted": { + "protocol_id": 0 + }, + "minecraft:killed_by_player": { + "protocol_id": 6 + }, + "minecraft:location_check": { + "protocol_id": 13 + }, + "minecraft:match_tool": { + "protocol_id": 9 + }, + "minecraft:random_chance": { + "protocol_id": 3 + }, + "minecraft:random_chance_with_looting": { + "protocol_id": 4 + }, + "minecraft:reference": { + "protocol_id": 15 + }, + "minecraft:survives_explosion": { + "protocol_id": 11 + }, + "minecraft:table_bonus": { + "protocol_id": 10 + }, + "minecraft:time_check": { + "protocol_id": 16 + }, + "minecraft:value_check": { + "protocol_id": 17 + }, + "minecraft:weather_check": { + "protocol_id": 14 + } + }, + "protocol_id": 33 + }, + "minecraft:loot_function_type": { + "entries": { + "minecraft:apply_bonus": { + "protocol_id": 15 + }, + "minecraft:copy_name": { + "protocol_id": 12 + }, + "minecraft:copy_nbt": { + "protocol_id": 20 + }, + "minecraft:copy_state": { + "protocol_id": 21 + }, + "minecraft:enchant_randomly": { + "protocol_id": 2 + }, + "minecraft:enchant_with_levels": { + "protocol_id": 1 + }, + "minecraft:exploration_map": { + "protocol_id": 10 + }, + "minecraft:explosion_decay": { + "protocol_id": 17 + }, + "minecraft:fill_player_head": { + "protocol_id": 19 + }, + "minecraft:furnace_smelt": { + "protocol_id": 5 + }, + "minecraft:limit_count": { + "protocol_id": 14 + }, + "minecraft:looting_enchant": { + "protocol_id": 6 + }, + "minecraft:reference": { + "protocol_id": 25 + }, + "minecraft:sequence": { + "protocol_id": 26 + }, + "minecraft:set_attributes": { + "protocol_id": 8 + }, + "minecraft:set_banner_pattern": { + "protocol_id": 22 + }, + "minecraft:set_contents": { + "protocol_id": 13 + }, + "minecraft:set_count": { + "protocol_id": 0 + }, + "minecraft:set_damage": { + "protocol_id": 7 + }, + "minecraft:set_enchantments": { + "protocol_id": 3 + }, + "minecraft:set_instrument": { + "protocol_id": 24 + }, + "minecraft:set_loot_table": { + "protocol_id": 16 + }, + "minecraft:set_lore": { + "protocol_id": 18 + }, + "minecraft:set_name": { + "protocol_id": 9 + }, + "minecraft:set_nbt": { + "protocol_id": 4 + }, + "minecraft:set_potion": { + "protocol_id": 23 + }, + "minecraft:set_stew_effect": { + "protocol_id": 11 + } + }, + "protocol_id": 32 + }, + "minecraft:loot_nbt_provider_type": { + "entries": { + "minecraft:context": { + "protocol_id": 1 + }, + "minecraft:storage": { + "protocol_id": 0 + } + }, + "protocol_id": 35 + }, + "minecraft:loot_number_provider_type": { + "entries": { + "minecraft:binomial": { + "protocol_id": 2 + }, + "minecraft:constant": { + "protocol_id": 0 + }, + "minecraft:score": { + "protocol_id": 3 + }, + "minecraft:uniform": { + "protocol_id": 1 + } + }, + "protocol_id": 34 + }, + "minecraft:loot_pool_entry_type": { + "entries": { + "minecraft:alternatives": { + "protocol_id": 5 + }, + "minecraft:dynamic": { + "protocol_id": 3 + }, + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:group": { + "protocol_id": 7 + }, + "minecraft:item": { + "protocol_id": 1 + }, + "minecraft:loot_table": { + "protocol_id": 2 + }, + "minecraft:sequence": { + "protocol_id": 6 + }, + "minecraft:tag": { + "protocol_id": 4 + } + }, + "protocol_id": 31 + }, + "minecraft:loot_score_provider_type": { + "entries": { + "minecraft:context": { + "protocol_id": 1 + }, + "minecraft:fixed": { + "protocol_id": 0 + } + }, + "protocol_id": 36 + }, + "minecraft:memory_module_type": { + "default": "minecraft:dummy", + "entries": { + "minecraft:admiring_disabled": { + "protocol_id": 57 + }, + "minecraft:admiring_item": { + "protocol_id": 54 + }, + "minecraft:angry_at": { + "protocol_id": 52 + }, + "minecraft:ate_recently": { + "protocol_id": 72 + }, + "minecraft:attack_cooling_down": { + "protocol_id": 15 + }, + "minecraft:attack_target": { + "protocol_id": 14 + }, + "minecraft:avoid_target": { + "protocol_id": 25 + }, + "minecraft:breed_target": { + "protocol_id": 17 + }, + "minecraft:breeze_jump_cooldown": { + "protocol_id": 97 + }, + "minecraft:breeze_jump_inhaling": { + "protocol_id": 102 + }, + "minecraft:breeze_jump_target": { + "protocol_id": 103 + }, + "minecraft:breeze_shoot": { + "protocol_id": 98 + }, + "minecraft:breeze_shoot_charging": { + "protocol_id": 99 + }, + "minecraft:breeze_shoot_cooldown": { + "protocol_id": 101 + }, + "minecraft:breeze_shoot_recover": { + "protocol_id": 100 + }, + "minecraft:cant_reach_walk_target_since": { + "protocol_id": 30 + }, + "minecraft:celebrate_location": { + "protocol_id": 59 + }, + "minecraft:dancing": { + "protocol_id": 60 + }, + "minecraft:dig_cooldown": { + "protocol_id": 81 + }, + "minecraft:disable_walk_to_admire_item": { + "protocol_id": 56 + }, + "minecraft:disturbance_location": { + "protocol_id": 76 + }, + "minecraft:doors_to_close": { + "protocol_id": 21 + }, + "minecraft:dummy": { + "protocol_id": 0 + }, + "minecraft:gaze_cooldown_ticks": { + "protocol_id": 41 + }, + "minecraft:golem_detected_recently": { + "protocol_id": 31 + }, + "minecraft:has_hunting_cooldown": { + "protocol_id": 45 + }, + "minecraft:heard_bell_time": { + "protocol_id": 29 + }, + "minecraft:hiding_place": { + "protocol_id": 28 + }, + "minecraft:home": { + "protocol_id": 1 + }, + "minecraft:hunted_recently": { + "protocol_id": 58 + }, + "minecraft:hurt_by": { + "protocol_id": 23 + }, + "minecraft:hurt_by_entity": { + "protocol_id": 24 + }, + "minecraft:interactable_doors": { + "protocol_id": 20 + }, + "minecraft:interaction_target": { + "protocol_id": 16 + }, + "minecraft:is_emerging": { + "protocol_id": 79 + }, + "minecraft:is_in_water": { + "protocol_id": 48 + }, + "minecraft:is_panicking": { + "protocol_id": 50 + }, + "minecraft:is_pregnant": { + "protocol_id": 49 + }, + "minecraft:is_sniffing": { + "protocol_id": 78 + }, + "minecraft:is_tempted": { + "protocol_id": 42 + }, + "minecraft:item_pickup_cooldown_ticks": { + "protocol_id": 92 + }, + "minecraft:job_site": { + "protocol_id": 2 + }, + "minecraft:last_slept": { + "protocol_id": 32 + }, + "minecraft:last_woken": { + "protocol_id": 33 + }, + "minecraft:last_worked_at_poi": { + "protocol_id": 34 + }, + "minecraft:liked_noteblock": { + "protocol_id": 90 + }, + "minecraft:liked_noteblock_cooldown_ticks": { + "protocol_id": 91 + }, + "minecraft:liked_player": { + "protocol_id": 89 + }, + "minecraft:long_jump_cooling_down": { + "protocol_id": 43 + }, + "minecraft:long_jump_mid_jump": { + "protocol_id": 44 + }, + "minecraft:look_target": { + "protocol_id": 13 + }, + "minecraft:meeting_point": { + "protocol_id": 4 + }, + "minecraft:mobs": { + "protocol_id": 6 + }, + "minecraft:nearby_adult_piglins": { + "protocol_id": 64 + }, + "minecraft:nearest_attackable": { + "protocol_id": 27 + }, + "minecraft:nearest_bed": { + "protocol_id": 22 + }, + "minecraft:nearest_hostile": { + "protocol_id": 26 + }, + "minecraft:nearest_player_holding_wanted_item": { + "protocol_id": 71 + }, + "minecraft:nearest_players": { + "protocol_id": 9 + }, + "minecraft:nearest_repellent": { + "protocol_id": 73 + }, + "minecraft:nearest_targetable_player_not_wearing_gold": { + "protocol_id": 63 + }, + "minecraft:nearest_visible_adult": { + "protocol_id": 35 + }, + "minecraft:nearest_visible_adult_hoglins": { + "protocol_id": 66 + }, + "minecraft:nearest_visible_adult_piglin": { + "protocol_id": 67 + }, + "minecraft:nearest_visible_adult_piglins": { + "protocol_id": 65 + }, + "minecraft:nearest_visible_baby_hoglin": { + "protocol_id": 62 + }, + "minecraft:nearest_visible_huntable_hoglin": { + "protocol_id": 61 + }, + "minecraft:nearest_visible_nemesis": { + "protocol_id": 37 + }, + "minecraft:nearest_visible_player": { + "protocol_id": 10 + }, + "minecraft:nearest_visible_targetable_player": { + "protocol_id": 11 + }, + "minecraft:nearest_visible_wanted_item": { + "protocol_id": 36 + }, + "minecraft:nearest_visible_zombified": { + "protocol_id": 68 + }, + "minecraft:pacified": { + "protocol_id": 74 + }, + "minecraft:path": { + "protocol_id": 19 + }, + "minecraft:play_dead_ticks": { + "protocol_id": 38 + }, + "minecraft:potential_job_site": { + "protocol_id": 3 + }, + "minecraft:ram_cooldown_ticks": { + "protocol_id": 46 + }, + "minecraft:ram_target": { + "protocol_id": 47 + }, + "minecraft:recent_projectile": { + "protocol_id": 77 + }, + "minecraft:ride_target": { + "protocol_id": 18 + }, + "minecraft:roar_sound_cooldown": { + "protocol_id": 82 + }, + "minecraft:roar_sound_delay": { + "protocol_id": 80 + }, + "minecraft:roar_target": { + "protocol_id": 75 + }, + "minecraft:secondary_job_site": { + "protocol_id": 5 + }, + "minecraft:sniff_cooldown": { + "protocol_id": 83 + }, + "minecraft:sniffer_digging": { + "protocol_id": 95 + }, + "minecraft:sniffer_explored_positions": { + "protocol_id": 93 + }, + "minecraft:sniffer_happy": { + "protocol_id": 96 + }, + "minecraft:sniffer_sniffing_target": { + "protocol_id": 94 + }, + "minecraft:sonic_boom_cooldown": { + "protocol_id": 86 + }, + "minecraft:sonic_boom_sound_cooldown": { + "protocol_id": 87 + }, + "minecraft:sonic_boom_sound_delay": { + "protocol_id": 88 + }, + "minecraft:temptation_cooldown_ticks": { + "protocol_id": 40 + }, + "minecraft:tempting_player": { + "protocol_id": 39 + }, + "minecraft:time_trying_to_reach_admire_item": { + "protocol_id": 55 + }, + "minecraft:touch_cooldown": { + "protocol_id": 84 + }, + "minecraft:universal_anger": { + "protocol_id": 53 + }, + "minecraft:unreachable_tongue_targets": { + "protocol_id": 51 + }, + "minecraft:vibration_cooldown": { + "protocol_id": 85 + }, + "minecraft:visible_adult_hoglin_count": { + "protocol_id": 70 + }, + "minecraft:visible_adult_piglin_count": { + "protocol_id": 69 + }, + "minecraft:visible_mobs": { + "protocol_id": 7 + }, + "minecraft:visible_villager_babies": { + "protocol_id": 8 + }, + "minecraft:walk_target": { + "protocol_id": 12 + } + }, + "protocol_id": 27 + }, + "minecraft:menu": { + "entries": { + "minecraft:anvil": { + "protocol_id": 8 + }, + "minecraft:beacon": { + "protocol_id": 9 + }, + "minecraft:blast_furnace": { + "protocol_id": 10 + }, + "minecraft:brewing_stand": { + "protocol_id": 11 + }, + "minecraft:cartography_table": { + "protocol_id": 23 + }, + "minecraft:crafter_3x3": { + "protocol_id": 7 + }, + "minecraft:crafting": { + "protocol_id": 12 + }, + "minecraft:enchantment": { + "protocol_id": 13 + }, + "minecraft:furnace": { + "protocol_id": 14 + }, + "minecraft:generic_3x3": { + "protocol_id": 6 + }, + "minecraft:generic_9x1": { + "protocol_id": 0 + }, + "minecraft:generic_9x2": { + "protocol_id": 1 + }, + "minecraft:generic_9x3": { + "protocol_id": 2 + }, + "minecraft:generic_9x4": { + "protocol_id": 3 + }, + "minecraft:generic_9x5": { + "protocol_id": 4 + }, + "minecraft:generic_9x6": { + "protocol_id": 5 + }, + "minecraft:grindstone": { + "protocol_id": 15 + }, + "minecraft:hopper": { + "protocol_id": 16 + }, + "minecraft:lectern": { + "protocol_id": 17 + }, + "minecraft:loom": { + "protocol_id": 18 + }, + "minecraft:merchant": { + "protocol_id": 19 + }, + "minecraft:shulker_box": { + "protocol_id": 20 + }, + "minecraft:smithing": { + "protocol_id": 21 + }, + "minecraft:smoker": { + "protocol_id": 22 + }, + "minecraft:stonecutter": { + "protocol_id": 24 + } + }, + "protocol_id": 17 + }, + "minecraft:mob_effect": { + "entries": { + "minecraft:absorption": { + "protocol_id": 21 + }, + "minecraft:bad_omen": { + "protocol_id": 30 + }, + "minecraft:blindness": { + "protocol_id": 14 + }, + "minecraft:conduit_power": { + "protocol_id": 28 + }, + "minecraft:darkness": { + "protocol_id": 32 + }, + "minecraft:dolphins_grace": { + "protocol_id": 29 + }, + "minecraft:fire_resistance": { + "protocol_id": 11 + }, + "minecraft:glowing": { + "protocol_id": 23 + }, + "minecraft:haste": { + "protocol_id": 2 + }, + "minecraft:health_boost": { + "protocol_id": 20 + }, + "minecraft:hero_of_the_village": { + "protocol_id": 31 + }, + "minecraft:hunger": { + "protocol_id": 16 + }, + "minecraft:instant_damage": { + "protocol_id": 6 + }, + "minecraft:instant_health": { + "protocol_id": 5 + }, + "minecraft:invisibility": { + "protocol_id": 13 + }, + "minecraft:jump_boost": { + "protocol_id": 7 + }, + "minecraft:levitation": { + "protocol_id": 24 + }, + "minecraft:luck": { + "protocol_id": 25 + }, + "minecraft:mining_fatigue": { + "protocol_id": 3 + }, + "minecraft:nausea": { + "protocol_id": 8 + }, + "minecraft:night_vision": { + "protocol_id": 15 + }, + "minecraft:poison": { + "protocol_id": 18 + }, + "minecraft:regeneration": { + "protocol_id": 9 + }, + "minecraft:resistance": { + "protocol_id": 10 + }, + "minecraft:saturation": { + "protocol_id": 22 + }, + "minecraft:slow_falling": { + "protocol_id": 27 + }, + "minecraft:slowness": { + "protocol_id": 1 + }, + "minecraft:speed": { + "protocol_id": 0 + }, + "minecraft:strength": { + "protocol_id": 4 + }, + "minecraft:unluck": { + "protocol_id": 26 + }, + "minecraft:water_breathing": { + "protocol_id": 12 + }, + "minecraft:weakness": { + "protocol_id": 17 + }, + "minecraft:wither": { + "protocol_id": 19 + } + }, + "protocol_id": 3 + }, + "minecraft:number_format_type": { + "entries": { + "minecraft:blank": { + "protocol_id": 0 + }, + "minecraft:fixed": { + "protocol_id": 2 + }, + "minecraft:styled": { + "protocol_id": 1 + } + }, + "protocol_id": 69 + }, + "minecraft:painting_variant": { + "default": "minecraft:kebab", + "entries": { + "minecraft:alban": { + "protocol_id": 2 + }, + "minecraft:aztec": { + "protocol_id": 1 + }, + "minecraft:aztec2": { + "protocol_id": 3 + }, + "minecraft:bomb": { + "protocol_id": 4 + }, + "minecraft:burning_skull": { + "protocol_id": 23 + }, + "minecraft:bust": { + "protocol_id": 15 + }, + "minecraft:courbet": { + "protocol_id": 8 + }, + "minecraft:creebet": { + "protocol_id": 11 + }, + "minecraft:donkey_kong": { + "protocol_id": 29 + }, + "minecraft:earth": { + "protocol_id": 25 + }, + "minecraft:fighters": { + "protocol_id": 20 + }, + "minecraft:fire": { + "protocol_id": 28 + }, + "minecraft:graham": { + "protocol_id": 13 + }, + "minecraft:kebab": { + "protocol_id": 0 + }, + "minecraft:match": { + "protocol_id": 14 + }, + "minecraft:pigscene": { + "protocol_id": 22 + }, + "minecraft:plant": { + "protocol_id": 5 + }, + "minecraft:pointer": { + "protocol_id": 21 + }, + "minecraft:pool": { + "protocol_id": 7 + }, + "minecraft:sea": { + "protocol_id": 9 + }, + "minecraft:skeleton": { + "protocol_id": 24 + }, + "minecraft:skull_and_roses": { + "protocol_id": 18 + }, + "minecraft:stage": { + "protocol_id": 16 + }, + "minecraft:sunset": { + "protocol_id": 10 + }, + "minecraft:void": { + "protocol_id": 17 + }, + "minecraft:wanderer": { + "protocol_id": 12 + }, + "minecraft:wasteland": { + "protocol_id": 6 + }, + "minecraft:water": { + "protocol_id": 27 + }, + "minecraft:wind": { + "protocol_id": 26 + }, + "minecraft:wither": { + "protocol_id": 19 + } + }, + "protocol_id": 11 + }, + "minecraft:particle_type": { + "entries": { + "minecraft:ambient_entity_effect": { + "protocol_id": 0 + }, + "minecraft:angry_villager": { + "protocol_id": 1 + }, + "minecraft:ash": { + "protocol_id": 75 + }, + "minecraft:block": { + "protocol_id": 2 + }, + "minecraft:block_marker": { + "protocol_id": 3 + }, + "minecraft:bubble": { + "protocol_id": 4 + }, + "minecraft:bubble_column_up": { + "protocol_id": 65 + }, + "minecraft:bubble_pop": { + "protocol_id": 63 + }, + "minecraft:campfire_cosy_smoke": { + "protocol_id": 68 + }, + "minecraft:campfire_signal_smoke": { + "protocol_id": 69 + }, + "minecraft:cherry_leaves": { + "protocol_id": 31 + }, + "minecraft:cloud": { + "protocol_id": 5 + }, + "minecraft:composter": { + "protocol_id": 39 + }, + "minecraft:crimson_spore": { + "protocol_id": 76 + }, + "minecraft:crit": { + "protocol_id": 6 + }, + "minecraft:current_down": { + "protocol_id": 64 + }, + "minecraft:damage_indicator": { + "protocol_id": 7 + }, + "minecraft:dolphin": { + "protocol_id": 67 + }, + "minecraft:dragon_breath": { + "protocol_id": 8 + }, + "minecraft:dripping_dripstone_lava": { + "protocol_id": 86 + }, + "minecraft:dripping_dripstone_water": { + "protocol_id": 88 + }, + "minecraft:dripping_honey": { + "protocol_id": 70 + }, + "minecraft:dripping_lava": { + "protocol_id": 9 + }, + "minecraft:dripping_obsidian_tear": { + "protocol_id": 79 + }, + "minecraft:dripping_water": { + "protocol_id": 12 + }, + "minecraft:dust": { + "protocol_id": 14 + }, + "minecraft:dust_color_transition": { + "protocol_id": 15 + }, + "minecraft:dust_plume": { + "protocol_id": 98 + }, + "minecraft:effect": { + "protocol_id": 16 + }, + "minecraft:egg_crack": { + "protocol_id": 97 + }, + "minecraft:elder_guardian": { + "protocol_id": 17 + }, + "minecraft:electric_spark": { + "protocol_id": 94 + }, + "minecraft:enchant": { + "protocol_id": 19 + }, + "minecraft:enchanted_hit": { + "protocol_id": 18 + }, + "minecraft:end_rod": { + "protocol_id": 20 + }, + "minecraft:entity_effect": { + "protocol_id": 21 + }, + "minecraft:explosion": { + "protocol_id": 23 + }, + "minecraft:explosion_emitter": { + "protocol_id": 22 + }, + "minecraft:falling_dripstone_lava": { + "protocol_id": 87 + }, + "minecraft:falling_dripstone_water": { + "protocol_id": 89 + }, + "minecraft:falling_dust": { + "protocol_id": 27 + }, + "minecraft:falling_honey": { + "protocol_id": 71 + }, + "minecraft:falling_lava": { + "protocol_id": 10 + }, + "minecraft:falling_nectar": { + "protocol_id": 73 + }, + "minecraft:falling_obsidian_tear": { + "protocol_id": 80 + }, + "minecraft:falling_spore_blossom": { + "protocol_id": 74 + }, + "minecraft:falling_water": { + "protocol_id": 13 + }, + "minecraft:firework": { + "protocol_id": 28 + }, + "minecraft:fishing": { + "protocol_id": 29 + }, + "minecraft:flame": { + "protocol_id": 30 + }, + "minecraft:flash": { + "protocol_id": 37 + }, + "minecraft:glow": { + "protocol_id": 91 + }, + "minecraft:glow_squid_ink": { + "protocol_id": 90 + }, + "minecraft:gust": { + "protocol_id": 24 + }, + "minecraft:gust_dust": { + "protocol_id": 99 + }, + "minecraft:gust_emitter": { + "protocol_id": 25 + }, + "minecraft:happy_villager": { + "protocol_id": 38 + }, + "minecraft:heart": { + "protocol_id": 40 + }, + "minecraft:instant_effect": { + "protocol_id": 41 + }, + "minecraft:item": { + "protocol_id": 42 + }, + "minecraft:item_slime": { + "protocol_id": 44 + }, + "minecraft:item_snowball": { + "protocol_id": 45 + }, + "minecraft:landing_honey": { + "protocol_id": 72 + }, + "minecraft:landing_lava": { + "protocol_id": 11 + }, + "minecraft:landing_obsidian_tear": { + "protocol_id": 81 + }, + "minecraft:large_smoke": { + "protocol_id": 46 + }, + "minecraft:lava": { + "protocol_id": 47 + }, + "minecraft:mycelium": { + "protocol_id": 48 + }, + "minecraft:nautilus": { + "protocol_id": 66 + }, + "minecraft:note": { + "protocol_id": 49 + }, + "minecraft:poof": { + "protocol_id": 50 + }, + "minecraft:portal": { + "protocol_id": 51 + }, + "minecraft:rain": { + "protocol_id": 52 + }, + "minecraft:reverse_portal": { + "protocol_id": 82 + }, + "minecraft:scrape": { + "protocol_id": 95 + }, + "minecraft:sculk_charge": { + "protocol_id": 33 + }, + "minecraft:sculk_charge_pop": { + "protocol_id": 34 + }, + "minecraft:sculk_soul": { + "protocol_id": 32 + }, + "minecraft:shriek": { + "protocol_id": 96 + }, + "minecraft:small_flame": { + "protocol_id": 84 + }, + "minecraft:smoke": { + "protocol_id": 53 + }, + "minecraft:sneeze": { + "protocol_id": 55 + }, + "minecraft:snowflake": { + "protocol_id": 85 + }, + "minecraft:sonic_boom": { + "protocol_id": 26 + }, + "minecraft:soul": { + "protocol_id": 36 + }, + "minecraft:soul_fire_flame": { + "protocol_id": 35 + }, + "minecraft:spit": { + "protocol_id": 56 + }, + "minecraft:splash": { + "protocol_id": 61 + }, + "minecraft:spore_blossom_air": { + "protocol_id": 78 + }, + "minecraft:squid_ink": { + "protocol_id": 57 + }, + "minecraft:sweep_attack": { + "protocol_id": 58 + }, + "minecraft:totem_of_undying": { + "protocol_id": 59 + }, + "minecraft:trial_spawner_detection": { + "protocol_id": 100 + }, + "minecraft:underwater": { + "protocol_id": 60 + }, + "minecraft:vibration": { + "protocol_id": 43 + }, + "minecraft:warped_spore": { + "protocol_id": 77 + }, + "minecraft:wax_off": { + "protocol_id": 93 + }, + "minecraft:wax_on": { + "protocol_id": 92 + }, + "minecraft:white_ash": { + "protocol_id": 83 + }, + "minecraft:white_smoke": { + "protocol_id": 54 + }, + "minecraft:witch": { + "protocol_id": 62 + } + }, + "protocol_id": 9 + }, + "minecraft:point_of_interest_type": { + "entries": { + "minecraft:armorer": { + "protocol_id": 0 + }, + "minecraft:bee_nest": { + "protocol_id": 16 + }, + "minecraft:beehive": { + "protocol_id": 15 + }, + "minecraft:butcher": { + "protocol_id": 1 + }, + "minecraft:cartographer": { + "protocol_id": 2 + }, + "minecraft:cleric": { + "protocol_id": 3 + }, + "minecraft:farmer": { + "protocol_id": 4 + }, + "minecraft:fisherman": { + "protocol_id": 5 + }, + "minecraft:fletcher": { + "protocol_id": 6 + }, + "minecraft:home": { + "protocol_id": 13 + }, + "minecraft:leatherworker": { + "protocol_id": 7 + }, + "minecraft:librarian": { + "protocol_id": 8 + }, + "minecraft:lightning_rod": { + "protocol_id": 19 + }, + "minecraft:lodestone": { + "protocol_id": 18 + }, + "minecraft:mason": { + "protocol_id": 9 + }, + "minecraft:meeting": { + "protocol_id": 14 + }, + "minecraft:nether_portal": { + "protocol_id": 17 + }, + "minecraft:shepherd": { + "protocol_id": 10 + }, + "minecraft:toolsmith": { + "protocol_id": 11 + }, + "minecraft:weaponsmith": { + "protocol_id": 12 + } + }, + "protocol_id": 26 + }, + "minecraft:pos_rule_test": { + "entries": { + "minecraft:always_true": { + "protocol_id": 0 + }, + "minecraft:axis_aligned_linear_pos": { + "protocol_id": 2 + }, + "minecraft:linear_pos": { + "protocol_id": 1 + } + }, + "protocol_id": 16 + }, + "minecraft:position_source_type": { + "entries": { + "minecraft:block": { + "protocol_id": 0 + }, + "minecraft:entity": { + "protocol_id": 1 + } + }, + "protocol_id": 21 + }, + "minecraft:potion": { + "default": "minecraft:empty", + "entries": { + "minecraft:awkward": { + "protocol_id": 4 + }, + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:fire_resistance": { + "protocol_id": 12 + }, + "minecraft:harming": { + "protocol_id": 27 + }, + "minecraft:healing": { + "protocol_id": 25 + }, + "minecraft:invisibility": { + "protocol_id": 7 + }, + "minecraft:leaping": { + "protocol_id": 9 + }, + "minecraft:long_fire_resistance": { + "protocol_id": 13 + }, + "minecraft:long_invisibility": { + "protocol_id": 8 + }, + "minecraft:long_leaping": { + "protocol_id": 10 + }, + "minecraft:long_night_vision": { + "protocol_id": 6 + }, + "minecraft:long_poison": { + "protocol_id": 30 + }, + "minecraft:long_regeneration": { + "protocol_id": 33 + }, + "minecraft:long_slow_falling": { + "protocol_id": 42 + }, + "minecraft:long_slowness": { + "protocol_id": 18 + }, + "minecraft:long_strength": { + "protocol_id": 36 + }, + "minecraft:long_swiftness": { + "protocol_id": 15 + }, + "minecraft:long_turtle_master": { + "protocol_id": 21 + }, + "minecraft:long_water_breathing": { + "protocol_id": 24 + }, + "minecraft:long_weakness": { + "protocol_id": 39 + }, + "minecraft:luck": { + "protocol_id": 40 + }, + "minecraft:mundane": { + "protocol_id": 2 + }, + "minecraft:night_vision": { + "protocol_id": 5 + }, + "minecraft:poison": { + "protocol_id": 29 + }, + "minecraft:regeneration": { + "protocol_id": 32 + }, + "minecraft:slow_falling": { + "protocol_id": 41 + }, + "minecraft:slowness": { + "protocol_id": 17 + }, + "minecraft:strength": { + "protocol_id": 35 + }, + "minecraft:strong_harming": { + "protocol_id": 28 + }, + "minecraft:strong_healing": { + "protocol_id": 26 + }, + "minecraft:strong_leaping": { + "protocol_id": 11 + }, + "minecraft:strong_poison": { + "protocol_id": 31 + }, + "minecraft:strong_regeneration": { + "protocol_id": 34 + }, + "minecraft:strong_slowness": { + "protocol_id": 19 + }, + "minecraft:strong_strength": { + "protocol_id": 37 + }, + "minecraft:strong_swiftness": { + "protocol_id": 16 + }, + "minecraft:strong_turtle_master": { + "protocol_id": 22 + }, + "minecraft:swiftness": { + "protocol_id": 14 + }, + "minecraft:thick": { + "protocol_id": 3 + }, + "minecraft:turtle_master": { + "protocol_id": 20 + }, + "minecraft:water": { + "protocol_id": 1 + }, + "minecraft:water_breathing": { + "protocol_id": 23 + }, + "minecraft:weakness": { + "protocol_id": 38 + } + }, + "protocol_id": 8 + }, + "minecraft:recipe_serializer": { + "entries": { + "minecraft:blasting": { + "protocol_id": 16 + }, + "minecraft:campfire_cooking": { + "protocol_id": 18 + }, + "minecraft:crafting_decorated_pot": { + "protocol_id": 22 + }, + "minecraft:crafting_shaped": { + "protocol_id": 0 + }, + "minecraft:crafting_shapeless": { + "protocol_id": 1 + }, + "minecraft:crafting_special_armordye": { + "protocol_id": 2 + }, + "minecraft:crafting_special_bannerduplicate": { + "protocol_id": 10 + }, + "minecraft:crafting_special_bookcloning": { + "protocol_id": 3 + }, + "minecraft:crafting_special_firework_rocket": { + "protocol_id": 6 + }, + "minecraft:crafting_special_firework_star": { + "protocol_id": 7 + }, + "minecraft:crafting_special_firework_star_fade": { + "protocol_id": 8 + }, + "minecraft:crafting_special_mapcloning": { + "protocol_id": 4 + }, + "minecraft:crafting_special_mapextending": { + "protocol_id": 5 + }, + "minecraft:crafting_special_repairitem": { + "protocol_id": 14 + }, + "minecraft:crafting_special_shielddecoration": { + "protocol_id": 11 + }, + "minecraft:crafting_special_shulkerboxcoloring": { + "protocol_id": 12 + }, + "minecraft:crafting_special_suspiciousstew": { + "protocol_id": 13 + }, + "minecraft:crafting_special_tippedarrow": { + "protocol_id": 9 + }, + "minecraft:smelting": { + "protocol_id": 15 + }, + "minecraft:smithing_transform": { + "protocol_id": 20 + }, + "minecraft:smithing_trim": { + "protocol_id": 21 + }, + "minecraft:smoking": { + "protocol_id": 17 + }, + "minecraft:stonecutting": { + "protocol_id": 19 + } + }, + "protocol_id": 19 + }, + "minecraft:recipe_type": { + "entries": { + "minecraft:blasting": { + "protocol_id": 2 + }, + "minecraft:campfire_cooking": { + "protocol_id": 4 + }, + "minecraft:crafting": { + "protocol_id": 0 + }, + "minecraft:smelting": { + "protocol_id": 1 + }, + "minecraft:smithing": { + "protocol_id": 6 + }, + "minecraft:smoking": { + "protocol_id": 3 + }, + "minecraft:stonecutting": { + "protocol_id": 5 + } + }, + "protocol_id": 18 + }, + "minecraft:rule_block_entity_modifier": { + "entries": { + "minecraft:append_loot": { + "protocol_id": 3 + }, + "minecraft:append_static": { + "protocol_id": 2 + }, + "minecraft:clear": { + "protocol_id": 0 + }, + "minecraft:passthrough": { + "protocol_id": 1 + } + }, + "protocol_id": 15 + }, + "minecraft:rule_test": { + "entries": { + "minecraft:always_true": { + "protocol_id": 0 + }, + "minecraft:block_match": { + "protocol_id": 1 + }, + "minecraft:blockstate_match": { + "protocol_id": 2 + }, + "minecraft:random_block_match": { + "protocol_id": 4 + }, + "minecraft:random_blockstate_match": { + "protocol_id": 5 + }, + "minecraft:tag_match": { + "protocol_id": 3 + } + }, + "protocol_id": 14 + }, + "minecraft:schedule": { + "entries": { + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:simple": { + "protocol_id": 1 + }, + "minecraft:villager_baby": { + "protocol_id": 2 + }, + "minecraft:villager_default": { + "protocol_id": 3 + } + }, + "protocol_id": 29 + }, + "minecraft:sensor_type": { + "default": "minecraft:dummy", + "entries": { + "minecraft:axolotl_attackables": { + "protocol_id": 14 + }, + "minecraft:axolotl_temptations": { + "protocol_id": 15 + }, + "minecraft:breeze_attack_entity_sensor": { + "protocol_id": 23 + }, + "minecraft:camel_temptations": { + "protocol_id": 18 + }, + "minecraft:dummy": { + "protocol_id": 0 + }, + "minecraft:frog_attackables": { + "protocol_id": 19 + }, + "minecraft:frog_temptations": { + "protocol_id": 17 + }, + "minecraft:goat_temptations": { + "protocol_id": 16 + }, + "minecraft:golem_detected": { + "protocol_id": 9 + }, + "minecraft:hoglin_specific_sensor": { + "protocol_id": 12 + }, + "minecraft:hurt_by": { + "protocol_id": 5 + }, + "minecraft:is_in_water": { + "protocol_id": 20 + }, + "minecraft:nearest_adult": { + "protocol_id": 13 + }, + "minecraft:nearest_bed": { + "protocol_id": 4 + }, + "minecraft:nearest_items": { + "protocol_id": 1 + }, + "minecraft:nearest_living_entities": { + "protocol_id": 2 + }, + "minecraft:nearest_players": { + "protocol_id": 3 + }, + "minecraft:piglin_brute_specific_sensor": { + "protocol_id": 11 + }, + "minecraft:piglin_specific_sensor": { + "protocol_id": 10 + }, + "minecraft:secondary_pois": { + "protocol_id": 8 + }, + "minecraft:sniffer_temptations": { + "protocol_id": 22 + }, + "minecraft:villager_babies": { + "protocol_id": 7 + }, + "minecraft:villager_hostiles": { + "protocol_id": 6 + }, + "minecraft:warden_entity_sensor": { + "protocol_id": 21 + } + }, + "protocol_id": 28 + }, + "minecraft:sound_event": { + "entries": { + "minecraft:ambient.basalt_deltas.additions": { + "protocol_id": 8 + }, + "minecraft:ambient.basalt_deltas.loop": { + "protocol_id": 9 + }, + "minecraft:ambient.basalt_deltas.mood": { + "protocol_id": 10 + }, + "minecraft:ambient.cave": { + "protocol_id": 7 + }, + "minecraft:ambient.crimson_forest.additions": { + "protocol_id": 11 + }, + "minecraft:ambient.crimson_forest.loop": { + "protocol_id": 12 + }, + "minecraft:ambient.crimson_forest.mood": { + "protocol_id": 13 + }, + "minecraft:ambient.nether_wastes.additions": { + "protocol_id": 14 + }, + "minecraft:ambient.nether_wastes.loop": { + "protocol_id": 15 + }, + "minecraft:ambient.nether_wastes.mood": { + "protocol_id": 16 + }, + "minecraft:ambient.soul_sand_valley.additions": { + "protocol_id": 17 + }, + "minecraft:ambient.soul_sand_valley.loop": { + "protocol_id": 18 + }, + "minecraft:ambient.soul_sand_valley.mood": { + "protocol_id": 19 + }, + "minecraft:ambient.underwater.enter": { + "protocol_id": 23 + }, + "minecraft:ambient.underwater.exit": { + "protocol_id": 24 + }, + "minecraft:ambient.underwater.loop": { + "protocol_id": 25 + }, + "minecraft:ambient.underwater.loop.additions": { + "protocol_id": 26 + }, + "minecraft:ambient.underwater.loop.additions.rare": { + "protocol_id": 27 + }, + "minecraft:ambient.underwater.loop.additions.ultra_rare": { + "protocol_id": 28 + }, + "minecraft:ambient.warped_forest.additions": { + "protocol_id": 20 + }, + "minecraft:ambient.warped_forest.loop": { + "protocol_id": 21 + }, + "minecraft:ambient.warped_forest.mood": { + "protocol_id": 22 + }, + "minecraft:block.amethyst_block.break": { + "protocol_id": 29 + }, + "minecraft:block.amethyst_block.chime": { + "protocol_id": 30 + }, + "minecraft:block.amethyst_block.fall": { + "protocol_id": 31 + }, + "minecraft:block.amethyst_block.hit": { + "protocol_id": 32 + }, + "minecraft:block.amethyst_block.place": { + "protocol_id": 33 + }, + "minecraft:block.amethyst_block.resonate": { + "protocol_id": 34 + }, + "minecraft:block.amethyst_block.step": { + "protocol_id": 35 + }, + "minecraft:block.amethyst_cluster.break": { + "protocol_id": 36 + }, + "minecraft:block.amethyst_cluster.fall": { + "protocol_id": 37 + }, + "minecraft:block.amethyst_cluster.hit": { + "protocol_id": 38 + }, + "minecraft:block.amethyst_cluster.place": { + "protocol_id": 39 + }, + "minecraft:block.amethyst_cluster.step": { + "protocol_id": 40 + }, + "minecraft:block.ancient_debris.break": { + "protocol_id": 41 + }, + "minecraft:block.ancient_debris.fall": { + "protocol_id": 45 + }, + "minecraft:block.ancient_debris.hit": { + "protocol_id": 44 + }, + "minecraft:block.ancient_debris.place": { + "protocol_id": 43 + }, + "minecraft:block.ancient_debris.step": { + "protocol_id": 42 + }, + "minecraft:block.anvil.break": { + "protocol_id": 46 + }, + "minecraft:block.anvil.destroy": { + "protocol_id": 47 + }, + "minecraft:block.anvil.fall": { + "protocol_id": 48 + }, + "minecraft:block.anvil.hit": { + "protocol_id": 49 + }, + "minecraft:block.anvil.land": { + "protocol_id": 50 + }, + "minecraft:block.anvil.place": { + "protocol_id": 51 + }, + "minecraft:block.anvil.step": { + "protocol_id": 52 + }, + "minecraft:block.anvil.use": { + "protocol_id": 53 + }, + "minecraft:block.azalea.break": { + "protocol_id": 80 + }, + "minecraft:block.azalea.fall": { + "protocol_id": 81 + }, + "minecraft:block.azalea.hit": { + "protocol_id": 82 + }, + "minecraft:block.azalea.place": { + "protocol_id": 83 + }, + "minecraft:block.azalea.step": { + "protocol_id": 84 + }, + "minecraft:block.azalea_leaves.break": { + "protocol_id": 85 + }, + "minecraft:block.azalea_leaves.fall": { + "protocol_id": 86 + }, + "minecraft:block.azalea_leaves.hit": { + "protocol_id": 87 + }, + "minecraft:block.azalea_leaves.place": { + "protocol_id": 88 + }, + "minecraft:block.azalea_leaves.step": { + "protocol_id": 89 + }, + "minecraft:block.bamboo.break": { + "protocol_id": 90 + }, + "minecraft:block.bamboo.fall": { + "protocol_id": 91 + }, + "minecraft:block.bamboo.hit": { + "protocol_id": 92 + }, + "minecraft:block.bamboo.place": { + "protocol_id": 93 + }, + "minecraft:block.bamboo.step": { + "protocol_id": 94 + }, + "minecraft:block.bamboo_sapling.break": { + "protocol_id": 95 + }, + "minecraft:block.bamboo_sapling.hit": { + "protocol_id": 96 + }, + "minecraft:block.bamboo_sapling.place": { + "protocol_id": 97 + }, + "minecraft:block.bamboo_wood.break": { + "protocol_id": 98 + }, + "minecraft:block.bamboo_wood.fall": { + "protocol_id": 99 + }, + "minecraft:block.bamboo_wood.hit": { + "protocol_id": 100 + }, + "minecraft:block.bamboo_wood.place": { + "protocol_id": 101 + }, + "minecraft:block.bamboo_wood.step": { + "protocol_id": 102 + }, + "minecraft:block.bamboo_wood_button.click_off": { + "protocol_id": 107 + }, + "minecraft:block.bamboo_wood_button.click_on": { + "protocol_id": 108 + }, + "minecraft:block.bamboo_wood_door.close": { + "protocol_id": 103 + }, + "minecraft:block.bamboo_wood_door.open": { + "protocol_id": 104 + }, + "minecraft:block.bamboo_wood_fence_gate.close": { + "protocol_id": 111 + }, + "minecraft:block.bamboo_wood_fence_gate.open": { + "protocol_id": 112 + }, + "minecraft:block.bamboo_wood_hanging_sign.break": { + "protocol_id": 634 + }, + "minecraft:block.bamboo_wood_hanging_sign.fall": { + "protocol_id": 635 + }, + "minecraft:block.bamboo_wood_hanging_sign.hit": { + "protocol_id": 636 + }, + "minecraft:block.bamboo_wood_hanging_sign.place": { + "protocol_id": 637 + }, + "minecraft:block.bamboo_wood_hanging_sign.step": { + "protocol_id": 633 + }, + "minecraft:block.bamboo_wood_pressure_plate.click_off": { + "protocol_id": 109 + }, + "minecraft:block.bamboo_wood_pressure_plate.click_on": { + "protocol_id": 110 + }, + "minecraft:block.bamboo_wood_trapdoor.close": { + "protocol_id": 105 + }, + "minecraft:block.bamboo_wood_trapdoor.open": { + "protocol_id": 106 + }, + "minecraft:block.barrel.close": { + "protocol_id": 113 + }, + "minecraft:block.barrel.open": { + "protocol_id": 114 + }, + "minecraft:block.basalt.break": { + "protocol_id": 115 + }, + "minecraft:block.basalt.fall": { + "protocol_id": 119 + }, + "minecraft:block.basalt.hit": { + "protocol_id": 118 + }, + "minecraft:block.basalt.place": { + "protocol_id": 117 + }, + "minecraft:block.basalt.step": { + "protocol_id": 116 + }, + "minecraft:block.beacon.activate": { + "protocol_id": 125 + }, + "minecraft:block.beacon.ambient": { + "protocol_id": 126 + }, + "minecraft:block.beacon.deactivate": { + "protocol_id": 127 + }, + "minecraft:block.beacon.power_select": { + "protocol_id": 128 + }, + "minecraft:block.beehive.drip": { + "protocol_id": 135 + }, + "minecraft:block.beehive.enter": { + "protocol_id": 136 + }, + "minecraft:block.beehive.exit": { + "protocol_id": 137 + }, + "minecraft:block.beehive.shear": { + "protocol_id": 138 + }, + "minecraft:block.beehive.work": { + "protocol_id": 139 + }, + "minecraft:block.bell.resonate": { + "protocol_id": 141 + }, + "minecraft:block.bell.use": { + "protocol_id": 140 + }, + "minecraft:block.big_dripleaf.break": { + "protocol_id": 142 + }, + "minecraft:block.big_dripleaf.fall": { + "protocol_id": 143 + }, + "minecraft:block.big_dripleaf.hit": { + "protocol_id": 144 + }, + "minecraft:block.big_dripleaf.place": { + "protocol_id": 145 + }, + "minecraft:block.big_dripleaf.step": { + "protocol_id": 146 + }, + "minecraft:block.big_dripleaf.tilt_down": { + "protocol_id": 413 + }, + "minecraft:block.big_dripleaf.tilt_up": { + "protocol_id": 414 + }, + "minecraft:block.blastfurnace.fire_crackle": { + "protocol_id": 162 + }, + "minecraft:block.bone_block.break": { + "protocol_id": 154 + }, + "minecraft:block.bone_block.fall": { + "protocol_id": 155 + }, + "minecraft:block.bone_block.hit": { + "protocol_id": 156 + }, + "minecraft:block.bone_block.place": { + "protocol_id": 157 + }, + "minecraft:block.bone_block.step": { + "protocol_id": 158 + }, + "minecraft:block.brewing_stand.brew": { + "protocol_id": 175 + }, + "minecraft:block.bubble_column.bubble_pop": { + "protocol_id": 181 + }, + "minecraft:block.bubble_column.upwards_ambient": { + "protocol_id": 182 + }, + "minecraft:block.bubble_column.upwards_inside": { + "protocol_id": 183 + }, + "minecraft:block.bubble_column.whirlpool_ambient": { + "protocol_id": 184 + }, + "minecraft:block.bubble_column.whirlpool_inside": { + "protocol_id": 185 + }, + "minecraft:block.cake.add_candle": { + "protocol_id": 201 + }, + "minecraft:block.calcite.break": { + "protocol_id": 202 + }, + "minecraft:block.calcite.fall": { + "protocol_id": 206 + }, + "minecraft:block.calcite.hit": { + "protocol_id": 205 + }, + "minecraft:block.calcite.place": { + "protocol_id": 204 + }, + "minecraft:block.calcite.step": { + "protocol_id": 203 + }, + "minecraft:block.campfire.crackle": { + "protocol_id": 218 + }, + "minecraft:block.candle.ambient": { + "protocol_id": 219 + }, + "minecraft:block.candle.break": { + "protocol_id": 220 + }, + "minecraft:block.candle.extinguish": { + "protocol_id": 221 + }, + "minecraft:block.candle.fall": { + "protocol_id": 222 + }, + "minecraft:block.candle.hit": { + "protocol_id": 223 + }, + "minecraft:block.candle.place": { + "protocol_id": 224 + }, + "minecraft:block.candle.step": { + "protocol_id": 225 + }, + "minecraft:block.cave_vines.break": { + "protocol_id": 235 + }, + "minecraft:block.cave_vines.fall": { + "protocol_id": 236 + }, + "minecraft:block.cave_vines.hit": { + "protocol_id": 237 + }, + "minecraft:block.cave_vines.pick_berries": { + "protocol_id": 240 + }, + "minecraft:block.cave_vines.place": { + "protocol_id": 238 + }, + "minecraft:block.cave_vines.step": { + "protocol_id": 239 + }, + "minecraft:block.chain.break": { + "protocol_id": 241 + }, + "minecraft:block.chain.fall": { + "protocol_id": 242 + }, + "minecraft:block.chain.hit": { + "protocol_id": 243 + }, + "minecraft:block.chain.place": { + "protocol_id": 244 + }, + "minecraft:block.chain.step": { + "protocol_id": 245 + }, + "minecraft:block.cherry_leaves.break": { + "protocol_id": 256 + }, + "minecraft:block.cherry_leaves.fall": { + "protocol_id": 257 + }, + "minecraft:block.cherry_leaves.hit": { + "protocol_id": 258 + }, + "minecraft:block.cherry_leaves.place": { + "protocol_id": 259 + }, + "minecraft:block.cherry_leaves.step": { + "protocol_id": 260 + }, + "minecraft:block.cherry_sapling.break": { + "protocol_id": 251 + }, + "minecraft:block.cherry_sapling.fall": { + "protocol_id": 252 + }, + "minecraft:block.cherry_sapling.hit": { + "protocol_id": 253 + }, + "minecraft:block.cherry_sapling.place": { + "protocol_id": 254 + }, + "minecraft:block.cherry_sapling.step": { + "protocol_id": 255 + }, + "minecraft:block.cherry_wood.break": { + "protocol_id": 246 + }, + "minecraft:block.cherry_wood.fall": { + "protocol_id": 247 + }, + "minecraft:block.cherry_wood.hit": { + "protocol_id": 248 + }, + "minecraft:block.cherry_wood.place": { + "protocol_id": 249 + }, + "minecraft:block.cherry_wood.step": { + "protocol_id": 250 + }, + "minecraft:block.cherry_wood_button.click_off": { + "protocol_id": 270 + }, + "minecraft:block.cherry_wood_button.click_on": { + "protocol_id": 271 + }, + "minecraft:block.cherry_wood_door.close": { + "protocol_id": 266 + }, + "minecraft:block.cherry_wood_door.open": { + "protocol_id": 267 + }, + "minecraft:block.cherry_wood_fence_gate.close": { + "protocol_id": 274 + }, + "minecraft:block.cherry_wood_fence_gate.open": { + "protocol_id": 275 + }, + "minecraft:block.cherry_wood_hanging_sign.break": { + "protocol_id": 262 + }, + "minecraft:block.cherry_wood_hanging_sign.fall": { + "protocol_id": 263 + }, + "minecraft:block.cherry_wood_hanging_sign.hit": { + "protocol_id": 264 + }, + "minecraft:block.cherry_wood_hanging_sign.place": { + "protocol_id": 265 + }, + "minecraft:block.cherry_wood_hanging_sign.step": { + "protocol_id": 261 + }, + "minecraft:block.cherry_wood_pressure_plate.click_off": { + "protocol_id": 272 + }, + "minecraft:block.cherry_wood_pressure_plate.click_on": { + "protocol_id": 273 + }, + "minecraft:block.cherry_wood_trapdoor.close": { + "protocol_id": 268 + }, + "minecraft:block.cherry_wood_trapdoor.open": { + "protocol_id": 269 + }, + "minecraft:block.chest.close": { + "protocol_id": 276 + }, + "minecraft:block.chest.locked": { + "protocol_id": 277 + }, + "minecraft:block.chest.open": { + "protocol_id": 278 + }, + "minecraft:block.chiseled_bookshelf.break": { + "protocol_id": 284 + }, + "minecraft:block.chiseled_bookshelf.fall": { + "protocol_id": 285 + }, + "minecraft:block.chiseled_bookshelf.hit": { + "protocol_id": 286 + }, + "minecraft:block.chiseled_bookshelf.insert": { + "protocol_id": 287 + }, + "minecraft:block.chiseled_bookshelf.insert.enchanted": { + "protocol_id": 288 + }, + "minecraft:block.chiseled_bookshelf.pickup": { + "protocol_id": 290 + }, + "minecraft:block.chiseled_bookshelf.pickup.enchanted": { + "protocol_id": 291 + }, + "minecraft:block.chiseled_bookshelf.place": { + "protocol_id": 292 + }, + "minecraft:block.chiseled_bookshelf.step": { + "protocol_id": 289 + }, + "minecraft:block.chorus_flower.death": { + "protocol_id": 293 + }, + "minecraft:block.chorus_flower.grow": { + "protocol_id": 294 + }, + "minecraft:block.comparator.click": { + "protocol_id": 300 + }, + "minecraft:block.composter.empty": { + "protocol_id": 301 + }, + "minecraft:block.composter.fill": { + "protocol_id": 302 + }, + "minecraft:block.composter.fill_success": { + "protocol_id": 303 + }, + "minecraft:block.composter.ready": { + "protocol_id": 304 + }, + "minecraft:block.conduit.activate": { + "protocol_id": 305 + }, + "minecraft:block.conduit.ambient": { + "protocol_id": 306 + }, + "minecraft:block.conduit.ambient.short": { + "protocol_id": 307 + }, + "minecraft:block.conduit.attack.target": { + "protocol_id": 308 + }, + "minecraft:block.conduit.deactivate": { + "protocol_id": 309 + }, + "minecraft:block.copper.break": { + "protocol_id": 317 + }, + "minecraft:block.copper.fall": { + "protocol_id": 321 + }, + "minecraft:block.copper.hit": { + "protocol_id": 320 + }, + "minecraft:block.copper.place": { + "protocol_id": 319 + }, + "minecraft:block.copper.step": { + "protocol_id": 318 + }, + "minecraft:block.copper_bulb.break": { + "protocol_id": 310 + }, + "minecraft:block.copper_bulb.fall": { + "protocol_id": 314 + }, + "minecraft:block.copper_bulb.hit": { + "protocol_id": 313 + }, + "minecraft:block.copper_bulb.place": { + "protocol_id": 312 + }, + "minecraft:block.copper_bulb.step": { + "protocol_id": 311 + }, + "minecraft:block.copper_bulb.turn_off": { + "protocol_id": 316 + }, + "minecraft:block.copper_bulb.turn_on": { + "protocol_id": 315 + }, + "minecraft:block.copper_door.close": { + "protocol_id": 322 + }, + "minecraft:block.copper_door.open": { + "protocol_id": 323 + }, + "minecraft:block.copper_grate.break": { + "protocol_id": 324 + }, + "minecraft:block.copper_grate.fall": { + "protocol_id": 328 + }, + "minecraft:block.copper_grate.hit": { + "protocol_id": 327 + }, + "minecraft:block.copper_grate.place": { + "protocol_id": 326 + }, + "minecraft:block.copper_grate.step": { + "protocol_id": 325 + }, + "minecraft:block.copper_trapdoor.close": { + "protocol_id": 329 + }, + "minecraft:block.copper_trapdoor.open": { + "protocol_id": 330 + }, + "minecraft:block.coral_block.break": { + "protocol_id": 331 + }, + "minecraft:block.coral_block.fall": { + "protocol_id": 332 + }, + "minecraft:block.coral_block.hit": { + "protocol_id": 333 + }, + "minecraft:block.coral_block.place": { + "protocol_id": 334 + }, + "minecraft:block.coral_block.step": { + "protocol_id": 335 + }, + "minecraft:block.crafter.craft": { + "protocol_id": 341 + }, + "minecraft:block.crafter.fail": { + "protocol_id": 342 + }, + "minecraft:block.crop.break": { + "protocol_id": 346 + }, + "minecraft:block.decorated_pot.break": { + "protocol_id": 356 + }, + "minecraft:block.decorated_pot.fall": { + "protocol_id": 357 + }, + "minecraft:block.decorated_pot.hit": { + "protocol_id": 358 + }, + "minecraft:block.decorated_pot.insert": { + "protocol_id": 359 + }, + "minecraft:block.decorated_pot.insert_fail": { + "protocol_id": 360 + }, + "minecraft:block.decorated_pot.place": { + "protocol_id": 362 + }, + "minecraft:block.decorated_pot.shatter": { + "protocol_id": 363 + }, + "minecraft:block.decorated_pot.step": { + "protocol_id": 361 + }, + "minecraft:block.deepslate.break": { + "protocol_id": 369 + }, + "minecraft:block.deepslate.fall": { + "protocol_id": 370 + }, + "minecraft:block.deepslate.hit": { + "protocol_id": 371 + }, + "minecraft:block.deepslate.place": { + "protocol_id": 372 + }, + "minecraft:block.deepslate.step": { + "protocol_id": 373 + }, + "minecraft:block.deepslate_bricks.break": { + "protocol_id": 364 + }, + "minecraft:block.deepslate_bricks.fall": { + "protocol_id": 365 + }, + "minecraft:block.deepslate_bricks.hit": { + "protocol_id": 366 + }, + "minecraft:block.deepslate_bricks.place": { + "protocol_id": 367 + }, + "minecraft:block.deepslate_bricks.step": { + "protocol_id": 368 + }, + "minecraft:block.deepslate_tiles.break": { + "protocol_id": 374 + }, + "minecraft:block.deepslate_tiles.fall": { + "protocol_id": 375 + }, + "minecraft:block.deepslate_tiles.hit": { + "protocol_id": 376 + }, + "minecraft:block.deepslate_tiles.place": { + "protocol_id": 377 + }, + "minecraft:block.deepslate_tiles.step": { + "protocol_id": 378 + }, + "minecraft:block.dispenser.dispense": { + "protocol_id": 379 + }, + "minecraft:block.dispenser.fail": { + "protocol_id": 380 + }, + "minecraft:block.dispenser.launch": { + "protocol_id": 381 + }, + "minecraft:block.dripstone_block.break": { + "protocol_id": 398 + }, + "minecraft:block.dripstone_block.fall": { + "protocol_id": 402 + }, + "minecraft:block.dripstone_block.hit": { + "protocol_id": 401 + }, + "minecraft:block.dripstone_block.place": { + "protocol_id": 400 + }, + "minecraft:block.dripstone_block.step": { + "protocol_id": 399 + }, + "minecraft:block.enchantment_table.use": { + "protocol_id": 435 + }, + "minecraft:block.end_gateway.spawn": { + "protocol_id": 458 + }, + "minecraft:block.end_portal.spawn": { + "protocol_id": 460 + }, + "minecraft:block.end_portal_frame.fill": { + "protocol_id": 459 + }, + "minecraft:block.ender_chest.close": { + "protocol_id": 436 + }, + "minecraft:block.ender_chest.open": { + "protocol_id": 437 + }, + "minecraft:block.fence_gate.close": { + "protocol_id": 472 + }, + "minecraft:block.fence_gate.open": { + "protocol_id": 473 + }, + "minecraft:block.fire.ambient": { + "protocol_id": 483 + }, + "minecraft:block.fire.extinguish": { + "protocol_id": 484 + }, + "minecraft:block.flowering_azalea.break": { + "protocol_id": 490 + }, + "minecraft:block.flowering_azalea.fall": { + "protocol_id": 491 + }, + "minecraft:block.flowering_azalea.hit": { + "protocol_id": 492 + }, + "minecraft:block.flowering_azalea.place": { + "protocol_id": 493 + }, + "minecraft:block.flowering_azalea.step": { + "protocol_id": 494 + }, + "minecraft:block.froglight.break": { + "protocol_id": 516 + }, + "minecraft:block.froglight.fall": { + "protocol_id": 517 + }, + "minecraft:block.froglight.hit": { + "protocol_id": 518 + }, + "minecraft:block.froglight.place": { + "protocol_id": 519 + }, + "minecraft:block.froglight.step": { + "protocol_id": 520 + }, + "minecraft:block.frogspawn.break": { + "protocol_id": 522 + }, + "minecraft:block.frogspawn.fall": { + "protocol_id": 523 + }, + "minecraft:block.frogspawn.hatch": { + "protocol_id": 524 + }, + "minecraft:block.frogspawn.hit": { + "protocol_id": 525 + }, + "minecraft:block.frogspawn.place": { + "protocol_id": 526 + }, + "minecraft:block.frogspawn.step": { + "protocol_id": 521 + }, + "minecraft:block.fungus.break": { + "protocol_id": 914 + }, + "minecraft:block.fungus.fall": { + "protocol_id": 918 + }, + "minecraft:block.fungus.hit": { + "protocol_id": 917 + }, + "minecraft:block.fungus.place": { + "protocol_id": 916 + }, + "minecraft:block.fungus.step": { + "protocol_id": 915 + }, + "minecraft:block.furnace.fire_crackle": { + "protocol_id": 540 + }, + "minecraft:block.gilded_blackstone.break": { + "protocol_id": 558 + }, + "minecraft:block.gilded_blackstone.fall": { + "protocol_id": 559 + }, + "minecraft:block.gilded_blackstone.hit": { + "protocol_id": 560 + }, + "minecraft:block.gilded_blackstone.place": { + "protocol_id": 561 + }, + "minecraft:block.gilded_blackstone.step": { + "protocol_id": 562 + }, + "minecraft:block.glass.break": { + "protocol_id": 563 + }, + "minecraft:block.glass.fall": { + "protocol_id": 564 + }, + "minecraft:block.glass.hit": { + "protocol_id": 565 + }, + "minecraft:block.glass.place": { + "protocol_id": 566 + }, + "minecraft:block.glass.step": { + "protocol_id": 567 + }, + "minecraft:block.grass.break": { + "protocol_id": 598 + }, + "minecraft:block.grass.fall": { + "protocol_id": 599 + }, + "minecraft:block.grass.hit": { + "protocol_id": 600 + }, + "minecraft:block.grass.place": { + "protocol_id": 601 + }, + "minecraft:block.grass.step": { + "protocol_id": 602 + }, + "minecraft:block.gravel.break": { + "protocol_id": 603 + }, + "minecraft:block.gravel.fall": { + "protocol_id": 604 + }, + "minecraft:block.gravel.hit": { + "protocol_id": 605 + }, + "minecraft:block.gravel.place": { + "protocol_id": 606 + }, + "minecraft:block.gravel.step": { + "protocol_id": 607 + }, + "minecraft:block.grindstone.use": { + "protocol_id": 608 + }, + "minecraft:block.growing_plant.crop": { + "protocol_id": 609 + }, + "minecraft:block.hanging_roots.break": { + "protocol_id": 618 + }, + "minecraft:block.hanging_roots.fall": { + "protocol_id": 619 + }, + "minecraft:block.hanging_roots.hit": { + "protocol_id": 620 + }, + "minecraft:block.hanging_roots.place": { + "protocol_id": 621 + }, + "minecraft:block.hanging_roots.step": { + "protocol_id": 622 + }, + "minecraft:block.hanging_sign.break": { + "protocol_id": 624 + }, + "minecraft:block.hanging_sign.fall": { + "protocol_id": 625 + }, + "minecraft:block.hanging_sign.hit": { + "protocol_id": 626 + }, + "minecraft:block.hanging_sign.place": { + "protocol_id": 627 + }, + "minecraft:block.hanging_sign.step": { + "protocol_id": 623 + }, + "minecraft:block.hanging_sign.waxed_interact_fail": { + "protocol_id": 1451 + }, + "minecraft:block.honey_block.break": { + "protocol_id": 658 + }, + "minecraft:block.honey_block.fall": { + "protocol_id": 659 + }, + "minecraft:block.honey_block.hit": { + "protocol_id": 660 + }, + "minecraft:block.honey_block.place": { + "protocol_id": 661 + }, + "minecraft:block.honey_block.slide": { + "protocol_id": 662 + }, + "minecraft:block.honey_block.step": { + "protocol_id": 663 + }, + "minecraft:block.iron_door.close": { + "protocol_id": 706 + }, + "minecraft:block.iron_door.open": { + "protocol_id": 707 + }, + "minecraft:block.iron_trapdoor.close": { + "protocol_id": 714 + }, + "minecraft:block.iron_trapdoor.open": { + "protocol_id": 715 + }, + "minecraft:block.ladder.break": { + "protocol_id": 723 + }, + "minecraft:block.ladder.fall": { + "protocol_id": 724 + }, + "minecraft:block.ladder.hit": { + "protocol_id": 725 + }, + "minecraft:block.ladder.place": { + "protocol_id": 726 + }, + "minecraft:block.ladder.step": { + "protocol_id": 727 + }, + "minecraft:block.lantern.break": { + "protocol_id": 728 + }, + "minecraft:block.lantern.fall": { + "protocol_id": 729 + }, + "minecraft:block.lantern.hit": { + "protocol_id": 730 + }, + "minecraft:block.lantern.place": { + "protocol_id": 731 + }, + "minecraft:block.lantern.step": { + "protocol_id": 732 + }, + "minecraft:block.large_amethyst_bud.break": { + "protocol_id": 733 + }, + "minecraft:block.large_amethyst_bud.place": { + "protocol_id": 734 + }, + "minecraft:block.lava.ambient": { + "protocol_id": 735 + }, + "minecraft:block.lava.extinguish": { + "protocol_id": 736 + }, + "minecraft:block.lava.pop": { + "protocol_id": 737 + }, + "minecraft:block.lever.click": { + "protocol_id": 740 + }, + "minecraft:block.lily_pad.place": { + "protocol_id": 1420 + }, + "minecraft:block.lodestone.break": { + "protocol_id": 754 + }, + "minecraft:block.lodestone.fall": { + "protocol_id": 758 + }, + "minecraft:block.lodestone.hit": { + "protocol_id": 757 + }, + "minecraft:block.lodestone.place": { + "protocol_id": 756 + }, + "minecraft:block.lodestone.step": { + "protocol_id": 755 + }, + "minecraft:block.mangrove_roots.break": { + "protocol_id": 766 + }, + "minecraft:block.mangrove_roots.fall": { + "protocol_id": 767 + }, + "minecraft:block.mangrove_roots.hit": { + "protocol_id": 768 + }, + "minecraft:block.mangrove_roots.place": { + "protocol_id": 769 + }, + "minecraft:block.mangrove_roots.step": { + "protocol_id": 770 + }, + "minecraft:block.medium_amethyst_bud.break": { + "protocol_id": 771 + }, + "minecraft:block.medium_amethyst_bud.place": { + "protocol_id": 772 + }, + "minecraft:block.metal.break": { + "protocol_id": 773 + }, + "minecraft:block.metal.fall": { + "protocol_id": 774 + }, + "minecraft:block.metal.hit": { + "protocol_id": 775 + }, + "minecraft:block.metal.place": { + "protocol_id": 776 + }, + "minecraft:block.metal.step": { + "protocol_id": 779 + }, + "minecraft:block.metal_pressure_plate.click_off": { + "protocol_id": 777 + }, + "minecraft:block.metal_pressure_plate.click_on": { + "protocol_id": 778 + }, + "minecraft:block.moss.break": { + "protocol_id": 798 + }, + "minecraft:block.moss.fall": { + "protocol_id": 799 + }, + "minecraft:block.moss.hit": { + "protocol_id": 800 + }, + "minecraft:block.moss.place": { + "protocol_id": 801 + }, + "minecraft:block.moss.step": { + "protocol_id": 802 + }, + "minecraft:block.moss_carpet.break": { + "protocol_id": 788 + }, + "minecraft:block.moss_carpet.fall": { + "protocol_id": 789 + }, + "minecraft:block.moss_carpet.hit": { + "protocol_id": 790 + }, + "minecraft:block.moss_carpet.place": { + "protocol_id": 791 + }, + "minecraft:block.moss_carpet.step": { + "protocol_id": 792 + }, + "minecraft:block.mud.break": { + "protocol_id": 803 + }, + "minecraft:block.mud.fall": { + "protocol_id": 804 + }, + "minecraft:block.mud.hit": { + "protocol_id": 805 + }, + "minecraft:block.mud.place": { + "protocol_id": 806 + }, + "minecraft:block.mud.step": { + "protocol_id": 807 + }, + "minecraft:block.mud_bricks.break": { + "protocol_id": 808 + }, + "minecraft:block.mud_bricks.fall": { + "protocol_id": 809 + }, + "minecraft:block.mud_bricks.hit": { + "protocol_id": 810 + }, + "minecraft:block.mud_bricks.place": { + "protocol_id": 811 + }, + "minecraft:block.mud_bricks.step": { + "protocol_id": 812 + }, + "minecraft:block.muddy_mangrove_roots.break": { + "protocol_id": 813 + }, + "minecraft:block.muddy_mangrove_roots.fall": { + "protocol_id": 814 + }, + "minecraft:block.muddy_mangrove_roots.hit": { + "protocol_id": 815 + }, + "minecraft:block.muddy_mangrove_roots.place": { + "protocol_id": 816 + }, + "minecraft:block.muddy_mangrove_roots.step": { + "protocol_id": 817 + }, + "minecraft:block.nether_bricks.break": { + "protocol_id": 871 + }, + "minecraft:block.nether_bricks.fall": { + "protocol_id": 875 + }, + "minecraft:block.nether_bricks.hit": { + "protocol_id": 874 + }, + "minecraft:block.nether_bricks.place": { + "protocol_id": 873 + }, + "minecraft:block.nether_bricks.step": { + "protocol_id": 872 + }, + "minecraft:block.nether_gold_ore.break": { + "protocol_id": 1112 + }, + "minecraft:block.nether_gold_ore.fall": { + "protocol_id": 1113 + }, + "minecraft:block.nether_gold_ore.hit": { + "protocol_id": 1114 + }, + "minecraft:block.nether_gold_ore.place": { + "protocol_id": 1115 + }, + "minecraft:block.nether_gold_ore.step": { + "protocol_id": 1116 + }, + "minecraft:block.nether_ore.break": { + "protocol_id": 1117 + }, + "minecraft:block.nether_ore.fall": { + "protocol_id": 1118 + }, + "minecraft:block.nether_ore.hit": { + "protocol_id": 1119 + }, + "minecraft:block.nether_ore.place": { + "protocol_id": 1120 + }, + "minecraft:block.nether_ore.step": { + "protocol_id": 1121 + }, + "minecraft:block.nether_sprouts.break": { + "protocol_id": 909 + }, + "minecraft:block.nether_sprouts.fall": { + "protocol_id": 913 + }, + "minecraft:block.nether_sprouts.hit": { + "protocol_id": 912 + }, + "minecraft:block.nether_sprouts.place": { + "protocol_id": 911 + }, + "minecraft:block.nether_sprouts.step": { + "protocol_id": 910 + }, + "minecraft:block.nether_wart.break": { + "protocol_id": 876 + }, + "minecraft:block.nether_wood.break": { + "protocol_id": 878 + }, + "minecraft:block.nether_wood.fall": { + "protocol_id": 879 + }, + "minecraft:block.nether_wood.hit": { + "protocol_id": 880 + }, + "minecraft:block.nether_wood.place": { + "protocol_id": 881 + }, + "minecraft:block.nether_wood.step": { + "protocol_id": 882 + }, + "minecraft:block.nether_wood_button.click_off": { + "protocol_id": 887 + }, + "minecraft:block.nether_wood_button.click_on": { + "protocol_id": 888 + }, + "minecraft:block.nether_wood_door.close": { + "protocol_id": 883 + }, + "minecraft:block.nether_wood_door.open": { + "protocol_id": 884 + }, + "minecraft:block.nether_wood_fence_gate.close": { + "protocol_id": 891 + }, + "minecraft:block.nether_wood_fence_gate.open": { + "protocol_id": 892 + }, + "minecraft:block.nether_wood_hanging_sign.break": { + "protocol_id": 629 + }, + "minecraft:block.nether_wood_hanging_sign.fall": { + "protocol_id": 630 + }, + "minecraft:block.nether_wood_hanging_sign.hit": { + "protocol_id": 631 + }, + "minecraft:block.nether_wood_hanging_sign.place": { + "protocol_id": 632 + }, + "minecraft:block.nether_wood_hanging_sign.step": { + "protocol_id": 628 + }, + "minecraft:block.nether_wood_pressure_plate.click_off": { + "protocol_id": 889 + }, + "minecraft:block.nether_wood_pressure_plate.click_on": { + "protocol_id": 890 + }, + "minecraft:block.nether_wood_trapdoor.close": { + "protocol_id": 885 + }, + "minecraft:block.nether_wood_trapdoor.open": { + "protocol_id": 886 + }, + "minecraft:block.netherite_block.break": { + "protocol_id": 929 + }, + "minecraft:block.netherite_block.fall": { + "protocol_id": 933 + }, + "minecraft:block.netherite_block.hit": { + "protocol_id": 932 + }, + "minecraft:block.netherite_block.place": { + "protocol_id": 931 + }, + "minecraft:block.netherite_block.step": { + "protocol_id": 930 + }, + "minecraft:block.netherrack.break": { + "protocol_id": 934 + }, + "minecraft:block.netherrack.fall": { + "protocol_id": 938 + }, + "minecraft:block.netherrack.hit": { + "protocol_id": 937 + }, + "minecraft:block.netherrack.place": { + "protocol_id": 936 + }, + "minecraft:block.netherrack.step": { + "protocol_id": 935 + }, + "minecraft:block.note_block.banjo": { + "protocol_id": 954 + }, + "minecraft:block.note_block.basedrum": { + "protocol_id": 939 + }, + "minecraft:block.note_block.bass": { + "protocol_id": 940 + }, + "minecraft:block.note_block.bell": { + "protocol_id": 941 + }, + "minecraft:block.note_block.bit": { + "protocol_id": 953 + }, + "minecraft:block.note_block.chime": { + "protocol_id": 942 + }, + "minecraft:block.note_block.cow_bell": { + "protocol_id": 951 + }, + "minecraft:block.note_block.didgeridoo": { + "protocol_id": 952 + }, + "minecraft:block.note_block.flute": { + "protocol_id": 943 + }, + "minecraft:block.note_block.guitar": { + "protocol_id": 944 + }, + "minecraft:block.note_block.harp": { + "protocol_id": 945 + }, + "minecraft:block.note_block.hat": { + "protocol_id": 946 + }, + "minecraft:block.note_block.imitate.creeper": { + "protocol_id": 957 + }, + "minecraft:block.note_block.imitate.ender_dragon": { + "protocol_id": 958 + }, + "minecraft:block.note_block.imitate.piglin": { + "protocol_id": 960 + }, + "minecraft:block.note_block.imitate.skeleton": { + "protocol_id": 956 + }, + "minecraft:block.note_block.imitate.wither_skeleton": { + "protocol_id": 959 + }, + "minecraft:block.note_block.imitate.zombie": { + "protocol_id": 955 + }, + "minecraft:block.note_block.iron_xylophone": { + "protocol_id": 950 + }, + "minecraft:block.note_block.pling": { + "protocol_id": 947 + }, + "minecraft:block.note_block.snare": { + "protocol_id": 948 + }, + "minecraft:block.note_block.xylophone": { + "protocol_id": 949 + }, + "minecraft:block.nylium.break": { + "protocol_id": 904 + }, + "minecraft:block.nylium.fall": { + "protocol_id": 908 + }, + "minecraft:block.nylium.hit": { + "protocol_id": 907 + }, + "minecraft:block.nylium.place": { + "protocol_id": 906 + }, + "minecraft:block.nylium.step": { + "protocol_id": 905 + }, + "minecraft:block.packed_mud.break": { + "protocol_id": 894 + }, + "minecraft:block.packed_mud.fall": { + "protocol_id": 895 + }, + "minecraft:block.packed_mud.hit": { + "protocol_id": 896 + }, + "minecraft:block.packed_mud.place": { + "protocol_id": 897 + }, + "minecraft:block.packed_mud.step": { + "protocol_id": 898 + }, + "minecraft:block.pink_petals.break": { + "protocol_id": 793 + }, + "minecraft:block.pink_petals.fall": { + "protocol_id": 794 + }, + "minecraft:block.pink_petals.hit": { + "protocol_id": 795 + }, + "minecraft:block.pink_petals.place": { + "protocol_id": 796 + }, + "minecraft:block.pink_petals.step": { + "protocol_id": 797 + }, + "minecraft:block.piston.contract": { + "protocol_id": 1048 + }, + "minecraft:block.piston.extend": { + "protocol_id": 1049 + }, + "minecraft:block.pointed_dripstone.break": { + "protocol_id": 403 + }, + "minecraft:block.pointed_dripstone.drip_lava": { + "protocol_id": 409 + }, + "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": { + "protocol_id": 411 + }, + "minecraft:block.pointed_dripstone.drip_water": { + "protocol_id": 410 + }, + "minecraft:block.pointed_dripstone.drip_water_into_cauldron": { + "protocol_id": 412 + }, + "minecraft:block.pointed_dripstone.fall": { + "protocol_id": 407 + }, + "minecraft:block.pointed_dripstone.hit": { + "protocol_id": 406 + }, + "minecraft:block.pointed_dripstone.land": { + "protocol_id": 408 + }, + "minecraft:block.pointed_dripstone.place": { + "protocol_id": 405 + }, + "minecraft:block.pointed_dripstone.step": { + "protocol_id": 404 + }, + "minecraft:block.polished_deepslate.break": { + "protocol_id": 1077 + }, + "minecraft:block.polished_deepslate.fall": { + "protocol_id": 1078 + }, + "minecraft:block.polished_deepslate.hit": { + "protocol_id": 1079 + }, + "minecraft:block.polished_deepslate.place": { + "protocol_id": 1080 + }, + "minecraft:block.polished_deepslate.step": { + "protocol_id": 1081 + }, + "minecraft:block.polished_tuff.break": { + "protocol_id": 1361 + }, + "minecraft:block.polished_tuff.fall": { + "protocol_id": 1362 + }, + "minecraft:block.polished_tuff.hit": { + "protocol_id": 1363 + }, + "minecraft:block.polished_tuff.place": { + "protocol_id": 1364 + }, + "minecraft:block.polished_tuff.step": { + "protocol_id": 1365 + }, + "minecraft:block.portal.ambient": { + "protocol_id": 1082 + }, + "minecraft:block.portal.travel": { + "protocol_id": 1083 + }, + "minecraft:block.portal.trigger": { + "protocol_id": 1084 + }, + "minecraft:block.powder_snow.break": { + "protocol_id": 1085 + }, + "minecraft:block.powder_snow.fall": { + "protocol_id": 1086 + }, + "minecraft:block.powder_snow.hit": { + "protocol_id": 1087 + }, + "minecraft:block.powder_snow.place": { + "protocol_id": 1088 + }, + "minecraft:block.powder_snow.step": { + "protocol_id": 1089 + }, + "minecraft:block.pumpkin.carve": { + "protocol_id": 1097 + }, + "minecraft:block.redstone_torch.burnout": { + "protocol_id": 1122 + }, + "minecraft:block.respawn_anchor.ambient": { + "protocol_id": 1123 + }, + "minecraft:block.respawn_anchor.charge": { + "protocol_id": 1124 + }, + "minecraft:block.respawn_anchor.deplete": { + "protocol_id": 1125 + }, + "minecraft:block.respawn_anchor.set_spawn": { + "protocol_id": 1126 + }, + "minecraft:block.rooted_dirt.break": { + "protocol_id": 1127 + }, + "minecraft:block.rooted_dirt.fall": { + "protocol_id": 1128 + }, + "minecraft:block.rooted_dirt.hit": { + "protocol_id": 1129 + }, + "minecraft:block.rooted_dirt.place": { + "protocol_id": 1130 + }, + "minecraft:block.rooted_dirt.step": { + "protocol_id": 1131 + }, + "minecraft:block.roots.break": { + "protocol_id": 535 + }, + "minecraft:block.roots.fall": { + "protocol_id": 539 + }, + "minecraft:block.roots.hit": { + "protocol_id": 538 + }, + "minecraft:block.roots.place": { + "protocol_id": 537 + }, + "minecraft:block.roots.step": { + "protocol_id": 536 + }, + "minecraft:block.sand.break": { + "protocol_id": 1136 + }, + "minecraft:block.sand.fall": { + "protocol_id": 1137 + }, + "minecraft:block.sand.hit": { + "protocol_id": 1138 + }, + "minecraft:block.sand.place": { + "protocol_id": 1139 + }, + "minecraft:block.sand.step": { + "protocol_id": 1140 + }, + "minecraft:block.scaffolding.break": { + "protocol_id": 1141 + }, + "minecraft:block.scaffolding.fall": { + "protocol_id": 1142 + }, + "minecraft:block.scaffolding.hit": { + "protocol_id": 1143 + }, + "minecraft:block.scaffolding.place": { + "protocol_id": 1144 + }, + "minecraft:block.scaffolding.step": { + "protocol_id": 1145 + }, + "minecraft:block.sculk.break": { + "protocol_id": 1148 + }, + "minecraft:block.sculk.charge": { + "protocol_id": 1147 + }, + "minecraft:block.sculk.fall": { + "protocol_id": 1149 + }, + "minecraft:block.sculk.hit": { + "protocol_id": 1150 + }, + "minecraft:block.sculk.place": { + "protocol_id": 1151 + }, + "minecraft:block.sculk.spread": { + "protocol_id": 1146 + }, + "minecraft:block.sculk.step": { + "protocol_id": 1152 + }, + "minecraft:block.sculk_catalyst.bloom": { + "protocol_id": 1153 + }, + "minecraft:block.sculk_catalyst.break": { + "protocol_id": 1154 + }, + "minecraft:block.sculk_catalyst.fall": { + "protocol_id": 1155 + }, + "minecraft:block.sculk_catalyst.hit": { + "protocol_id": 1156 + }, + "minecraft:block.sculk_catalyst.place": { + "protocol_id": 1157 + }, + "minecraft:block.sculk_catalyst.step": { + "protocol_id": 1158 + }, + "minecraft:block.sculk_sensor.break": { + "protocol_id": 1161 + }, + "minecraft:block.sculk_sensor.clicking": { + "protocol_id": 1159 + }, + "minecraft:block.sculk_sensor.clicking_stop": { + "protocol_id": 1160 + }, + "minecraft:block.sculk_sensor.fall": { + "protocol_id": 1162 + }, + "minecraft:block.sculk_sensor.hit": { + "protocol_id": 1163 + }, + "minecraft:block.sculk_sensor.place": { + "protocol_id": 1164 + }, + "minecraft:block.sculk_sensor.step": { + "protocol_id": 1165 + }, + "minecraft:block.sculk_shrieker.break": { + "protocol_id": 1166 + }, + "minecraft:block.sculk_shrieker.fall": { + "protocol_id": 1167 + }, + "minecraft:block.sculk_shrieker.hit": { + "protocol_id": 1168 + }, + "minecraft:block.sculk_shrieker.place": { + "protocol_id": 1169 + }, + "minecraft:block.sculk_shrieker.shriek": { + "protocol_id": 1170 + }, + "minecraft:block.sculk_shrieker.step": { + "protocol_id": 1171 + }, + "minecraft:block.sculk_vein.break": { + "protocol_id": 1172 + }, + "minecraft:block.sculk_vein.fall": { + "protocol_id": 1173 + }, + "minecraft:block.sculk_vein.hit": { + "protocol_id": 1174 + }, + "minecraft:block.sculk_vein.place": { + "protocol_id": 1175 + }, + "minecraft:block.sculk_vein.step": { + "protocol_id": 1176 + }, + "minecraft:block.shroomlight.break": { + "protocol_id": 1184 + }, + "minecraft:block.shroomlight.fall": { + "protocol_id": 1188 + }, + "minecraft:block.shroomlight.hit": { + "protocol_id": 1187 + }, + "minecraft:block.shroomlight.place": { + "protocol_id": 1186 + }, + "minecraft:block.shroomlight.step": { + "protocol_id": 1185 + }, + "minecraft:block.shulker_box.close": { + "protocol_id": 1191 + }, + "minecraft:block.shulker_box.open": { + "protocol_id": 1192 + }, + "minecraft:block.sign.waxed_interact_fail": { + "protocol_id": 1452 + }, + "minecraft:block.slime_block.break": { + "protocol_id": 1225 + }, + "minecraft:block.slime_block.fall": { + "protocol_id": 1226 + }, + "minecraft:block.slime_block.hit": { + "protocol_id": 1227 + }, + "minecraft:block.slime_block.place": { + "protocol_id": 1228 + }, + "minecraft:block.slime_block.step": { + "protocol_id": 1229 + }, + "minecraft:block.small_amethyst_bud.break": { + "protocol_id": 1230 + }, + "minecraft:block.small_amethyst_bud.place": { + "protocol_id": 1231 + }, + "minecraft:block.small_dripleaf.break": { + "protocol_id": 1232 + }, + "minecraft:block.small_dripleaf.fall": { + "protocol_id": 1233 + }, + "minecraft:block.small_dripleaf.hit": { + "protocol_id": 1234 + }, + "minecraft:block.small_dripleaf.place": { + "protocol_id": 1235 + }, + "minecraft:block.small_dripleaf.step": { + "protocol_id": 1236 + }, + "minecraft:block.smithing_table.use": { + "protocol_id": 1266 + }, + "minecraft:block.smoker.smoke": { + "protocol_id": 1267 + }, + "minecraft:block.sniffer_egg.crack": { + "protocol_id": 1281 + }, + "minecraft:block.sniffer_egg.hatch": { + "protocol_id": 1282 + }, + "minecraft:block.sniffer_egg.plop": { + "protocol_id": 1280 + }, + "minecraft:block.snow.break": { + "protocol_id": 1284 + }, + "minecraft:block.snow.fall": { + "protocol_id": 1285 + }, + "minecraft:block.snow.hit": { + "protocol_id": 1291 + }, + "minecraft:block.snow.place": { + "protocol_id": 1292 + }, + "minecraft:block.snow.step": { + "protocol_id": 1293 + }, + "minecraft:block.soul_sand.break": { + "protocol_id": 1237 + }, + "minecraft:block.soul_sand.fall": { + "protocol_id": 1241 + }, + "minecraft:block.soul_sand.hit": { + "protocol_id": 1240 + }, + "minecraft:block.soul_sand.place": { + "protocol_id": 1239 + }, + "minecraft:block.soul_sand.step": { + "protocol_id": 1238 + }, + "minecraft:block.soul_soil.break": { + "protocol_id": 1242 + }, + "minecraft:block.soul_soil.fall": { + "protocol_id": 1246 + }, + "minecraft:block.soul_soil.hit": { + "protocol_id": 1245 + }, + "minecraft:block.soul_soil.place": { + "protocol_id": 1244 + }, + "minecraft:block.soul_soil.step": { + "protocol_id": 1243 + }, + "minecraft:block.sponge.absorb": { + "protocol_id": 1305 + }, + "minecraft:block.sponge.break": { + "protocol_id": 1300 + }, + "minecraft:block.sponge.fall": { + "protocol_id": 1301 + }, + "minecraft:block.sponge.hit": { + "protocol_id": 1302 + }, + "minecraft:block.sponge.place": { + "protocol_id": 1303 + }, + "minecraft:block.sponge.step": { + "protocol_id": 1304 + }, + "minecraft:block.spore_blossom.break": { + "protocol_id": 1248 + }, + "minecraft:block.spore_blossom.fall": { + "protocol_id": 1249 + }, + "minecraft:block.spore_blossom.hit": { + "protocol_id": 1250 + }, + "minecraft:block.spore_blossom.place": { + "protocol_id": 1251 + }, + "minecraft:block.spore_blossom.step": { + "protocol_id": 1252 + }, + "minecraft:block.stem.break": { + "protocol_id": 899 + }, + "minecraft:block.stem.fall": { + "protocol_id": 903 + }, + "minecraft:block.stem.hit": { + "protocol_id": 902 + }, + "minecraft:block.stem.place": { + "protocol_id": 901 + }, + "minecraft:block.stem.step": { + "protocol_id": 900 + }, + "minecraft:block.stone.break": { + "protocol_id": 1312 + }, + "minecraft:block.stone.fall": { + "protocol_id": 1315 + }, + "minecraft:block.stone.hit": { + "protocol_id": 1316 + }, + "minecraft:block.stone.place": { + "protocol_id": 1317 + }, + "minecraft:block.stone.step": { + "protocol_id": 1320 + }, + "minecraft:block.stone_button.click_off": { + "protocol_id": 1313 + }, + "minecraft:block.stone_button.click_on": { + "protocol_id": 1314 + }, + "minecraft:block.stone_pressure_plate.click_off": { + "protocol_id": 1318 + }, + "minecraft:block.stone_pressure_plate.click_on": { + "protocol_id": 1319 + }, + "minecraft:block.suspicious_gravel.break": { + "protocol_id": 511 + }, + "minecraft:block.suspicious_gravel.fall": { + "protocol_id": 515 + }, + "minecraft:block.suspicious_gravel.hit": { + "protocol_id": 514 + }, + "minecraft:block.suspicious_gravel.place": { + "protocol_id": 513 + }, + "minecraft:block.suspicious_gravel.step": { + "protocol_id": 512 + }, + "minecraft:block.suspicious_sand.break": { + "protocol_id": 506 + }, + "minecraft:block.suspicious_sand.fall": { + "protocol_id": 510 + }, + "minecraft:block.suspicious_sand.hit": { + "protocol_id": 509 + }, + "minecraft:block.suspicious_sand.place": { + "protocol_id": 508 + }, + "minecraft:block.suspicious_sand.step": { + "protocol_id": 507 + }, + "minecraft:block.sweet_berry_bush.break": { + "protocol_id": 1325 + }, + "minecraft:block.sweet_berry_bush.pick_berries": { + "protocol_id": 1327 + }, + "minecraft:block.sweet_berry_bush.place": { + "protocol_id": 1326 + }, + "minecraft:block.trial_spawner.ambient": { + "protocol_id": 645 + }, + "minecraft:block.trial_spawner.break": { + "protocol_id": 638 + }, + "minecraft:block.trial_spawner.close_shutter": { + "protocol_id": 647 + }, + "minecraft:block.trial_spawner.detect_player": { + "protocol_id": 644 + }, + "minecraft:block.trial_spawner.eject_item": { + "protocol_id": 648 + }, + "minecraft:block.trial_spawner.fall": { + "protocol_id": 642 + }, + "minecraft:block.trial_spawner.hit": { + "protocol_id": 641 + }, + "minecraft:block.trial_spawner.open_shutter": { + "protocol_id": 646 + }, + "minecraft:block.trial_spawner.place": { + "protocol_id": 640 + }, + "minecraft:block.trial_spawner.spawn_mob": { + "protocol_id": 643 + }, + "minecraft:block.trial_spawner.step": { + "protocol_id": 639 + }, + "minecraft:block.tripwire.attach": { + "protocol_id": 1343 + }, + "minecraft:block.tripwire.click_off": { + "protocol_id": 1344 + }, + "minecraft:block.tripwire.click_on": { + "protocol_id": 1345 + }, + "minecraft:block.tripwire.detach": { + "protocol_id": 1346 + }, + "minecraft:block.tuff.break": { + "protocol_id": 1351 + }, + "minecraft:block.tuff.fall": { + "protocol_id": 1355 + }, + "minecraft:block.tuff.hit": { + "protocol_id": 1354 + }, + "minecraft:block.tuff.place": { + "protocol_id": 1353 + }, + "minecraft:block.tuff.step": { + "protocol_id": 1352 + }, + "minecraft:block.tuff_bricks.break": { + "protocol_id": 1356 + }, + "minecraft:block.tuff_bricks.fall": { + "protocol_id": 1357 + }, + "minecraft:block.tuff_bricks.hit": { + "protocol_id": 1358 + }, + "minecraft:block.tuff_bricks.place": { + "protocol_id": 1359 + }, + "minecraft:block.tuff_bricks.step": { + "protocol_id": 1360 + }, + "minecraft:block.vine.break": { + "protocol_id": 1415 + }, + "minecraft:block.vine.fall": { + "protocol_id": 1416 + }, + "minecraft:block.vine.hit": { + "protocol_id": 1417 + }, + "minecraft:block.vine.place": { + "protocol_id": 1418 + }, + "minecraft:block.vine.step": { + "protocol_id": 1419 + }, + "minecraft:block.wart_block.break": { + "protocol_id": 924 + }, + "minecraft:block.wart_block.fall": { + "protocol_id": 928 + }, + "minecraft:block.wart_block.hit": { + "protocol_id": 927 + }, + "minecraft:block.wart_block.place": { + "protocol_id": 926 + }, + "minecraft:block.wart_block.step": { + "protocol_id": 925 + }, + "minecraft:block.water.ambient": { + "protocol_id": 1453 + }, + "minecraft:block.weeping_vines.break": { + "protocol_id": 919 + }, + "minecraft:block.weeping_vines.fall": { + "protocol_id": 923 + }, + "minecraft:block.weeping_vines.hit": { + "protocol_id": 922 + }, + "minecraft:block.weeping_vines.place": { + "protocol_id": 921 + }, + "minecraft:block.weeping_vines.step": { + "protocol_id": 920 + }, + "minecraft:block.wet_grass.break": { + "protocol_id": 1456 + }, + "minecraft:block.wet_grass.fall": { + "protocol_id": 1457 + }, + "minecraft:block.wet_grass.hit": { + "protocol_id": 1458 + }, + "minecraft:block.wet_grass.place": { + "protocol_id": 1459 + }, + "minecraft:block.wet_grass.step": { + "protocol_id": 1460 + }, + "minecraft:block.wet_sponge.break": { + "protocol_id": 1461 + }, + "minecraft:block.wet_sponge.fall": { + "protocol_id": 1462 + }, + "minecraft:block.wet_sponge.hit": { + "protocol_id": 1463 + }, + "minecraft:block.wet_sponge.place": { + "protocol_id": 1464 + }, + "minecraft:block.wet_sponge.step": { + "protocol_id": 1465 + }, + "minecraft:block.wood.break": { + "protocol_id": 1500 + }, + "minecraft:block.wood.fall": { + "protocol_id": 1501 + }, + "minecraft:block.wood.hit": { + "protocol_id": 1502 + }, + "minecraft:block.wood.place": { + "protocol_id": 1503 + }, + "minecraft:block.wood.step": { + "protocol_id": 1504 + }, + "minecraft:block.wooden_button.click_off": { + "protocol_id": 1496 + }, + "minecraft:block.wooden_button.click_on": { + "protocol_id": 1497 + }, + "minecraft:block.wooden_door.close": { + "protocol_id": 1492 + }, + "minecraft:block.wooden_door.open": { + "protocol_id": 1493 + }, + "minecraft:block.wooden_pressure_plate.click_off": { + "protocol_id": 1498 + }, + "minecraft:block.wooden_pressure_plate.click_on": { + "protocol_id": 1499 + }, + "minecraft:block.wooden_trapdoor.close": { + "protocol_id": 1494 + }, + "minecraft:block.wooden_trapdoor.open": { + "protocol_id": 1495 + }, + "minecraft:block.wool.break": { + "protocol_id": 1505 + }, + "minecraft:block.wool.fall": { + "protocol_id": 1506 + }, + "minecraft:block.wool.hit": { + "protocol_id": 1507 + }, + "minecraft:block.wool.place": { + "protocol_id": 1508 + }, + "minecraft:block.wool.step": { + "protocol_id": 1509 + }, + "minecraft:enchant.thorns.hit": { + "protocol_id": 1332 + }, + "minecraft:entity.allay.ambient_with_item": { + "protocol_id": 0 + }, + "minecraft:entity.allay.ambient_without_item": { + "protocol_id": 1 + }, + "minecraft:entity.allay.death": { + "protocol_id": 2 + }, + "minecraft:entity.allay.hurt": { + "protocol_id": 3 + }, + "minecraft:entity.allay.item_given": { + "protocol_id": 4 + }, + "minecraft:entity.allay.item_taken": { + "protocol_id": 5 + }, + "minecraft:entity.allay.item_thrown": { + "protocol_id": 6 + }, + "minecraft:entity.armor_stand.break": { + "protocol_id": 63 + }, + "minecraft:entity.armor_stand.fall": { + "protocol_id": 64 + }, + "minecraft:entity.armor_stand.hit": { + "protocol_id": 65 + }, + "minecraft:entity.armor_stand.place": { + "protocol_id": 66 + }, + "minecraft:entity.arrow.hit": { + "protocol_id": 67 + }, + "minecraft:entity.arrow.hit_player": { + "protocol_id": 68 + }, + "minecraft:entity.arrow.shoot": { + "protocol_id": 69 + }, + "minecraft:entity.axolotl.attack": { + "protocol_id": 73 + }, + "minecraft:entity.axolotl.death": { + "protocol_id": 74 + }, + "minecraft:entity.axolotl.hurt": { + "protocol_id": 75 + }, + "minecraft:entity.axolotl.idle_air": { + "protocol_id": 76 + }, + "minecraft:entity.axolotl.idle_water": { + "protocol_id": 77 + }, + "minecraft:entity.axolotl.splash": { + "protocol_id": 78 + }, + "minecraft:entity.axolotl.swim": { + "protocol_id": 79 + }, + "minecraft:entity.bat.ambient": { + "protocol_id": 120 + }, + "minecraft:entity.bat.death": { + "protocol_id": 121 + }, + "minecraft:entity.bat.hurt": { + "protocol_id": 122 + }, + "minecraft:entity.bat.loop": { + "protocol_id": 123 + }, + "minecraft:entity.bat.takeoff": { + "protocol_id": 124 + }, + "minecraft:entity.bee.death": { + "protocol_id": 129 + }, + "minecraft:entity.bee.hurt": { + "protocol_id": 130 + }, + "minecraft:entity.bee.loop": { + "protocol_id": 132 + }, + "minecraft:entity.bee.loop_aggressive": { + "protocol_id": 131 + }, + "minecraft:entity.bee.pollinate": { + "protocol_id": 134 + }, + "minecraft:entity.bee.sting": { + "protocol_id": 133 + }, + "minecraft:entity.blaze.ambient": { + "protocol_id": 147 + }, + "minecraft:entity.blaze.burn": { + "protocol_id": 148 + }, + "minecraft:entity.blaze.death": { + "protocol_id": 149 + }, + "minecraft:entity.blaze.hurt": { + "protocol_id": 150 + }, + "minecraft:entity.blaze.shoot": { + "protocol_id": 151 + }, + "minecraft:entity.boat.paddle_land": { + "protocol_id": 152 + }, + "minecraft:entity.boat.paddle_water": { + "protocol_id": 153 + }, + "minecraft:entity.breeze.death": { + "protocol_id": 173 + }, + "minecraft:entity.breeze.hurt": { + "protocol_id": 174 + }, + "minecraft:entity.breeze.idle_air": { + "protocol_id": 168 + }, + "minecraft:entity.breeze.idle_ground": { + "protocol_id": 167 + }, + "minecraft:entity.breeze.inhale": { + "protocol_id": 166 + }, + "minecraft:entity.breeze.jump": { + "protocol_id": 170 + }, + "minecraft:entity.breeze.land": { + "protocol_id": 171 + }, + "minecraft:entity.breeze.shoot": { + "protocol_id": 169 + }, + "minecraft:entity.breeze.slide": { + "protocol_id": 172 + }, + "minecraft:entity.camel.ambient": { + "protocol_id": 207 + }, + "minecraft:entity.camel.dash": { + "protocol_id": 208 + }, + "minecraft:entity.camel.dash_ready": { + "protocol_id": 209 + }, + "minecraft:entity.camel.death": { + "protocol_id": 210 + }, + "minecraft:entity.camel.eat": { + "protocol_id": 211 + }, + "minecraft:entity.camel.hurt": { + "protocol_id": 212 + }, + "minecraft:entity.camel.saddle": { + "protocol_id": 213 + }, + "minecraft:entity.camel.sit": { + "protocol_id": 214 + }, + "minecraft:entity.camel.stand": { + "protocol_id": 215 + }, + "minecraft:entity.camel.step": { + "protocol_id": 216 + }, + "minecraft:entity.camel.step_sand": { + "protocol_id": 217 + }, + "minecraft:entity.cat.ambient": { + "protocol_id": 226 + }, + "minecraft:entity.cat.beg_for_food": { + "protocol_id": 231 + }, + "minecraft:entity.cat.death": { + "protocol_id": 228 + }, + "minecraft:entity.cat.eat": { + "protocol_id": 229 + }, + "minecraft:entity.cat.hiss": { + "protocol_id": 230 + }, + "minecraft:entity.cat.hurt": { + "protocol_id": 232 + }, + "minecraft:entity.cat.purr": { + "protocol_id": 233 + }, + "minecraft:entity.cat.purreow": { + "protocol_id": 234 + }, + "minecraft:entity.cat.stray_ambient": { + "protocol_id": 227 + }, + "minecraft:entity.chicken.ambient": { + "protocol_id": 279 + }, + "minecraft:entity.chicken.death": { + "protocol_id": 280 + }, + "minecraft:entity.chicken.egg": { + "protocol_id": 281 + }, + "minecraft:entity.chicken.hurt": { + "protocol_id": 282 + }, + "minecraft:entity.chicken.step": { + "protocol_id": 283 + }, + "minecraft:entity.cod.ambient": { + "protocol_id": 296 + }, + "minecraft:entity.cod.death": { + "protocol_id": 297 + }, + "minecraft:entity.cod.flop": { + "protocol_id": 298 + }, + "minecraft:entity.cod.hurt": { + "protocol_id": 299 + }, + "minecraft:entity.cow.ambient": { + "protocol_id": 336 + }, + "minecraft:entity.cow.death": { + "protocol_id": 337 + }, + "minecraft:entity.cow.hurt": { + "protocol_id": 338 + }, + "minecraft:entity.cow.milk": { + "protocol_id": 339 + }, + "minecraft:entity.cow.step": { + "protocol_id": 340 + }, + "minecraft:entity.creeper.death": { + "protocol_id": 343 + }, + "minecraft:entity.creeper.hurt": { + "protocol_id": 344 + }, + "minecraft:entity.creeper.primed": { + "protocol_id": 345 + }, + "minecraft:entity.dolphin.ambient": { + "protocol_id": 382 + }, + "minecraft:entity.dolphin.ambient_water": { + "protocol_id": 383 + }, + "minecraft:entity.dolphin.attack": { + "protocol_id": 384 + }, + "minecraft:entity.dolphin.death": { + "protocol_id": 385 + }, + "minecraft:entity.dolphin.eat": { + "protocol_id": 386 + }, + "minecraft:entity.dolphin.hurt": { + "protocol_id": 387 + }, + "minecraft:entity.dolphin.jump": { + "protocol_id": 388 + }, + "minecraft:entity.dolphin.play": { + "protocol_id": 389 + }, + "minecraft:entity.dolphin.splash": { + "protocol_id": 390 + }, + "minecraft:entity.dolphin.swim": { + "protocol_id": 391 + }, + "minecraft:entity.donkey.ambient": { + "protocol_id": 392 + }, + "minecraft:entity.donkey.angry": { + "protocol_id": 393 + }, + "minecraft:entity.donkey.chest": { + "protocol_id": 394 + }, + "minecraft:entity.donkey.death": { + "protocol_id": 395 + }, + "minecraft:entity.donkey.eat": { + "protocol_id": 396 + }, + "minecraft:entity.donkey.hurt": { + "protocol_id": 397 + }, + "minecraft:entity.dragon_fireball.explode": { + "protocol_id": 440 + }, + "minecraft:entity.drowned.ambient": { + "protocol_id": 415 + }, + "minecraft:entity.drowned.ambient_water": { + "protocol_id": 416 + }, + "minecraft:entity.drowned.death": { + "protocol_id": 417 + }, + "minecraft:entity.drowned.death_water": { + "protocol_id": 418 + }, + "minecraft:entity.drowned.hurt": { + "protocol_id": 419 + }, + "minecraft:entity.drowned.hurt_water": { + "protocol_id": 420 + }, + "minecraft:entity.drowned.shoot": { + "protocol_id": 421 + }, + "minecraft:entity.drowned.step": { + "protocol_id": 422 + }, + "minecraft:entity.drowned.swim": { + "protocol_id": 423 + }, + "minecraft:entity.egg.throw": { + "protocol_id": 425 + }, + "minecraft:entity.elder_guardian.ambient": { + "protocol_id": 426 + }, + "minecraft:entity.elder_guardian.ambient_land": { + "protocol_id": 427 + }, + "minecraft:entity.elder_guardian.curse": { + "protocol_id": 428 + }, + "minecraft:entity.elder_guardian.death": { + "protocol_id": 429 + }, + "minecraft:entity.elder_guardian.death_land": { + "protocol_id": 430 + }, + "minecraft:entity.elder_guardian.flop": { + "protocol_id": 431 + }, + "minecraft:entity.elder_guardian.hurt": { + "protocol_id": 432 + }, + "minecraft:entity.elder_guardian.hurt_land": { + "protocol_id": 433 + }, + "minecraft:entity.ender_dragon.ambient": { + "protocol_id": 438 + }, + "minecraft:entity.ender_dragon.death": { + "protocol_id": 439 + }, + "minecraft:entity.ender_dragon.flap": { + "protocol_id": 441 + }, + "minecraft:entity.ender_dragon.growl": { + "protocol_id": 442 + }, + "minecraft:entity.ender_dragon.hurt": { + "protocol_id": 443 + }, + "minecraft:entity.ender_dragon.shoot": { + "protocol_id": 444 + }, + "minecraft:entity.ender_eye.death": { + "protocol_id": 445 + }, + "minecraft:entity.ender_eye.launch": { + "protocol_id": 446 + }, + "minecraft:entity.ender_pearl.throw": { + "protocol_id": 457 + }, + "minecraft:entity.enderman.ambient": { + "protocol_id": 447 + }, + "minecraft:entity.enderman.death": { + "protocol_id": 448 + }, + "minecraft:entity.enderman.hurt": { + "protocol_id": 449 + }, + "minecraft:entity.enderman.scream": { + "protocol_id": 450 + }, + "minecraft:entity.enderman.stare": { + "protocol_id": 451 + }, + "minecraft:entity.enderman.teleport": { + "protocol_id": 452 + }, + "minecraft:entity.endermite.ambient": { + "protocol_id": 453 + }, + "minecraft:entity.endermite.death": { + "protocol_id": 454 + }, + "minecraft:entity.endermite.hurt": { + "protocol_id": 455 + }, + "minecraft:entity.endermite.step": { + "protocol_id": 456 + }, + "minecraft:entity.evoker.ambient": { + "protocol_id": 461 + }, + "minecraft:entity.evoker.cast_spell": { + "protocol_id": 462 + }, + "minecraft:entity.evoker.celebrate": { + "protocol_id": 463 + }, + "minecraft:entity.evoker.death": { + "protocol_id": 464 + }, + "minecraft:entity.evoker.hurt": { + "protocol_id": 466 + }, + "minecraft:entity.evoker.prepare_attack": { + "protocol_id": 467 + }, + "minecraft:entity.evoker.prepare_summon": { + "protocol_id": 468 + }, + "minecraft:entity.evoker.prepare_wololo": { + "protocol_id": 469 + }, + "minecraft:entity.evoker_fangs.attack": { + "protocol_id": 465 + }, + "minecraft:entity.experience_bottle.throw": { + "protocol_id": 470 + }, + "minecraft:entity.experience_orb.pickup": { + "protocol_id": 471 + }, + "minecraft:entity.firework_rocket.blast": { + "protocol_id": 475 + }, + "minecraft:entity.firework_rocket.blast_far": { + "protocol_id": 476 + }, + "minecraft:entity.firework_rocket.large_blast": { + "protocol_id": 477 + }, + "minecraft:entity.firework_rocket.large_blast_far": { + "protocol_id": 478 + }, + "minecraft:entity.firework_rocket.launch": { + "protocol_id": 479 + }, + "minecraft:entity.firework_rocket.shoot": { + "protocol_id": 480 + }, + "minecraft:entity.firework_rocket.twinkle": { + "protocol_id": 481 + }, + "minecraft:entity.firework_rocket.twinkle_far": { + "protocol_id": 482 + }, + "minecraft:entity.fish.swim": { + "protocol_id": 485 + }, + "minecraft:entity.fishing_bobber.retrieve": { + "protocol_id": 486 + }, + "minecraft:entity.fishing_bobber.splash": { + "protocol_id": 487 + }, + "minecraft:entity.fishing_bobber.throw": { + "protocol_id": 488 + }, + "minecraft:entity.fox.aggro": { + "protocol_id": 495 + }, + "minecraft:entity.fox.ambient": { + "protocol_id": 496 + }, + "minecraft:entity.fox.bite": { + "protocol_id": 497 + }, + "minecraft:entity.fox.death": { + "protocol_id": 498 + }, + "minecraft:entity.fox.eat": { + "protocol_id": 499 + }, + "minecraft:entity.fox.hurt": { + "protocol_id": 500 + }, + "minecraft:entity.fox.screech": { + "protocol_id": 501 + }, + "minecraft:entity.fox.sleep": { + "protocol_id": 502 + }, + "minecraft:entity.fox.sniff": { + "protocol_id": 503 + }, + "minecraft:entity.fox.spit": { + "protocol_id": 504 + }, + "minecraft:entity.fox.teleport": { + "protocol_id": 505 + }, + "minecraft:entity.frog.ambient": { + "protocol_id": 527 + }, + "minecraft:entity.frog.death": { + "protocol_id": 528 + }, + "minecraft:entity.frog.eat": { + "protocol_id": 529 + }, + "minecraft:entity.frog.hurt": { + "protocol_id": 530 + }, + "minecraft:entity.frog.lay_spawn": { + "protocol_id": 531 + }, + "minecraft:entity.frog.long_jump": { + "protocol_id": 532 + }, + "minecraft:entity.frog.step": { + "protocol_id": 533 + }, + "minecraft:entity.frog.tongue": { + "protocol_id": 534 + }, + "minecraft:entity.generic.big_fall": { + "protocol_id": 541 + }, + "minecraft:entity.generic.burn": { + "protocol_id": 542 + }, + "minecraft:entity.generic.death": { + "protocol_id": 543 + }, + "minecraft:entity.generic.drink": { + "protocol_id": 544 + }, + "minecraft:entity.generic.eat": { + "protocol_id": 545 + }, + "minecraft:entity.generic.explode": { + "protocol_id": 546 + }, + "minecraft:entity.generic.extinguish_fire": { + "protocol_id": 547 + }, + "minecraft:entity.generic.hurt": { + "protocol_id": 548 + }, + "minecraft:entity.generic.small_fall": { + "protocol_id": 549 + }, + "minecraft:entity.generic.splash": { + "protocol_id": 550 + }, + "minecraft:entity.generic.swim": { + "protocol_id": 551 + }, + "minecraft:entity.generic.wind_burst": { + "protocol_id": 1466 + }, + "minecraft:entity.ghast.ambient": { + "protocol_id": 552 + }, + "minecraft:entity.ghast.death": { + "protocol_id": 553 + }, + "minecraft:entity.ghast.hurt": { + "protocol_id": 554 + }, + "minecraft:entity.ghast.scream": { + "protocol_id": 555 + }, + "minecraft:entity.ghast.shoot": { + "protocol_id": 556 + }, + "minecraft:entity.ghast.warn": { + "protocol_id": 557 + }, + "minecraft:entity.glow_item_frame.add_item": { + "protocol_id": 569 + }, + "minecraft:entity.glow_item_frame.break": { + "protocol_id": 570 + }, + "minecraft:entity.glow_item_frame.place": { + "protocol_id": 571 + }, + "minecraft:entity.glow_item_frame.remove_item": { + "protocol_id": 572 + }, + "minecraft:entity.glow_item_frame.rotate_item": { + "protocol_id": 573 + }, + "minecraft:entity.glow_squid.ambient": { + "protocol_id": 574 + }, + "minecraft:entity.glow_squid.death": { + "protocol_id": 575 + }, + "minecraft:entity.glow_squid.hurt": { + "protocol_id": 576 + }, + "minecraft:entity.glow_squid.squirt": { + "protocol_id": 577 + }, + "minecraft:entity.goat.ambient": { + "protocol_id": 578 + }, + "minecraft:entity.goat.death": { + "protocol_id": 579 + }, + "minecraft:entity.goat.eat": { + "protocol_id": 580 + }, + "minecraft:entity.goat.horn_break": { + "protocol_id": 586 + }, + "minecraft:entity.goat.hurt": { + "protocol_id": 581 + }, + "minecraft:entity.goat.long_jump": { + "protocol_id": 582 + }, + "minecraft:entity.goat.milk": { + "protocol_id": 583 + }, + "minecraft:entity.goat.prepare_ram": { + "protocol_id": 584 + }, + "minecraft:entity.goat.ram_impact": { + "protocol_id": 585 + }, + "minecraft:entity.goat.screaming.ambient": { + "protocol_id": 588 + }, + "minecraft:entity.goat.screaming.death": { + "protocol_id": 589 + }, + "minecraft:entity.goat.screaming.eat": { + "protocol_id": 590 + }, + "minecraft:entity.goat.screaming.horn_break": { + "protocol_id": 596 + }, + "minecraft:entity.goat.screaming.hurt": { + "protocol_id": 591 + }, + "minecraft:entity.goat.screaming.long_jump": { + "protocol_id": 592 + }, + "minecraft:entity.goat.screaming.milk": { + "protocol_id": 593 + }, + "minecraft:entity.goat.screaming.prepare_ram": { + "protocol_id": 594 + }, + "minecraft:entity.goat.screaming.ram_impact": { + "protocol_id": 595 + }, + "minecraft:entity.goat.step": { + "protocol_id": 597 + }, + "minecraft:entity.guardian.ambient": { + "protocol_id": 610 + }, + "minecraft:entity.guardian.ambient_land": { + "protocol_id": 611 + }, + "minecraft:entity.guardian.attack": { + "protocol_id": 612 + }, + "minecraft:entity.guardian.death": { + "protocol_id": 613 + }, + "minecraft:entity.guardian.death_land": { + "protocol_id": 614 + }, + "minecraft:entity.guardian.flop": { + "protocol_id": 615 + }, + "minecraft:entity.guardian.hurt": { + "protocol_id": 616 + }, + "minecraft:entity.guardian.hurt_land": { + "protocol_id": 617 + }, + "minecraft:entity.hoglin.ambient": { + "protocol_id": 650 + }, + "minecraft:entity.hoglin.angry": { + "protocol_id": 651 + }, + "minecraft:entity.hoglin.attack": { + "protocol_id": 652 + }, + "minecraft:entity.hoglin.converted_to_zombified": { + "protocol_id": 653 + }, + "minecraft:entity.hoglin.death": { + "protocol_id": 654 + }, + "minecraft:entity.hoglin.hurt": { + "protocol_id": 655 + }, + "minecraft:entity.hoglin.retreat": { + "protocol_id": 656 + }, + "minecraft:entity.hoglin.step": { + "protocol_id": 657 + }, + "minecraft:entity.horse.ambient": { + "protocol_id": 674 + }, + "minecraft:entity.horse.angry": { + "protocol_id": 675 + }, + "minecraft:entity.horse.armor": { + "protocol_id": 676 + }, + "minecraft:entity.horse.breathe": { + "protocol_id": 677 + }, + "minecraft:entity.horse.death": { + "protocol_id": 678 + }, + "minecraft:entity.horse.eat": { + "protocol_id": 679 + }, + "minecraft:entity.horse.gallop": { + "protocol_id": 680 + }, + "minecraft:entity.horse.hurt": { + "protocol_id": 681 + }, + "minecraft:entity.horse.jump": { + "protocol_id": 682 + }, + "minecraft:entity.horse.land": { + "protocol_id": 683 + }, + "minecraft:entity.horse.saddle": { + "protocol_id": 684 + }, + "minecraft:entity.horse.step": { + "protocol_id": 685 + }, + "minecraft:entity.horse.step_wood": { + "protocol_id": 686 + }, + "minecraft:entity.hostile.big_fall": { + "protocol_id": 687 + }, + "minecraft:entity.hostile.death": { + "protocol_id": 688 + }, + "minecraft:entity.hostile.hurt": { + "protocol_id": 689 + }, + "minecraft:entity.hostile.small_fall": { + "protocol_id": 690 + }, + "minecraft:entity.hostile.splash": { + "protocol_id": 691 + }, + "minecraft:entity.hostile.swim": { + "protocol_id": 692 + }, + "minecraft:entity.husk.ambient": { + "protocol_id": 693 + }, + "minecraft:entity.husk.converted_to_zombie": { + "protocol_id": 694 + }, + "minecraft:entity.husk.death": { + "protocol_id": 695 + }, + "minecraft:entity.husk.hurt": { + "protocol_id": 696 + }, + "minecraft:entity.husk.step": { + "protocol_id": 697 + }, + "minecraft:entity.illusioner.ambient": { + "protocol_id": 698 + }, + "minecraft:entity.illusioner.cast_spell": { + "protocol_id": 699 + }, + "minecraft:entity.illusioner.death": { + "protocol_id": 700 + }, + "minecraft:entity.illusioner.hurt": { + "protocol_id": 701 + }, + "minecraft:entity.illusioner.mirror_move": { + "protocol_id": 702 + }, + "minecraft:entity.illusioner.prepare_blindness": { + "protocol_id": 703 + }, + "minecraft:entity.illusioner.prepare_mirror": { + "protocol_id": 704 + }, + "minecraft:entity.iron_golem.attack": { + "protocol_id": 708 + }, + "minecraft:entity.iron_golem.damage": { + "protocol_id": 709 + }, + "minecraft:entity.iron_golem.death": { + "protocol_id": 710 + }, + "minecraft:entity.iron_golem.hurt": { + "protocol_id": 711 + }, + "minecraft:entity.iron_golem.repair": { + "protocol_id": 712 + }, + "minecraft:entity.iron_golem.step": { + "protocol_id": 713 + }, + "minecraft:entity.item.break": { + "protocol_id": 721 + }, + "minecraft:entity.item.pickup": { + "protocol_id": 722 + }, + "minecraft:entity.item_frame.add_item": { + "protocol_id": 716 + }, + "minecraft:entity.item_frame.break": { + "protocol_id": 717 + }, + "minecraft:entity.item_frame.place": { + "protocol_id": 718 + }, + "minecraft:entity.item_frame.remove_item": { + "protocol_id": 719 + }, + "minecraft:entity.item_frame.rotate_item": { + "protocol_id": 720 + }, + "minecraft:entity.leash_knot.break": { + "protocol_id": 738 + }, + "minecraft:entity.leash_knot.place": { + "protocol_id": 739 + }, + "minecraft:entity.lightning_bolt.impact": { + "protocol_id": 741 + }, + "minecraft:entity.lightning_bolt.thunder": { + "protocol_id": 742 + }, + "minecraft:entity.lingering_potion.throw": { + "protocol_id": 743 + }, + "minecraft:entity.llama.ambient": { + "protocol_id": 744 + }, + "minecraft:entity.llama.angry": { + "protocol_id": 745 + }, + "minecraft:entity.llama.chest": { + "protocol_id": 746 + }, + "minecraft:entity.llama.death": { + "protocol_id": 747 + }, + "minecraft:entity.llama.eat": { + "protocol_id": 748 + }, + "minecraft:entity.llama.hurt": { + "protocol_id": 749 + }, + "minecraft:entity.llama.spit": { + "protocol_id": 750 + }, + "minecraft:entity.llama.step": { + "protocol_id": 751 + }, + "minecraft:entity.llama.swag": { + "protocol_id": 752 + }, + "minecraft:entity.magma_cube.death": { + "protocol_id": 760 + }, + "minecraft:entity.magma_cube.death_small": { + "protocol_id": 753 + }, + "minecraft:entity.magma_cube.hurt": { + "protocol_id": 761 + }, + "minecraft:entity.magma_cube.hurt_small": { + "protocol_id": 762 + }, + "minecraft:entity.magma_cube.jump": { + "protocol_id": 763 + }, + "minecraft:entity.magma_cube.squish": { + "protocol_id": 764 + }, + "minecraft:entity.magma_cube.squish_small": { + "protocol_id": 765 + }, + "minecraft:entity.minecart.inside": { + "protocol_id": 781 + }, + "minecraft:entity.minecart.inside.underwater": { + "protocol_id": 780 + }, + "minecraft:entity.minecart.riding": { + "protocol_id": 782 + }, + "minecraft:entity.mooshroom.convert": { + "protocol_id": 783 + }, + "minecraft:entity.mooshroom.eat": { + "protocol_id": 784 + }, + "minecraft:entity.mooshroom.milk": { + "protocol_id": 785 + }, + "minecraft:entity.mooshroom.shear": { + "protocol_id": 787 + }, + "minecraft:entity.mooshroom.suspicious_milk": { + "protocol_id": 786 + }, + "minecraft:entity.mule.ambient": { + "protocol_id": 818 + }, + "minecraft:entity.mule.angry": { + "protocol_id": 819 + }, + "minecraft:entity.mule.chest": { + "protocol_id": 820 + }, + "minecraft:entity.mule.death": { + "protocol_id": 821 + }, + "minecraft:entity.mule.eat": { + "protocol_id": 822 + }, + "minecraft:entity.mule.hurt": { + "protocol_id": 823 + }, + "minecraft:entity.ocelot.ambient": { + "protocol_id": 962 + }, + "minecraft:entity.ocelot.death": { + "protocol_id": 963 + }, + "minecraft:entity.ocelot.hurt": { + "protocol_id": 961 + }, + "minecraft:entity.painting.break": { + "protocol_id": 964 + }, + "minecraft:entity.painting.place": { + "protocol_id": 965 + }, + "minecraft:entity.panda.aggressive_ambient": { + "protocol_id": 973 + }, + "minecraft:entity.panda.ambient": { + "protocol_id": 968 + }, + "minecraft:entity.panda.bite": { + "protocol_id": 976 + }, + "minecraft:entity.panda.cant_breed": { + "protocol_id": 972 + }, + "minecraft:entity.panda.death": { + "protocol_id": 969 + }, + "minecraft:entity.panda.eat": { + "protocol_id": 970 + }, + "minecraft:entity.panda.hurt": { + "protocol_id": 975 + }, + "minecraft:entity.panda.pre_sneeze": { + "protocol_id": 966 + }, + "minecraft:entity.panda.sneeze": { + "protocol_id": 967 + }, + "minecraft:entity.panda.step": { + "protocol_id": 971 + }, + "minecraft:entity.panda.worried_ambient": { + "protocol_id": 974 + }, + "minecraft:entity.parrot.ambient": { + "protocol_id": 977 + }, + "minecraft:entity.parrot.death": { + "protocol_id": 978 + }, + "minecraft:entity.parrot.eat": { + "protocol_id": 979 + }, + "minecraft:entity.parrot.fly": { + "protocol_id": 980 + }, + "minecraft:entity.parrot.hurt": { + "protocol_id": 981 + }, + "minecraft:entity.parrot.imitate.blaze": { + "protocol_id": 982 + }, + "minecraft:entity.parrot.imitate.breeze": { + "protocol_id": 983 + }, + "minecraft:entity.parrot.imitate.creeper": { + "protocol_id": 984 + }, + "minecraft:entity.parrot.imitate.drowned": { + "protocol_id": 985 + }, + "minecraft:entity.parrot.imitate.elder_guardian": { + "protocol_id": 986 + }, + "minecraft:entity.parrot.imitate.ender_dragon": { + "protocol_id": 987 + }, + "minecraft:entity.parrot.imitate.endermite": { + "protocol_id": 988 + }, + "minecraft:entity.parrot.imitate.evoker": { + "protocol_id": 989 + }, + "minecraft:entity.parrot.imitate.ghast": { + "protocol_id": 990 + }, + "minecraft:entity.parrot.imitate.guardian": { + "protocol_id": 991 + }, + "minecraft:entity.parrot.imitate.hoglin": { + "protocol_id": 992 + }, + "minecraft:entity.parrot.imitate.husk": { + "protocol_id": 993 + }, + "minecraft:entity.parrot.imitate.illusioner": { + "protocol_id": 994 + }, + "minecraft:entity.parrot.imitate.magma_cube": { + "protocol_id": 995 + }, + "minecraft:entity.parrot.imitate.phantom": { + "protocol_id": 996 + }, + "minecraft:entity.parrot.imitate.piglin": { + "protocol_id": 997 + }, + "minecraft:entity.parrot.imitate.piglin_brute": { + "protocol_id": 998 + }, + "minecraft:entity.parrot.imitate.pillager": { + "protocol_id": 999 + }, + "minecraft:entity.parrot.imitate.ravager": { + "protocol_id": 1000 + }, + "minecraft:entity.parrot.imitate.shulker": { + "protocol_id": 1001 + }, + "minecraft:entity.parrot.imitate.silverfish": { + "protocol_id": 1002 + }, + "minecraft:entity.parrot.imitate.skeleton": { + "protocol_id": 1003 + }, + "minecraft:entity.parrot.imitate.slime": { + "protocol_id": 1004 + }, + "minecraft:entity.parrot.imitate.spider": { + "protocol_id": 1005 + }, + "minecraft:entity.parrot.imitate.stray": { + "protocol_id": 1006 + }, + "minecraft:entity.parrot.imitate.vex": { + "protocol_id": 1007 + }, + "minecraft:entity.parrot.imitate.vindicator": { + "protocol_id": 1008 + }, + "minecraft:entity.parrot.imitate.warden": { + "protocol_id": 1009 + }, + "minecraft:entity.parrot.imitate.witch": { + "protocol_id": 1010 + }, + "minecraft:entity.parrot.imitate.wither": { + "protocol_id": 1011 + }, + "minecraft:entity.parrot.imitate.wither_skeleton": { + "protocol_id": 1012 + }, + "minecraft:entity.parrot.imitate.zoglin": { + "protocol_id": 1013 + }, + "minecraft:entity.parrot.imitate.zombie": { + "protocol_id": 1014 + }, + "minecraft:entity.parrot.imitate.zombie_villager": { + "protocol_id": 1015 + }, + "minecraft:entity.parrot.step": { + "protocol_id": 1016 + }, + "minecraft:entity.phantom.ambient": { + "protocol_id": 1017 + }, + "minecraft:entity.phantom.bite": { + "protocol_id": 1018 + }, + "minecraft:entity.phantom.death": { + "protocol_id": 1019 + }, + "minecraft:entity.phantom.flap": { + "protocol_id": 1020 + }, + "minecraft:entity.phantom.hurt": { + "protocol_id": 1021 + }, + "minecraft:entity.phantom.swoop": { + "protocol_id": 1022 + }, + "minecraft:entity.pig.ambient": { + "protocol_id": 1023 + }, + "minecraft:entity.pig.death": { + "protocol_id": 1024 + }, + "minecraft:entity.pig.hurt": { + "protocol_id": 1025 + }, + "minecraft:entity.pig.saddle": { + "protocol_id": 1026 + }, + "minecraft:entity.pig.step": { + "protocol_id": 1027 + }, + "minecraft:entity.piglin.admiring_item": { + "protocol_id": 1028 + }, + "minecraft:entity.piglin.ambient": { + "protocol_id": 1029 + }, + "minecraft:entity.piglin.angry": { + "protocol_id": 1030 + }, + "minecraft:entity.piglin.celebrate": { + "protocol_id": 1031 + }, + "minecraft:entity.piglin.converted_to_zombified": { + "protocol_id": 1037 + }, + "minecraft:entity.piglin.death": { + "protocol_id": 1032 + }, + "minecraft:entity.piglin.hurt": { + "protocol_id": 1034 + }, + "minecraft:entity.piglin.jealous": { + "protocol_id": 1033 + }, + "minecraft:entity.piglin.retreat": { + "protocol_id": 1035 + }, + "minecraft:entity.piglin.step": { + "protocol_id": 1036 + }, + "minecraft:entity.piglin_brute.ambient": { + "protocol_id": 1038 + }, + "minecraft:entity.piglin_brute.angry": { + "protocol_id": 1039 + }, + "minecraft:entity.piglin_brute.converted_to_zombified": { + "protocol_id": 1043 + }, + "minecraft:entity.piglin_brute.death": { + "protocol_id": 1040 + }, + "minecraft:entity.piglin_brute.hurt": { + "protocol_id": 1041 + }, + "minecraft:entity.piglin_brute.step": { + "protocol_id": 1042 + }, + "minecraft:entity.pillager.ambient": { + "protocol_id": 1044 + }, + "minecraft:entity.pillager.celebrate": { + "protocol_id": 1045 + }, + "minecraft:entity.pillager.death": { + "protocol_id": 1046 + }, + "minecraft:entity.pillager.hurt": { + "protocol_id": 1047 + }, + "minecraft:entity.player.attack.crit": { + "protocol_id": 1050 + }, + "minecraft:entity.player.attack.knockback": { + "protocol_id": 1051 + }, + "minecraft:entity.player.attack.nodamage": { + "protocol_id": 1052 + }, + "minecraft:entity.player.attack.strong": { + "protocol_id": 1053 + }, + "minecraft:entity.player.attack.sweep": { + "protocol_id": 1054 + }, + "minecraft:entity.player.attack.weak": { + "protocol_id": 1055 + }, + "minecraft:entity.player.big_fall": { + "protocol_id": 1056 + }, + "minecraft:entity.player.breath": { + "protocol_id": 1057 + }, + "minecraft:entity.player.burp": { + "protocol_id": 1058 + }, + "minecraft:entity.player.death": { + "protocol_id": 1059 + }, + "minecraft:entity.player.hurt": { + "protocol_id": 1060 + }, + "minecraft:entity.player.hurt_drown": { + "protocol_id": 1061 + }, + "minecraft:entity.player.hurt_freeze": { + "protocol_id": 1062 + }, + "minecraft:entity.player.hurt_on_fire": { + "protocol_id": 1063 + }, + "minecraft:entity.player.hurt_sweet_berry_bush": { + "protocol_id": 1064 + }, + "minecraft:entity.player.levelup": { + "protocol_id": 1065 + }, + "minecraft:entity.player.small_fall": { + "protocol_id": 1066 + }, + "minecraft:entity.player.splash": { + "protocol_id": 1067 + }, + "minecraft:entity.player.splash.high_speed": { + "protocol_id": 1068 + }, + "minecraft:entity.player.swim": { + "protocol_id": 1069 + }, + "minecraft:entity.player.teleport": { + "protocol_id": 1070 + }, + "minecraft:entity.polar_bear.ambient": { + "protocol_id": 1071 + }, + "minecraft:entity.polar_bear.ambient_baby": { + "protocol_id": 1072 + }, + "minecraft:entity.polar_bear.death": { + "protocol_id": 1073 + }, + "minecraft:entity.polar_bear.hurt": { + "protocol_id": 1074 + }, + "minecraft:entity.polar_bear.step": { + "protocol_id": 1075 + }, + "minecraft:entity.polar_bear.warning": { + "protocol_id": 1076 + }, + "minecraft:entity.puffer_fish.ambient": { + "protocol_id": 1090 + }, + "minecraft:entity.puffer_fish.blow_out": { + "protocol_id": 1091 + }, + "minecraft:entity.puffer_fish.blow_up": { + "protocol_id": 1092 + }, + "minecraft:entity.puffer_fish.death": { + "protocol_id": 1093 + }, + "minecraft:entity.puffer_fish.flop": { + "protocol_id": 1094 + }, + "minecraft:entity.puffer_fish.hurt": { + "protocol_id": 1095 + }, + "minecraft:entity.puffer_fish.sting": { + "protocol_id": 1096 + }, + "minecraft:entity.rabbit.ambient": { + "protocol_id": 1098 + }, + "minecraft:entity.rabbit.attack": { + "protocol_id": 1099 + }, + "minecraft:entity.rabbit.death": { + "protocol_id": 1100 + }, + "minecraft:entity.rabbit.hurt": { + "protocol_id": 1101 + }, + "minecraft:entity.rabbit.jump": { + "protocol_id": 1102 + }, + "minecraft:entity.ravager.ambient": { + "protocol_id": 1104 + }, + "minecraft:entity.ravager.attack": { + "protocol_id": 1105 + }, + "minecraft:entity.ravager.celebrate": { + "protocol_id": 1106 + }, + "minecraft:entity.ravager.death": { + "protocol_id": 1107 + }, + "minecraft:entity.ravager.hurt": { + "protocol_id": 1108 + }, + "minecraft:entity.ravager.roar": { + "protocol_id": 1111 + }, + "minecraft:entity.ravager.step": { + "protocol_id": 1109 + }, + "minecraft:entity.ravager.stunned": { + "protocol_id": 1110 + }, + "minecraft:entity.salmon.ambient": { + "protocol_id": 1132 + }, + "minecraft:entity.salmon.death": { + "protocol_id": 1133 + }, + "minecraft:entity.salmon.flop": { + "protocol_id": 1134 + }, + "minecraft:entity.salmon.hurt": { + "protocol_id": 1135 + }, + "minecraft:entity.sheep.ambient": { + "protocol_id": 1177 + }, + "minecraft:entity.sheep.death": { + "protocol_id": 1178 + }, + "minecraft:entity.sheep.hurt": { + "protocol_id": 1179 + }, + "minecraft:entity.sheep.shear": { + "protocol_id": 1180 + }, + "minecraft:entity.sheep.step": { + "protocol_id": 1181 + }, + "minecraft:entity.shulker.ambient": { + "protocol_id": 1190 + }, + "minecraft:entity.shulker.close": { + "protocol_id": 1195 + }, + "minecraft:entity.shulker.death": { + "protocol_id": 1196 + }, + "minecraft:entity.shulker.hurt": { + "protocol_id": 1197 + }, + "minecraft:entity.shulker.hurt_closed": { + "protocol_id": 1198 + }, + "minecraft:entity.shulker.open": { + "protocol_id": 1199 + }, + "minecraft:entity.shulker.shoot": { + "protocol_id": 1200 + }, + "minecraft:entity.shulker.teleport": { + "protocol_id": 1201 + }, + "minecraft:entity.shulker_bullet.hit": { + "protocol_id": 1193 + }, + "minecraft:entity.shulker_bullet.hurt": { + "protocol_id": 1194 + }, + "minecraft:entity.silverfish.ambient": { + "protocol_id": 1202 + }, + "minecraft:entity.silverfish.death": { + "protocol_id": 1203 + }, + "minecraft:entity.silverfish.hurt": { + "protocol_id": 1204 + }, + "minecraft:entity.silverfish.step": { + "protocol_id": 1205 + }, + "minecraft:entity.skeleton.ambient": { + "protocol_id": 1206 + }, + "minecraft:entity.skeleton.converted_to_stray": { + "protocol_id": 1207 + }, + "minecraft:entity.skeleton.death": { + "protocol_id": 1208 + }, + "minecraft:entity.skeleton.hurt": { + "protocol_id": 1217 + }, + "minecraft:entity.skeleton.shoot": { + "protocol_id": 1218 + }, + "minecraft:entity.skeleton.step": { + "protocol_id": 1219 + }, + "minecraft:entity.skeleton_horse.ambient": { + "protocol_id": 1209 + }, + "minecraft:entity.skeleton_horse.ambient_water": { + "protocol_id": 1213 + }, + "minecraft:entity.skeleton_horse.death": { + "protocol_id": 1210 + }, + "minecraft:entity.skeleton_horse.gallop_water": { + "protocol_id": 1214 + }, + "minecraft:entity.skeleton_horse.hurt": { + "protocol_id": 1211 + }, + "minecraft:entity.skeleton_horse.jump_water": { + "protocol_id": 1215 + }, + "minecraft:entity.skeleton_horse.step_water": { + "protocol_id": 1216 + }, + "minecraft:entity.skeleton_horse.swim": { + "protocol_id": 1212 + }, + "minecraft:entity.slime.attack": { + "protocol_id": 1220 + }, + "minecraft:entity.slime.death": { + "protocol_id": 1221 + }, + "minecraft:entity.slime.death_small": { + "protocol_id": 1262 + }, + "minecraft:entity.slime.hurt": { + "protocol_id": 1222 + }, + "minecraft:entity.slime.hurt_small": { + "protocol_id": 1263 + }, + "minecraft:entity.slime.jump": { + "protocol_id": 1223 + }, + "minecraft:entity.slime.jump_small": { + "protocol_id": 1264 + }, + "minecraft:entity.slime.squish": { + "protocol_id": 1224 + }, + "minecraft:entity.slime.squish_small": { + "protocol_id": 1265 + }, + "minecraft:entity.sniffer.death": { + "protocol_id": 1272 + }, + "minecraft:entity.sniffer.digging": { + "protocol_id": 1277 + }, + "minecraft:entity.sniffer.digging_stop": { + "protocol_id": 1278 + }, + "minecraft:entity.sniffer.drop_seed": { + "protocol_id": 1273 + }, + "minecraft:entity.sniffer.eat": { + "protocol_id": 1269 + }, + "minecraft:entity.sniffer.happy": { + "protocol_id": 1279 + }, + "minecraft:entity.sniffer.hurt": { + "protocol_id": 1271 + }, + "minecraft:entity.sniffer.idle": { + "protocol_id": 1270 + }, + "minecraft:entity.sniffer.scenting": { + "protocol_id": 1274 + }, + "minecraft:entity.sniffer.searching": { + "protocol_id": 1276 + }, + "minecraft:entity.sniffer.sniffing": { + "protocol_id": 1275 + }, + "minecraft:entity.sniffer.step": { + "protocol_id": 1268 + }, + "minecraft:entity.snow_golem.ambient": { + "protocol_id": 1286 + }, + "minecraft:entity.snow_golem.death": { + "protocol_id": 1287 + }, + "minecraft:entity.snow_golem.hurt": { + "protocol_id": 1288 + }, + "minecraft:entity.snow_golem.shear": { + "protocol_id": 1290 + }, + "minecraft:entity.snow_golem.shoot": { + "protocol_id": 1289 + }, + "minecraft:entity.snowball.throw": { + "protocol_id": 1283 + }, + "minecraft:entity.spider.ambient": { + "protocol_id": 1294 + }, + "minecraft:entity.spider.death": { + "protocol_id": 1295 + }, + "minecraft:entity.spider.hurt": { + "protocol_id": 1296 + }, + "minecraft:entity.spider.step": { + "protocol_id": 1297 + }, + "minecraft:entity.splash_potion.break": { + "protocol_id": 1298 + }, + "minecraft:entity.splash_potion.throw": { + "protocol_id": 1299 + }, + "minecraft:entity.squid.ambient": { + "protocol_id": 1308 + }, + "minecraft:entity.squid.death": { + "protocol_id": 1309 + }, + "minecraft:entity.squid.hurt": { + "protocol_id": 1310 + }, + "minecraft:entity.squid.squirt": { + "protocol_id": 1311 + }, + "minecraft:entity.stray.ambient": { + "protocol_id": 1321 + }, + "minecraft:entity.stray.death": { + "protocol_id": 1322 + }, + "minecraft:entity.stray.hurt": { + "protocol_id": 1323 + }, + "minecraft:entity.stray.step": { + "protocol_id": 1324 + }, + "minecraft:entity.strider.ambient": { + "protocol_id": 1253 + }, + "minecraft:entity.strider.death": { + "protocol_id": 1256 + }, + "minecraft:entity.strider.eat": { + "protocol_id": 1260 + }, + "minecraft:entity.strider.happy": { + "protocol_id": 1254 + }, + "minecraft:entity.strider.hurt": { + "protocol_id": 1257 + }, + "minecraft:entity.strider.retreat": { + "protocol_id": 1255 + }, + "minecraft:entity.strider.saddle": { + "protocol_id": 1261 + }, + "minecraft:entity.strider.step": { + "protocol_id": 1258 + }, + "minecraft:entity.strider.step_lava": { + "protocol_id": 1259 + }, + "minecraft:entity.tadpole.death": { + "protocol_id": 1328 + }, + "minecraft:entity.tadpole.flop": { + "protocol_id": 1329 + }, + "minecraft:entity.tadpole.grow_up": { + "protocol_id": 1330 + }, + "minecraft:entity.tadpole.hurt": { + "protocol_id": 1331 + }, + "minecraft:entity.tnt.primed": { + "protocol_id": 1333 + }, + "minecraft:entity.tropical_fish.ambient": { + "protocol_id": 1347 + }, + "minecraft:entity.tropical_fish.death": { + "protocol_id": 1348 + }, + "minecraft:entity.tropical_fish.flop": { + "protocol_id": 1349 + }, + "minecraft:entity.tropical_fish.hurt": { + "protocol_id": 1350 + }, + "minecraft:entity.turtle.ambient_land": { + "protocol_id": 1366 + }, + "minecraft:entity.turtle.death": { + "protocol_id": 1367 + }, + "minecraft:entity.turtle.death_baby": { + "protocol_id": 1368 + }, + "minecraft:entity.turtle.egg_break": { + "protocol_id": 1369 + }, + "minecraft:entity.turtle.egg_crack": { + "protocol_id": 1370 + }, + "minecraft:entity.turtle.egg_hatch": { + "protocol_id": 1371 + }, + "minecraft:entity.turtle.hurt": { + "protocol_id": 1372 + }, + "minecraft:entity.turtle.hurt_baby": { + "protocol_id": 1373 + }, + "minecraft:entity.turtle.lay_egg": { + "protocol_id": 1374 + }, + "minecraft:entity.turtle.shamble": { + "protocol_id": 1375 + }, + "minecraft:entity.turtle.shamble_baby": { + "protocol_id": 1376 + }, + "minecraft:entity.turtle.swim": { + "protocol_id": 1377 + }, + "minecraft:entity.vex.ambient": { + "protocol_id": 1387 + }, + "minecraft:entity.vex.charge": { + "protocol_id": 1388 + }, + "minecraft:entity.vex.death": { + "protocol_id": 1389 + }, + "minecraft:entity.vex.hurt": { + "protocol_id": 1390 + }, + "minecraft:entity.villager.ambient": { + "protocol_id": 1391 + }, + "minecraft:entity.villager.celebrate": { + "protocol_id": 1392 + }, + "minecraft:entity.villager.death": { + "protocol_id": 1393 + }, + "minecraft:entity.villager.hurt": { + "protocol_id": 1394 + }, + "minecraft:entity.villager.no": { + "protocol_id": 1395 + }, + "minecraft:entity.villager.trade": { + "protocol_id": 1396 + }, + "minecraft:entity.villager.work_armorer": { + "protocol_id": 1398 + }, + "minecraft:entity.villager.work_butcher": { + "protocol_id": 1399 + }, + "minecraft:entity.villager.work_cartographer": { + "protocol_id": 1400 + }, + "minecraft:entity.villager.work_cleric": { + "protocol_id": 1401 + }, + "minecraft:entity.villager.work_farmer": { + "protocol_id": 1402 + }, + "minecraft:entity.villager.work_fisherman": { + "protocol_id": 1403 + }, + "minecraft:entity.villager.work_fletcher": { + "protocol_id": 1404 + }, + "minecraft:entity.villager.work_leatherworker": { + "protocol_id": 1405 + }, + "minecraft:entity.villager.work_librarian": { + "protocol_id": 1406 + }, + "minecraft:entity.villager.work_mason": { + "protocol_id": 1407 + }, + "minecraft:entity.villager.work_shepherd": { + "protocol_id": 1408 + }, + "minecraft:entity.villager.work_toolsmith": { + "protocol_id": 1409 + }, + "minecraft:entity.villager.work_weaponsmith": { + "protocol_id": 1410 + }, + "minecraft:entity.villager.yes": { + "protocol_id": 1397 + }, + "minecraft:entity.vindicator.ambient": { + "protocol_id": 1411 + }, + "minecraft:entity.vindicator.celebrate": { + "protocol_id": 1412 + }, + "minecraft:entity.vindicator.death": { + "protocol_id": 1413 + }, + "minecraft:entity.vindicator.hurt": { + "protocol_id": 1414 + }, + "minecraft:entity.wandering_trader.ambient": { + "protocol_id": 1421 + }, + "minecraft:entity.wandering_trader.death": { + "protocol_id": 1422 + }, + "minecraft:entity.wandering_trader.disappeared": { + "protocol_id": 1423 + }, + "minecraft:entity.wandering_trader.drink_milk": { + "protocol_id": 1424 + }, + "minecraft:entity.wandering_trader.drink_potion": { + "protocol_id": 1425 + }, + "minecraft:entity.wandering_trader.hurt": { + "protocol_id": 1426 + }, + "minecraft:entity.wandering_trader.no": { + "protocol_id": 1427 + }, + "minecraft:entity.wandering_trader.reappeared": { + "protocol_id": 1428 + }, + "minecraft:entity.wandering_trader.trade": { + "protocol_id": 1429 + }, + "minecraft:entity.wandering_trader.yes": { + "protocol_id": 1430 + }, + "minecraft:entity.warden.agitated": { + "protocol_id": 1431 + }, + "minecraft:entity.warden.ambient": { + "protocol_id": 1432 + }, + "minecraft:entity.warden.angry": { + "protocol_id": 1433 + }, + "minecraft:entity.warden.attack_impact": { + "protocol_id": 1434 + }, + "minecraft:entity.warden.death": { + "protocol_id": 1435 + }, + "minecraft:entity.warden.dig": { + "protocol_id": 1436 + }, + "minecraft:entity.warden.emerge": { + "protocol_id": 1437 + }, + "minecraft:entity.warden.heartbeat": { + "protocol_id": 1438 + }, + "minecraft:entity.warden.hurt": { + "protocol_id": 1439 + }, + "minecraft:entity.warden.listening": { + "protocol_id": 1440 + }, + "minecraft:entity.warden.listening_angry": { + "protocol_id": 1441 + }, + "minecraft:entity.warden.nearby_close": { + "protocol_id": 1442 + }, + "minecraft:entity.warden.nearby_closer": { + "protocol_id": 1443 + }, + "minecraft:entity.warden.nearby_closest": { + "protocol_id": 1444 + }, + "minecraft:entity.warden.roar": { + "protocol_id": 1445 + }, + "minecraft:entity.warden.sniff": { + "protocol_id": 1446 + }, + "minecraft:entity.warden.sonic_boom": { + "protocol_id": 1447 + }, + "minecraft:entity.warden.sonic_charge": { + "protocol_id": 1448 + }, + "minecraft:entity.warden.step": { + "protocol_id": 1449 + }, + "minecraft:entity.warden.tendril_clicks": { + "protocol_id": 1450 + }, + "minecraft:entity.witch.ambient": { + "protocol_id": 1467 + }, + "minecraft:entity.witch.celebrate": { + "protocol_id": 1468 + }, + "minecraft:entity.witch.death": { + "protocol_id": 1469 + }, + "minecraft:entity.witch.drink": { + "protocol_id": 1470 + }, + "minecraft:entity.witch.hurt": { + "protocol_id": 1471 + }, + "minecraft:entity.witch.throw": { + "protocol_id": 1472 + }, + "minecraft:entity.wither.ambient": { + "protocol_id": 1473 + }, + "minecraft:entity.wither.break_block": { + "protocol_id": 1474 + }, + "minecraft:entity.wither.death": { + "protocol_id": 1475 + }, + "minecraft:entity.wither.hurt": { + "protocol_id": 1476 + }, + "minecraft:entity.wither.shoot": { + "protocol_id": 1477 + }, + "minecraft:entity.wither.spawn": { + "protocol_id": 1482 + }, + "minecraft:entity.wither_skeleton.ambient": { + "protocol_id": 1478 + }, + "minecraft:entity.wither_skeleton.death": { + "protocol_id": 1479 + }, + "minecraft:entity.wither_skeleton.hurt": { + "protocol_id": 1480 + }, + "minecraft:entity.wither_skeleton.step": { + "protocol_id": 1481 + }, + "minecraft:entity.wolf.ambient": { + "protocol_id": 1483 + }, + "minecraft:entity.wolf.death": { + "protocol_id": 1484 + }, + "minecraft:entity.wolf.growl": { + "protocol_id": 1485 + }, + "minecraft:entity.wolf.howl": { + "protocol_id": 1486 + }, + "minecraft:entity.wolf.hurt": { + "protocol_id": 1487 + }, + "minecraft:entity.wolf.pant": { + "protocol_id": 1488 + }, + "minecraft:entity.wolf.shake": { + "protocol_id": 1489 + }, + "minecraft:entity.wolf.step": { + "protocol_id": 1490 + }, + "minecraft:entity.wolf.whine": { + "protocol_id": 1491 + }, + "minecraft:entity.zoglin.ambient": { + "protocol_id": 1510 + }, + "minecraft:entity.zoglin.angry": { + "protocol_id": 1511 + }, + "minecraft:entity.zoglin.attack": { + "protocol_id": 1512 + }, + "minecraft:entity.zoglin.death": { + "protocol_id": 1513 + }, + "minecraft:entity.zoglin.hurt": { + "protocol_id": 1514 + }, + "minecraft:entity.zoglin.step": { + "protocol_id": 1515 + }, + "minecraft:entity.zombie.ambient": { + "protocol_id": 1516 + }, + "minecraft:entity.zombie.attack_iron_door": { + "protocol_id": 1518 + }, + "minecraft:entity.zombie.attack_wooden_door": { + "protocol_id": 1517 + }, + "minecraft:entity.zombie.break_wooden_door": { + "protocol_id": 1519 + }, + "minecraft:entity.zombie.converted_to_drowned": { + "protocol_id": 1520 + }, + "minecraft:entity.zombie.death": { + "protocol_id": 1521 + }, + "minecraft:entity.zombie.destroy_egg": { + "protocol_id": 1522 + }, + "minecraft:entity.zombie.hurt": { + "protocol_id": 1526 + }, + "minecraft:entity.zombie.infect": { + "protocol_id": 1527 + }, + "minecraft:entity.zombie.step": { + "protocol_id": 1532 + }, + "minecraft:entity.zombie_horse.ambient": { + "protocol_id": 1523 + }, + "minecraft:entity.zombie_horse.death": { + "protocol_id": 1524 + }, + "minecraft:entity.zombie_horse.hurt": { + "protocol_id": 1525 + }, + "minecraft:entity.zombie_villager.ambient": { + "protocol_id": 1533 + }, + "minecraft:entity.zombie_villager.converted": { + "protocol_id": 1534 + }, + "minecraft:entity.zombie_villager.cure": { + "protocol_id": 1535 + }, + "minecraft:entity.zombie_villager.death": { + "protocol_id": 1536 + }, + "minecraft:entity.zombie_villager.hurt": { + "protocol_id": 1537 + }, + "minecraft:entity.zombie_villager.step": { + "protocol_id": 1538 + }, + "minecraft:entity.zombified_piglin.ambient": { + "protocol_id": 1528 + }, + "minecraft:entity.zombified_piglin.angry": { + "protocol_id": 1529 + }, + "minecraft:entity.zombified_piglin.death": { + "protocol_id": 1530 + }, + "minecraft:entity.zombified_piglin.hurt": { + "protocol_id": 1531 + }, + "minecraft:event.raid.horn": { + "protocol_id": 1103 + }, + "minecraft:intentionally_empty": { + "protocol_id": 893 + }, + "minecraft:item.armor.equip_chain": { + "protocol_id": 54 + }, + "minecraft:item.armor.equip_diamond": { + "protocol_id": 55 + }, + "minecraft:item.armor.equip_elytra": { + "protocol_id": 56 + }, + "minecraft:item.armor.equip_generic": { + "protocol_id": 57 + }, + "minecraft:item.armor.equip_gold": { + "protocol_id": 58 + }, + "minecraft:item.armor.equip_iron": { + "protocol_id": 59 + }, + "minecraft:item.armor.equip_leather": { + "protocol_id": 60 + }, + "minecraft:item.armor.equip_netherite": { + "protocol_id": 61 + }, + "minecraft:item.armor.equip_turtle": { + "protocol_id": 62 + }, + "minecraft:item.axe.scrape": { + "protocol_id": 71 + }, + "minecraft:item.axe.strip": { + "protocol_id": 70 + }, + "minecraft:item.axe.wax_off": { + "protocol_id": 72 + }, + "minecraft:item.bone_meal.use": { + "protocol_id": 159 + }, + "minecraft:item.book.page_turn": { + "protocol_id": 160 + }, + "minecraft:item.book.put": { + "protocol_id": 161 + }, + "minecraft:item.bottle.empty": { + "protocol_id": 163 + }, + "minecraft:item.bottle.fill": { + "protocol_id": 164 + }, + "minecraft:item.bottle.fill_dragonbreath": { + "protocol_id": 165 + }, + "minecraft:item.brush.brushing.generic": { + "protocol_id": 176 + }, + "minecraft:item.brush.brushing.gravel": { + "protocol_id": 178 + }, + "minecraft:item.brush.brushing.gravel.complete": { + "protocol_id": 180 + }, + "minecraft:item.brush.brushing.sand": { + "protocol_id": 177 + }, + "minecraft:item.brush.brushing.sand.complete": { + "protocol_id": 179 + }, + "minecraft:item.bucket.empty": { + "protocol_id": 186 + }, + "minecraft:item.bucket.empty_axolotl": { + "protocol_id": 187 + }, + "minecraft:item.bucket.empty_fish": { + "protocol_id": 188 + }, + "minecraft:item.bucket.empty_lava": { + "protocol_id": 189 + }, + "minecraft:item.bucket.empty_powder_snow": { + "protocol_id": 190 + }, + "minecraft:item.bucket.empty_tadpole": { + "protocol_id": 191 + }, + "minecraft:item.bucket.fill": { + "protocol_id": 192 + }, + "minecraft:item.bucket.fill_axolotl": { + "protocol_id": 193 + }, + "minecraft:item.bucket.fill_fish": { + "protocol_id": 194 + }, + "minecraft:item.bucket.fill_lava": { + "protocol_id": 195 + }, + "minecraft:item.bucket.fill_powder_snow": { + "protocol_id": 196 + }, + "minecraft:item.bucket.fill_tadpole": { + "protocol_id": 197 + }, + "minecraft:item.bundle.drop_contents": { + "protocol_id": 198 + }, + "minecraft:item.bundle.insert": { + "protocol_id": 199 + }, + "minecraft:item.bundle.remove_one": { + "protocol_id": 200 + }, + "minecraft:item.chorus_fruit.teleport": { + "protocol_id": 295 + }, + "minecraft:item.crop.plant": { + "protocol_id": 347 + }, + "minecraft:item.crossbow.hit": { + "protocol_id": 348 + }, + "minecraft:item.crossbow.loading_end": { + "protocol_id": 349 + }, + "minecraft:item.crossbow.loading_middle": { + "protocol_id": 350 + }, + "minecraft:item.crossbow.loading_start": { + "protocol_id": 351 + }, + "minecraft:item.crossbow.quick_charge_1": { + "protocol_id": 352 + }, + "minecraft:item.crossbow.quick_charge_2": { + "protocol_id": 353 + }, + "minecraft:item.crossbow.quick_charge_3": { + "protocol_id": 354 + }, + "minecraft:item.crossbow.shoot": { + "protocol_id": 355 + }, + "minecraft:item.dye.use": { + "protocol_id": 424 + }, + "minecraft:item.elytra.flying": { + "protocol_id": 434 + }, + "minecraft:item.firecharge.use": { + "protocol_id": 474 + }, + "minecraft:item.flintandsteel.use": { + "protocol_id": 489 + }, + "minecraft:item.glow_ink_sac.use": { + "protocol_id": 568 + }, + "minecraft:item.goat_horn.play": { + "protocol_id": 587 + }, + "minecraft:item.goat_horn.sound.0": { + "protocol_id": 666 + }, + "minecraft:item.goat_horn.sound.1": { + "protocol_id": 667 + }, + "minecraft:item.goat_horn.sound.2": { + "protocol_id": 668 + }, + "minecraft:item.goat_horn.sound.3": { + "protocol_id": 669 + }, + "minecraft:item.goat_horn.sound.4": { + "protocol_id": 670 + }, + "minecraft:item.goat_horn.sound.5": { + "protocol_id": 671 + }, + "minecraft:item.goat_horn.sound.6": { + "protocol_id": 672 + }, + "minecraft:item.goat_horn.sound.7": { + "protocol_id": 673 + }, + "minecraft:item.hoe.till": { + "protocol_id": 649 + }, + "minecraft:item.honey_bottle.drink": { + "protocol_id": 665 + }, + "minecraft:item.honeycomb.wax_on": { + "protocol_id": 664 + }, + "minecraft:item.ink_sac.use": { + "protocol_id": 705 + }, + "minecraft:item.lodestone_compass.lock": { + "protocol_id": 759 + }, + "minecraft:item.nether_wart.plant": { + "protocol_id": 877 + }, + "minecraft:item.shield.block": { + "protocol_id": 1182 + }, + "minecraft:item.shield.break": { + "protocol_id": 1183 + }, + "minecraft:item.shovel.flatten": { + "protocol_id": 1189 + }, + "minecraft:item.spyglass.stop_using": { + "protocol_id": 1307 + }, + "minecraft:item.spyglass.use": { + "protocol_id": 1306 + }, + "minecraft:item.totem.use": { + "protocol_id": 1334 + }, + "minecraft:item.trident.hit": { + "protocol_id": 1335 + }, + "minecraft:item.trident.hit_ground": { + "protocol_id": 1336 + }, + "minecraft:item.trident.return": { + "protocol_id": 1337 + }, + "minecraft:item.trident.riptide_1": { + "protocol_id": 1338 + }, + "minecraft:item.trident.riptide_2": { + "protocol_id": 1339 + }, + "minecraft:item.trident.riptide_3": { + "protocol_id": 1340 + }, + "minecraft:item.trident.throw": { + "protocol_id": 1341 + }, + "minecraft:item.trident.thunder": { + "protocol_id": 1342 + }, + "minecraft:music.creative": { + "protocol_id": 824 + }, + "minecraft:music.credits": { + "protocol_id": 825 + }, + "minecraft:music.dragon": { + "protocol_id": 842 + }, + "minecraft:music.end": { + "protocol_id": 843 + }, + "minecraft:music.game": { + "protocol_id": 844 + }, + "minecraft:music.menu": { + "protocol_id": 845 + }, + "minecraft:music.nether.basalt_deltas": { + "protocol_id": 846 + }, + "minecraft:music.nether.crimson_forest": { + "protocol_id": 847 + }, + "minecraft:music.nether.nether_wastes": { + "protocol_id": 858 + }, + "minecraft:music.nether.soul_sand_valley": { + "protocol_id": 861 + }, + "minecraft:music.nether.warped_forest": { + "protocol_id": 863 + }, + "minecraft:music.overworld.badlands": { + "protocol_id": 866 + }, + "minecraft:music.overworld.bamboo_jungle": { + "protocol_id": 869 + }, + "minecraft:music.overworld.cherry_grove": { + "protocol_id": 857 + }, + "minecraft:music.overworld.deep_dark": { + "protocol_id": 848 + }, + "minecraft:music.overworld.desert": { + "protocol_id": 865 + }, + "minecraft:music.overworld.dripstone_caves": { + "protocol_id": 849 + }, + "minecraft:music.overworld.flower_forest": { + "protocol_id": 864 + }, + "minecraft:music.overworld.forest": { + "protocol_id": 854 + }, + "minecraft:music.overworld.frozen_peaks": { + "protocol_id": 859 + }, + "minecraft:music.overworld.grove": { + "protocol_id": 850 + }, + "minecraft:music.overworld.jagged_peaks": { + "protocol_id": 851 + }, + "minecraft:music.overworld.jungle": { + "protocol_id": 867 + }, + "minecraft:music.overworld.lush_caves": { + "protocol_id": 852 + }, + "minecraft:music.overworld.meadow": { + "protocol_id": 856 + }, + "minecraft:music.overworld.old_growth_taiga": { + "protocol_id": 855 + }, + "minecraft:music.overworld.snowy_slopes": { + "protocol_id": 860 + }, + "minecraft:music.overworld.sparse_jungle": { + "protocol_id": 868 + }, + "minecraft:music.overworld.stony_peaks": { + "protocol_id": 862 + }, + "minecraft:music.overworld.swamp": { + "protocol_id": 853 + }, + "minecraft:music.under_water": { + "protocol_id": 870 + }, + "minecraft:music_disc.11": { + "protocol_id": 827 + }, + "minecraft:music_disc.13": { + "protocol_id": 828 + }, + "minecraft:music_disc.5": { + "protocol_id": 826 + }, + "minecraft:music_disc.blocks": { + "protocol_id": 829 + }, + "minecraft:music_disc.cat": { + "protocol_id": 830 + }, + "minecraft:music_disc.chirp": { + "protocol_id": 831 + }, + "minecraft:music_disc.far": { + "protocol_id": 832 + }, + "minecraft:music_disc.mall": { + "protocol_id": 833 + }, + "minecraft:music_disc.mellohi": { + "protocol_id": 834 + }, + "minecraft:music_disc.otherside": { + "protocol_id": 840 + }, + "minecraft:music_disc.pigstep": { + "protocol_id": 835 + }, + "minecraft:music_disc.relic": { + "protocol_id": 841 + }, + "minecraft:music_disc.stal": { + "protocol_id": 836 + }, + "minecraft:music_disc.strad": { + "protocol_id": 837 + }, + "minecraft:music_disc.wait": { + "protocol_id": 838 + }, + "minecraft:music_disc.ward": { + "protocol_id": 839 + }, + "minecraft:particle.soul_escape": { + "protocol_id": 1247 + }, + "minecraft:ui.button.click": { + "protocol_id": 1378 + }, + "minecraft:ui.cartography_table.take_result": { + "protocol_id": 1381 + }, + "minecraft:ui.loom.select_pattern": { + "protocol_id": 1379 + }, + "minecraft:ui.loom.take_result": { + "protocol_id": 1380 + }, + "minecraft:ui.stonecutter.select_recipe": { + "protocol_id": 1383 + }, + "minecraft:ui.stonecutter.take_result": { + "protocol_id": 1382 + }, + "minecraft:ui.toast.challenge_complete": { + "protocol_id": 1384 + }, + "minecraft:ui.toast.in": { + "protocol_id": 1385 + }, + "minecraft:ui.toast.out": { + "protocol_id": 1386 + }, + "minecraft:weather.rain": { + "protocol_id": 1454 + }, + "minecraft:weather.rain.above": { + "protocol_id": 1455 + } + }, + "protocol_id": 1 + }, + "minecraft:stat_type": { + "entries": { + "minecraft:broken": { + "protocol_id": 3 + }, + "minecraft:crafted": { + "protocol_id": 1 + }, + "minecraft:custom": { + "protocol_id": 8 + }, + "minecraft:dropped": { + "protocol_id": 5 + }, + "minecraft:killed": { + "protocol_id": 6 + }, + "minecraft:killed_by": { + "protocol_id": 7 + }, + "minecraft:mined": { + "protocol_id": 0 + }, + "minecraft:picked_up": { + "protocol_id": 4 + }, + "minecraft:used": { + "protocol_id": 2 + } + }, + "protocol_id": 23 + }, + "minecraft:trigger_type": { + "entries": { + "minecraft:allay_drop_item_on_block": { + "protocol_id": 49 + }, + "minecraft:avoid_vibration": { + "protocol_id": 50 + }, + "minecraft:bee_nest_destroyed": { + "protocol_id": 36 + }, + "minecraft:bred_animals": { + "protocol_id": 14 + }, + "minecraft:brewed_potion": { + "protocol_id": 10 + }, + "minecraft:changed_dimension": { + "protocol_id": 21 + }, + "minecraft:channeled_lightning": { + "protocol_id": 30 + }, + "minecraft:construct_beacon": { + "protocol_id": 11 + }, + "minecraft:consume_item": { + "protocol_id": 25 + }, + "minecraft:cured_zombie_villager": { + "protocol_id": 17 + }, + "minecraft:effects_changed": { + "protocol_id": 26 + }, + "minecraft:enchanted_item": { + "protocol_id": 8 + }, + "minecraft:enter_block": { + "protocol_id": 3 + }, + "minecraft:entity_hurt_player": { + "protocol_id": 7 + }, + "minecraft:entity_killed_player": { + "protocol_id": 2 + }, + "minecraft:fall_from_height": { + "protocol_id": 46 + }, + "minecraft:filled_bucket": { + "protocol_id": 9 + }, + "minecraft:fishing_rod_hooked": { + "protocol_id": 29 + }, + "minecraft:hero_of_the_village": { + "protocol_id": 33 + }, + "minecraft:impossible": { + "protocol_id": 0 + }, + "minecraft:inventory_changed": { + "protocol_id": 4 + }, + "minecraft:item_durability_changed": { + "protocol_id": 19 + }, + "minecraft:item_used_on_block": { + "protocol_id": 38 + }, + "minecraft:kill_mob_near_sculk_catalyst": { + "protocol_id": 48 + }, + "minecraft:killed_by_crossbow": { + "protocol_id": 32 + }, + "minecraft:levitation": { + "protocol_id": 20 + }, + "minecraft:lightning_strike": { + "protocol_id": 44 + }, + "minecraft:location": { + "protocol_id": 15 + }, + "minecraft:nether_travel": { + "protocol_id": 28 + }, + "minecraft:placed_block": { + "protocol_id": 24 + }, + "minecraft:player_generates_container_loot": { + "protocol_id": 39 + }, + "minecraft:player_hurt_entity": { + "protocol_id": 6 + }, + "minecraft:player_interacted_with_entity": { + "protocol_id": 42 + }, + "minecraft:player_killed_entity": { + "protocol_id": 1 + }, + "minecraft:recipe_crafted": { + "protocol_id": 51 + }, + "minecraft:recipe_unlocked": { + "protocol_id": 5 + }, + "minecraft:ride_entity_in_lava": { + "protocol_id": 47 + }, + "minecraft:shot_crossbow": { + "protocol_id": 31 + }, + "minecraft:slept_in_bed": { + "protocol_id": 16 + }, + "minecraft:slide_down_block": { + "protocol_id": 35 + }, + "minecraft:started_riding": { + "protocol_id": 43 + }, + "minecraft:summoned_entity": { + "protocol_id": 13 + }, + "minecraft:tame_animal": { + "protocol_id": 23 + }, + "minecraft:target_hit": { + "protocol_id": 37 + }, + "minecraft:thrown_item_picked_up_by_entity": { + "protocol_id": 40 + }, + "minecraft:thrown_item_picked_up_by_player": { + "protocol_id": 41 + }, + "minecraft:tick": { + "protocol_id": 22 + }, + "minecraft:used_ender_eye": { + "protocol_id": 12 + }, + "minecraft:used_totem": { + "protocol_id": 27 + }, + "minecraft:using_item": { + "protocol_id": 45 + }, + "minecraft:villager_trade": { + "protocol_id": 18 + }, + "minecraft:voluntary_exile": { + "protocol_id": 34 + } + }, + "protocol_id": 68 + }, + "minecraft:villager_profession": { + "default": "minecraft:none", + "entries": { + "minecraft:armorer": { + "protocol_id": 1 + }, + "minecraft:butcher": { + "protocol_id": 2 + }, + "minecraft:cartographer": { + "protocol_id": 3 + }, + "minecraft:cleric": { + "protocol_id": 4 + }, + "minecraft:farmer": { + "protocol_id": 5 + }, + "minecraft:fisherman": { + "protocol_id": 6 + }, + "minecraft:fletcher": { + "protocol_id": 7 + }, + "minecraft:leatherworker": { + "protocol_id": 8 + }, + "minecraft:librarian": { + "protocol_id": 9 + }, + "minecraft:mason": { + "protocol_id": 10 + }, + "minecraft:nitwit": { + "protocol_id": 11 + }, + "minecraft:none": { + "protocol_id": 0 + }, + "minecraft:shepherd": { + "protocol_id": 12 + }, + "minecraft:toolsmith": { + "protocol_id": 13 + }, + "minecraft:weaponsmith": { + "protocol_id": 14 + } + }, + "protocol_id": 25 + }, + "minecraft:villager_type": { + "default": "minecraft:plains", + "entries": { + "minecraft:desert": { + "protocol_id": 0 + }, + "minecraft:jungle": { + "protocol_id": 1 + }, + "minecraft:plains": { + "protocol_id": 2 + }, + "minecraft:savanna": { + "protocol_id": 3 + }, + "minecraft:snow": { + "protocol_id": 4 + }, + "minecraft:swamp": { + "protocol_id": 5 + }, + "minecraft:taiga": { + "protocol_id": 6 + } + }, + "protocol_id": 24 + }, + "minecraft:worldgen/biome_source": { + "entries": { + "minecraft:checkerboard": { + "protocol_id": 2 + }, + "minecraft:fixed": { + "protocol_id": 0 + }, + "minecraft:multi_noise": { + "protocol_id": 1 + }, + "minecraft:the_end": { + "protocol_id": 3 + } + }, + "protocol_id": 53 + }, + "minecraft:worldgen/block_state_provider_type": { + "entries": { + "minecraft:dual_noise_provider": { + "protocol_id": 4 + }, + "minecraft:noise_provider": { + "protocol_id": 3 + }, + "minecraft:noise_threshold_provider": { + "protocol_id": 2 + }, + "minecraft:randomized_int_state_provider": { + "protocol_id": 6 + }, + "minecraft:rotated_block_provider": { + "protocol_id": 5 + }, + "minecraft:simple_state_provider": { + "protocol_id": 0 + }, + "minecraft:weighted_state_provider": { + "protocol_id": 1 + } + }, + "protocol_id": 47 + }, + "minecraft:worldgen/carver": { + "entries": { + "minecraft:canyon": { + "protocol_id": 2 + }, + "minecraft:cave": { + "protocol_id": 0 + }, + "minecraft:nether_cave": { + "protocol_id": 1 + } + }, + "protocol_id": 41 + }, + "minecraft:worldgen/chunk_generator": { + "entries": { + "minecraft:debug": { + "protocol_id": 2 + }, + "minecraft:flat": { + "protocol_id": 1 + }, + "minecraft:noise": { + "protocol_id": 0 + } + }, + "protocol_id": 54 + }, + "minecraft:worldgen/density_function_type": { + "entries": { + "minecraft:abs": { + "protocol_id": 19 + }, + "minecraft:add": { + "protocol_id": 25 + }, + "minecraft:beardifier": { + "protocol_id": 2 + }, + "minecraft:blend_alpha": { + "protocol_id": 0 + }, + "minecraft:blend_density": { + "protocol_id": 17 + }, + "minecraft:blend_offset": { + "protocol_id": 1 + }, + "minecraft:cache_2d": { + "protocol_id": 6 + }, + "minecraft:cache_all_in_cell": { + "protocol_id": 8 + }, + "minecraft:cache_once": { + "protocol_id": 7 + }, + "minecraft:clamp": { + "protocol_id": 18 + }, + "minecraft:constant": { + "protocol_id": 30 + }, + "minecraft:cube": { + "protocol_id": 21 + }, + "minecraft:end_islands": { + "protocol_id": 10 + }, + "minecraft:flat_cache": { + "protocol_id": 5 + }, + "minecraft:half_negative": { + "protocol_id": 22 + }, + "minecraft:interpolated": { + "protocol_id": 4 + }, + "minecraft:max": { + "protocol_id": 28 + }, + "minecraft:min": { + "protocol_id": 27 + }, + "minecraft:mul": { + "protocol_id": 26 + }, + "minecraft:noise": { + "protocol_id": 9 + }, + "minecraft:old_blended_noise": { + "protocol_id": 3 + }, + "minecraft:quarter_negative": { + "protocol_id": 23 + }, + "minecraft:range_choice": { + "protocol_id": 13 + }, + "minecraft:shift": { + "protocol_id": 16 + }, + "minecraft:shift_a": { + "protocol_id": 14 + }, + "minecraft:shift_b": { + "protocol_id": 15 + }, + "minecraft:shifted_noise": { + "protocol_id": 12 + }, + "minecraft:spline": { + "protocol_id": 29 + }, + "minecraft:square": { + "protocol_id": 20 + }, + "minecraft:squeeze": { + "protocol_id": 24 + }, + "minecraft:weird_scaled_sampler": { + "protocol_id": 11 + }, + "minecraft:y_clamped_gradient": { + "protocol_id": 31 + } + }, + "protocol_id": 57 + }, + "minecraft:worldgen/feature": { + "entries": { + "minecraft:bamboo": { + "protocol_id": 41 + }, + "minecraft:basalt_columns": { + "protocol_id": 46 + }, + "minecraft:basalt_pillar": { + "protocol_id": 51 + }, + "minecraft:block_column": { + "protocol_id": 18 + }, + "minecraft:block_pile": { + "protocol_id": 5 + }, + "minecraft:blue_ice": { + "protocol_id": 25 + }, + "minecraft:bonus_chest": { + "protocol_id": 50 + }, + "minecraft:chorus_plant": { + "protocol_id": 7 + }, + "minecraft:coral_claw": { + "protocol_id": 38 + }, + "minecraft:coral_mushroom": { + "protocol_id": 37 + }, + "minecraft:coral_tree": { + "protocol_id": 36 + }, + "minecraft:delta_feature": { + "protocol_id": 47 + }, + "minecraft:desert_well": { + "protocol_id": 10 + }, + "minecraft:disk": { + "protocol_id": 28 + }, + "minecraft:dripstone_cluster": { + "protocol_id": 57 + }, + "minecraft:end_gateway": { + "protocol_id": 33 + }, + "minecraft:end_island": { + "protocol_id": 32 + }, + "minecraft:end_spike": { + "protocol_id": 31 + }, + "minecraft:fill_layer": { + "protocol_id": 49 + }, + "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": 56 + }, + "minecraft:glowstone_blob": { + "protocol_id": 15 + }, + "minecraft:huge_brown_mushroom": { + "protocol_id": 13 + }, + "minecraft:huge_fungus": { + "protocol_id": 42 + }, + "minecraft:huge_red_mushroom": { + "protocol_id": 12 + }, + "minecraft:ice_spike": { + "protocol_id": 14 + }, + "minecraft:iceberg": { + "protocol_id": 26 + }, + "minecraft:kelp": { + "protocol_id": 35 + }, + "minecraft:lake": { + "protocol_id": 29 + }, + "minecraft:large_dripstone": { + "protocol_id": 58 + }, + "minecraft:monster_room": { + "protocol_id": 24 + }, + "minecraft:multiface_growth": { + "protocol_id": 22 + }, + "minecraft:nether_forest_vegetation": { + "protocol_id": 43 + }, + "minecraft:netherrack_replace_blobs": { + "protocol_id": 48 + }, + "minecraft:no_bonemeal_flower": { + "protocol_id": 3 + }, + "minecraft:no_op": { + "protocol_id": 0 + }, + "minecraft:ore": { + "protocol_id": 30 + }, + "minecraft:pointed_dripstone": { + "protocol_id": 59 + }, + "minecraft:random_boolean_selector": { + "protocol_id": 55 + }, + "minecraft:random_patch": { + "protocol_id": 4 + }, + "minecraft:random_selector": { + "protocol_id": 53 + }, + "minecraft:replace_single_block": { + "protocol_id": 8 + }, + "minecraft:root_system": { + "protocol_id": 21 + }, + "minecraft:scattered_ore": { + "protocol_id": 52 + }, + "minecraft:sculk_patch": { + "protocol_id": 60 + }, + "minecraft:sea_pickle": { + "protocol_id": 39 + }, + "minecraft:seagrass": { + "protocol_id": 34 + }, + "minecraft:simple_block": { + "protocol_id": 40 + }, + "minecraft:simple_random_selector": { + "protocol_id": 54 + }, + "minecraft:spring_feature": { + "protocol_id": 6 + }, + "minecraft:tree": { + "protocol_id": 1 + }, + "minecraft:twisting_vines": { + "protocol_id": 45 + }, + "minecraft:underwater_magma": { + "protocol_id": 23 + }, + "minecraft:vegetation_patch": { + "protocol_id": 19 + }, + "minecraft:vines": { + "protocol_id": 17 + }, + "minecraft:void_start_platform": { + "protocol_id": 9 + }, + "minecraft:waterlogged_vegetation_patch": { + "protocol_id": 20 + }, + "minecraft:weeping_vines": { + "protocol_id": 44 + } + }, + "protocol_id": 42 + }, + "minecraft:worldgen/feature_size_type": { + "entries": { + "minecraft:three_layers_feature_size": { + "protocol_id": 1 + }, + "minecraft:two_layers_feature_size": { + "protocol_id": 0 + } + }, + "protocol_id": 52 + }, + "minecraft:worldgen/foliage_placer_type": { + "entries": { + "minecraft:acacia_foliage_placer": { + "protocol_id": 3 + }, + "minecraft:blob_foliage_placer": { + "protocol_id": 0 + }, + "minecraft:bush_foliage_placer": { + "protocol_id": 4 + }, + "minecraft:cherry_foliage_placer": { + "protocol_id": 10 + }, + "minecraft:dark_oak_foliage_placer": { + "protocol_id": 8 + }, + "minecraft:fancy_foliage_placer": { + "protocol_id": 5 + }, + "minecraft:jungle_foliage_placer": { + "protocol_id": 6 + }, + "minecraft:mega_pine_foliage_placer": { + "protocol_id": 7 + }, + "minecraft:pine_foliage_placer": { + "protocol_id": 2 + }, + "minecraft:random_spread_foliage_placer": { + "protocol_id": 9 + }, + "minecraft:spruce_foliage_placer": { + "protocol_id": 1 + } + }, + "protocol_id": 48 + }, + "minecraft:worldgen/material_condition": { + "entries": { + "minecraft:above_preliminary_surface": { + "protocol_id": 9 + }, + "minecraft:biome": { + "protocol_id": 0 + }, + "minecraft:hole": { + "protocol_id": 8 + }, + "minecraft:noise_threshold": { + "protocol_id": 1 + }, + "minecraft:not": { + "protocol_id": 7 + }, + "minecraft:steep": { + "protocol_id": 6 + }, + "minecraft:stone_depth": { + "protocol_id": 10 + }, + "minecraft:temperature": { + "protocol_id": 5 + }, + "minecraft:vertical_gradient": { + "protocol_id": 2 + }, + "minecraft:water": { + "protocol_id": 4 + }, + "minecraft:y_above": { + "protocol_id": 3 + } + }, + "protocol_id": 55 + }, + "minecraft:worldgen/material_rule": { + "entries": { + "minecraft:bandlands": { + "protocol_id": 0 + }, + "minecraft:block": { + "protocol_id": 1 + }, + "minecraft:condition": { + "protocol_id": 3 + }, + "minecraft:sequence": { + "protocol_id": 2 + } + }, + "protocol_id": 56 + }, + "minecraft:worldgen/placement_modifier_type": { + "entries": { + "minecraft:biome": { + "protocol_id": 4 + }, + "minecraft:block_predicate_filter": { + "protocol_id": 0 + }, + "minecraft:carving_mask": { + "protocol_id": 14 + }, + "minecraft:count": { + "protocol_id": 5 + }, + "minecraft:count_on_every_layer": { + "protocol_id": 8 + }, + "minecraft:environment_scan": { + "protocol_id": 9 + }, + "minecraft:height_range": { + "protocol_id": 11 + }, + "minecraft:heightmap": { + "protocol_id": 10 + }, + "minecraft:in_square": { + "protocol_id": 12 + }, + "minecraft:noise_based_count": { + "protocol_id": 6 + }, + "minecraft:noise_threshold_count": { + "protocol_id": 7 + }, + "minecraft:random_offset": { + "protocol_id": 13 + }, + "minecraft:rarity_filter": { + "protocol_id": 1 + }, + "minecraft:surface_relative_threshold_filter": { + "protocol_id": 2 + }, + "minecraft:surface_water_depth_filter": { + "protocol_id": 3 + } + }, + "protocol_id": 46 + }, + "minecraft:worldgen/pool_alias_binding": { + "entries": { + "minecraft:direct": { + "protocol_id": 2 + }, + "minecraft:random": { + "protocol_id": 0 + }, + "minecraft:random_group": { + "protocol_id": 1 + } + }, + "protocol_id": 61 + }, + "minecraft:worldgen/root_placer_type": { + "entries": { + "minecraft:mangrove_root_placer": { + "protocol_id": 0 + } + }, + "protocol_id": 50 + }, + "minecraft:worldgen/structure_piece": { + "entries": { + "minecraft:btp": { + "protocol_id": 52 + }, + "minecraft:ecp": { + "protocol_id": 50 + }, + "minecraft:iglu": { + "protocol_id": 34 + }, + "minecraft:jigsaw": { + "protocol_id": 55 + }, + "minecraft:mscorridor": { + "protocol_id": 0 + }, + "minecraft:mscrossing": { + "protocol_id": 1 + }, + "minecraft:msroom": { + "protocol_id": 2 + }, + "minecraft:msstairs": { + "protocol_id": 3 + }, + "minecraft:nebcr": { + "protocol_id": 4 + }, + "minecraft:nebef": { + "protocol_id": 5 + }, + "minecraft:nebs": { + "protocol_id": 6 + }, + "minecraft:neccs": { + "protocol_id": 7 + }, + "minecraft:nece": { + "protocol_id": 9 + }, + "minecraft:necsr": { + "protocol_id": 14 + }, + "minecraft:nectb": { + "protocol_id": 8 + }, + "minecraft:nefos": { + "protocol_id": 54 + }, + "minecraft:nemt": { + "protocol_id": 15 + }, + "minecraft:nerc": { + "protocol_id": 16 + }, + "minecraft:nesc": { + "protocol_id": 12 + }, + "minecraft:nesclt": { + "protocol_id": 11 + }, + "minecraft:nescrt": { + "protocol_id": 13 + }, + "minecraft:nescsc": { + "protocol_id": 10 + }, + "minecraft:nesr": { + "protocol_id": 17 + }, + "minecraft:nestart": { + "protocol_id": 18 + }, + "minecraft:omb": { + "protocol_id": 38 + }, + "minecraft:omcr": { + "protocol_id": 39 + }, + "minecraft:omdxr": { + "protocol_id": 40 + }, + "minecraft:omdxyr": { + "protocol_id": 41 + }, + "minecraft:omdyr": { + "protocol_id": 42 + }, + "minecraft:omdyzr": { + "protocol_id": 43 + }, + "minecraft:omdzr": { + "protocol_id": 44 + }, + "minecraft:omentry": { + "protocol_id": 45 + }, + "minecraft:ompenthouse": { + "protocol_id": 46 + }, + "minecraft:omsimple": { + "protocol_id": 47 + }, + "minecraft:omsimplet": { + "protocol_id": 48 + }, + "minecraft:omwr": { + "protocol_id": 49 + }, + "minecraft:orp": { + "protocol_id": 33 + }, + "minecraft:rupo": { + "protocol_id": 35 + }, + "minecraft:sh5c": { + "protocol_id": 21 + }, + "minecraft:shcc": { + "protocol_id": 19 + }, + "minecraft:shfc": { + "protocol_id": 20 + }, + "minecraft:shipwreck": { + "protocol_id": 53 + }, + "minecraft:shli": { + "protocol_id": 23 + }, + "minecraft:shlt": { + "protocol_id": 22 + }, + "minecraft:shph": { + "protocol_id": 25 + }, + "minecraft:shpr": { + "protocol_id": 24 + }, + "minecraft:shrc": { + "protocol_id": 27 + }, + "minecraft:shrt": { + "protocol_id": 26 + }, + "minecraft:shs": { + "protocol_id": 30 + }, + "minecraft:shsd": { + "protocol_id": 28 + }, + "minecraft:shssd": { + "protocol_id": 31 + }, + "minecraft:shstart": { + "protocol_id": 29 + }, + "minecraft:tedp": { + "protocol_id": 37 + }, + "minecraft:tejp": { + "protocol_id": 32 + }, + "minecraft:tesh": { + "protocol_id": 36 + }, + "minecraft:wmp": { + "protocol_id": 51 + } + }, + "protocol_id": 44 + }, + "minecraft:worldgen/structure_placement": { + "entries": { + "minecraft:concentric_rings": { + "protocol_id": 1 + }, + "minecraft:random_spread": { + "protocol_id": 0 + } + }, + "protocol_id": 43 + }, + "minecraft:worldgen/structure_pool_element": { + "entries": { + "minecraft:empty_pool_element": { + "protocol_id": 3 + }, + "minecraft:feature_pool_element": { + "protocol_id": 2 + }, + "minecraft:legacy_single_pool_element": { + "protocol_id": 4 + }, + "minecraft:list_pool_element": { + "protocol_id": 1 + }, + "minecraft:single_pool_element": { + "protocol_id": 0 + } + }, + "protocol_id": 60 + }, + "minecraft:worldgen/structure_processor": { + "entries": { + "minecraft:blackstone_replace": { + "protocol_id": 7 + }, + "minecraft:block_age": { + "protocol_id": 6 + }, + "minecraft:block_ignore": { + "protocol_id": 0 + }, + "minecraft:block_rot": { + "protocol_id": 1 + }, + "minecraft:capped": { + "protocol_id": 10 + }, + "minecraft:gravity": { + "protocol_id": 2 + }, + "minecraft:jigsaw_replacement": { + "protocol_id": 3 + }, + "minecraft:lava_submerged_block": { + "protocol_id": 8 + }, + "minecraft:nop": { + "protocol_id": 5 + }, + "minecraft:protected_blocks": { + "protocol_id": 9 + }, + "minecraft:rule": { + "protocol_id": 4 + } + }, + "protocol_id": 59 + }, + "minecraft:worldgen/structure_type": { + "entries": { + "minecraft:buried_treasure": { + "protocol_id": 0 + }, + "minecraft:desert_pyramid": { + "protocol_id": 1 + }, + "minecraft:end_city": { + "protocol_id": 2 + }, + "minecraft:fortress": { + "protocol_id": 3 + }, + "minecraft:igloo": { + "protocol_id": 4 + }, + "minecraft:jigsaw": { + "protocol_id": 5 + }, + "minecraft:jungle_temple": { + "protocol_id": 6 + }, + "minecraft:mineshaft": { + "protocol_id": 7 + }, + "minecraft:nether_fossil": { + "protocol_id": 8 + }, + "minecraft:ocean_monument": { + "protocol_id": 9 + }, + "minecraft:ocean_ruin": { + "protocol_id": 10 + }, + "minecraft:ruined_portal": { + "protocol_id": 11 + }, + "minecraft:shipwreck": { + "protocol_id": 12 + }, + "minecraft:stronghold": { + "protocol_id": 13 + }, + "minecraft:swamp_hut": { + "protocol_id": 14 + }, + "minecraft:woodland_mansion": { + "protocol_id": 15 + } + }, + "protocol_id": 45 + }, + "minecraft:worldgen/tree_decorator_type": { + "entries": { + "minecraft:alter_ground": { + "protocol_id": 4 + }, + "minecraft:attached_to_leaves": { + "protocol_id": 5 + }, + "minecraft:beehive": { + "protocol_id": 3 + }, + "minecraft:cocoa": { + "protocol_id": 2 + }, + "minecraft:leave_vine": { + "protocol_id": 1 + }, + "minecraft:trunk_vine": { + "protocol_id": 0 + } + }, + "protocol_id": 51 + }, + "minecraft:worldgen/trunk_placer_type": { + "entries": { + "minecraft:bending_trunk_placer": { + "protocol_id": 6 + }, + "minecraft:cherry_trunk_placer": { + "protocol_id": 8 + }, + "minecraft:dark_oak_trunk_placer": { + "protocol_id": 4 + }, + "minecraft:fancy_trunk_placer": { + "protocol_id": 5 + }, + "minecraft:forking_trunk_placer": { + "protocol_id": 1 + }, + "minecraft:giant_trunk_placer": { + "protocol_id": 2 + }, + "minecraft:mega_jungle_trunk_placer": { + "protocol_id": 3 + }, + "minecraft:straight_trunk_placer": { + "protocol_id": 0 + }, + "minecraft:upwards_branching_trunk_placer": { + "protocol_id": 7 + } + }, + "protocol_id": 49 + } +} \ No newline at end of file diff --git a/tests/common/mod.rs b/tests/common/mod.rs index 3e711fe1..a8a82a2f 100644 --- a/tests/common/mod.rs +++ b/tests/common/mod.rs @@ -1,7 +1,5 @@ use mchprs_blocks::block_entities::BlockEntity; -use mchprs_blocks::blocks::{ - Block, ComparatorMode, Lever, LeverFace, RedstoneComparator, RedstoneRepeater, -}; +use mchprs_blocks::blocks::{Block, Comparator, ComparatorMode, LeverFace, Repeater}; use mchprs_blocks::{BlockDirection, BlockPos}; use mchprs_redpiler::{BackendVariant, Compiler, CompilerOptions}; use mchprs_redstone::wire::make_cross; @@ -224,12 +222,12 @@ impl BackendRunner { fn is_block_powered(block: Block) -> Option { Some(match block { - Block::RedstoneComparator { comparator } => comparator.powered, + Block::Comparator(comparator) => comparator.powered, Block::RedstoneTorch { lit } => lit, Block::RedstoneWallTorch { lit, .. } => lit, - Block::RedstoneRepeater { repeater } => repeater.powered, - Block::Lever { lever } => lever.powered, - Block::StoneButton { button } => button.powered, + Block::Repeater(repeater) => repeater.powered, + Block::Lever { powered, .. } => powered, + Block::StoneButton { powered, .. } => powered, Block::StonePressurePlate { powered } => powered, Block::RedstoneLamp { lit } => lit, Block::IronTrapdoor { powered, .. } => powered, @@ -266,6 +264,8 @@ pub fn trapdoor() -> Block { facing: Default::default(), half: Default::default(), powered: false, + open: false, + waterlogged: false, } } @@ -275,10 +275,9 @@ pub fn make_lever(world: &mut TestWorld, lever_pos: BlockPos) { world, lever_pos, Block::Lever { - lever: Lever { - face: LeverFace::Floor, - ..Default::default() - }, + face: LeverFace::Floor, + facing: BlockDirection::West, + powered: false, }, ); } @@ -293,25 +292,17 @@ pub fn make_repeater( place_on_block( world, repeater_pos, - Block::RedstoneRepeater { - repeater: RedstoneRepeater { - delay, - facing: direction, - ..Default::default() - }, - }, + Block::Repeater(Repeater { + delay, + facing: direction, + ..Default::default() + }), ); } /// Creates a wire at `wire_pos` with a block of sandstone below it pub fn make_wire(world: &mut TestWorld, wire_pos: BlockPos) { - place_on_block( - world, - wire_pos, - Block::RedstoneWire { - wire: make_cross(0), - }, - ); + place_on_block(world, wire_pos, Block::RedstoneWire(make_cross(0))); } /// Creates a comparator at `comp_pos` with a block of sandstone below it @@ -324,12 +315,10 @@ pub fn make_comparator( place_on_block( world, comp_pos, - Block::RedstoneComparator { - comparator: RedstoneComparator { - mode, - facing, - ..Default::default() - }, - }, + Block::Comparator(Comparator { + mode, + facing, + ..Default::default() + }), ); } From f6811543f2cf916156c012e5e675906b63b7bc91 Mon Sep 17 00:00:00 2001 From: StackDoubleFlow Date: Wed, 4 Mar 2026 07:01:57 -0500 Subject: [PATCH 2/7] Implement and fix dynamic attributes --- crates/block_data_gen/src/main.rs | 9 +- crates/blocks/src/blocks/mod.rs | 31 +++- crates/blocks/src/generated.rs | 294 +++++++++++++++--------------- 3 files changed, 183 insertions(+), 151 deletions(-) diff --git a/crates/block_data_gen/src/main.rs b/crates/block_data_gen/src/main.rs index 082b6a15..6ca31f58 100644 --- a/crates/block_data_gen/src/main.rs +++ b/crates/block_data_gen/src/main.rs @@ -38,7 +38,7 @@ struct RegistriesJson { struct InfoYaml { blocks: IndexMap, items: IndexMap, - prop_types: HashMap>, + prop_types: IndexMap>, } #[derive(Default, Debug)] @@ -285,11 +285,12 @@ fn generate_is_attr( let match_arms = blocks .iter() .map(|block| { - if attr(block) { + let is_dynamic = dynamic_attr.map_or(false, |f| f(block)); + if attr(block) || is_dynamic { let pat = block.match_ignore(); - Some(if dynamic_attr.map_or(false, |f| f(block)) { + Some(if is_dynamic { quote! { - #pat => #dynamic_fn(self), + #pat => self.#dynamic_fn(), } } else { quote! { diff --git a/crates/blocks/src/blocks/mod.rs b/crates/blocks/src/blocks/mod.rs index 1e9aef05..7309e4dc 100644 --- a/crates/blocks/src/blocks/mod.rs +++ b/crates/blocks/src/blocks/mod.rs @@ -157,7 +157,7 @@ impl Block { _ => unreachable!(), } } - + pub fn get_sign_rotation(self) -> Option { Some(match self { Block::OakSign { rotation, .. } @@ -168,7 +168,7 @@ impl Block { | Block::DarkOakSign { rotation, .. } | Block::CrimsonSign { rotation, .. } | Block::WarpedSign { rotation, .. } => rotation, - _ => return None + _ => return None, }) } @@ -182,9 +182,34 @@ impl Block { | Block::DarkOakWallSign { facing, .. } | Block::CrimsonWallSign { facing, .. } | Block::WarpedWallSign { facing, .. } => facing, - _ => return None + _ => return None, }) } + + pub(crate) fn is_solid_dynamic(self) -> bool { + match self { + Block::SmoothStoneSlab { ty, .. } | Block::QuartzSlab { ty, .. } => { + ty == SlabType::Double + } + _ => unreachable!(), + } + } + + pub(crate) fn is_transparent_dynamic(self) -> bool { + match self { + Block::SmoothStoneSlab { ty, .. } | Block::QuartzSlab { ty, .. } => { + ty != SlabType::Double + } + _ => unreachable!(), + } + } + + pub(crate) fn is_cube_dynamic(self) -> bool { + match self { + Block::SmoothStoneSlab { ty, .. } | Block::QuartzSlab { ty, .. } => ty == SlabType::Top, + _ => unreachable!(), + } + } } #[test] diff --git a/crates/blocks/src/generated.rs b/crates/blocks/src/generated.rs index c26392f0..72f048f0 100644 --- a/crates/blocks/src/generated.rs +++ b/crates/blocks/src/generated.rs @@ -634,6 +634,8 @@ impl Block { Block::Furnace { .. } => true, Block::QuartzBlock => true, Block::SmoothQuartz => true, + Block::SmoothStoneSlab { .. } => self.is_solid_dynamic(), + Block::QuartzSlab { .. } => self.is_solid_dynamic(), Block::WhiteConcrete => true, Block::OrangeConcrete => true, Block::MagentaConcrete => true, @@ -715,6 +717,8 @@ impl Block { Block::Furnace { .. } => true, Block::QuartzBlock => true, Block::SmoothQuartz => true, + Block::SmoothStoneSlab { .. } => self.is_cube_dynamic(), + Block::QuartzSlab { .. } => self.is_cube_dynamic(), Block::Composter { .. } => true, Block::WhiteConcrete => true, Block::OrangeConcrete => true, @@ -804,6 +808,8 @@ impl Block { Block::Glowstone => true, Block::RedstoneBlock => true, Block::Hopper { .. } => true, + Block::SmoothStoneSlab { .. } => self.is_transparent_dynamic(), + Block::QuartzSlab { .. } => self.is_transparent_dynamic(), Block::Cauldron => true, Block::WaterCauldron { .. } => true, Block::Composter { .. } => true, @@ -3200,17 +3206,6 @@ impl Block { } } } -impl FromStr for SlabType { - type Err = (); - fn from_str(s: &str) -> Result { - Ok(match s { - "top" => SlabType::Top, - "bottom" => SlabType::Bottom, - "double" => SlabType::Double, - _ => return Err(()), - }) - } -} impl FromStr for BlockDirection { type Err = (); fn from_str(s: &str) -> Result { @@ -3223,35 +3218,27 @@ impl FromStr for BlockDirection { }) } } -impl FromStr for LeverFace { - type Err = (); - fn from_str(s: &str) -> Result { - Ok(match s { - "floor" => LeverFace::Floor, - "wall" => LeverFace::Wall, - "ceiling" => LeverFace::Ceiling, - _ => return Err(()), - }) - } -} -impl FromStr for BlockAxis { +impl FromStr for BlockFacing { type Err = (); fn from_str(s: &str) -> Result { Ok(match s { - "x" => BlockAxis::X, - "y" => BlockAxis::Y, - "z" => BlockAxis::Z, + "north" => BlockFacing::North, + "east" => BlockFacing::East, + "south" => BlockFacing::South, + "west" => BlockFacing::West, + "up" => BlockFacing::Up, + "down" => BlockFacing::Down, _ => return Err(()), }) } } -impl FromStr for RedstoneWireSide { +impl FromStr for LeverFace { type Err = (); fn from_str(s: &str) -> Result { Ok(match s { - "up" => RedstoneWireSide::Up, - "side" => RedstoneWireSide::Side, - "none" => RedstoneWireSide::None, + "floor" => LeverFace::Floor, + "wall" => LeverFace::Wall, + "ceiling" => LeverFace::Ceiling, _ => return Err(()), }) } @@ -3269,36 +3256,24 @@ impl FromStr for HopperFacing { }) } } -impl FromStr for ComparatorMode { - type Err = (); - fn from_str(s: &str) -> Result { - Ok(match s { - "compare" => ComparatorMode::Compare, - "subtract" => ComparatorMode::Subtract, - _ => return Err(()), - }) - } -} -impl FromStr for BlockFacing { +impl FromStr for SlabType { type Err = (); fn from_str(s: &str) -> Result { Ok(match s { - "north" => BlockFacing::North, - "east" => BlockFacing::East, - "south" => BlockFacing::South, - "west" => BlockFacing::West, - "up" => BlockFacing::Up, - "down" => BlockFacing::Down, + "top" => SlabType::Top, + "bottom" => SlabType::Bottom, + "double" => SlabType::Double, _ => return Err(()), }) } } -impl FromStr for TrapdoorHalf { +impl FromStr for BlockAxis { type Err = (); fn from_str(s: &str) -> Result { Ok(match s { - "top" => TrapdoorHalf::Top, - "bottom" => TrapdoorHalf::Bottom, + "x" => BlockAxis::X, + "y" => BlockAxis::Y, + "z" => BlockAxis::Z, _ => return Err(()), }) } @@ -3334,12 +3309,34 @@ impl FromStr for Instrument { }) } } -impl std::fmt::Display for SlabType { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_str(match self { - SlabType::Top => "top", - SlabType::Bottom => "bottom", - SlabType::Double => "double", +impl FromStr for RedstoneWireSide { + type Err = (); + fn from_str(s: &str) -> Result { + Ok(match s { + "up" => RedstoneWireSide::Up, + "side" => RedstoneWireSide::Side, + "none" => RedstoneWireSide::None, + _ => return Err(()), + }) + } +} +impl FromStr for TrapdoorHalf { + type Err = (); + fn from_str(s: &str) -> Result { + Ok(match s { + "top" => TrapdoorHalf::Top, + "bottom" => TrapdoorHalf::Bottom, + _ => return Err(()), + }) + } +} +impl FromStr for ComparatorMode { + type Err = (); + fn from_str(s: &str) -> Result { + Ok(match s { + "compare" => ComparatorMode::Compare, + "subtract" => ComparatorMode::Subtract, + _ => return Err(()), }) } } @@ -3353,30 +3350,24 @@ impl std::fmt::Display for BlockDirection { }) } } -impl std::fmt::Display for LeverFace { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_str(match self { - LeverFace::Floor => "floor", - LeverFace::Wall => "wall", - LeverFace::Ceiling => "ceiling", - }) - } -} -impl std::fmt::Display for BlockAxis { +impl std::fmt::Display for BlockFacing { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { f.write_str(match self { - BlockAxis::X => "x", - BlockAxis::Y => "y", - BlockAxis::Z => "z", + BlockFacing::North => "north", + BlockFacing::East => "east", + BlockFacing::South => "south", + BlockFacing::West => "west", + BlockFacing::Up => "up", + BlockFacing::Down => "down", }) } } -impl std::fmt::Display for RedstoneWireSide { +impl std::fmt::Display for LeverFace { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { f.write_str(match self { - RedstoneWireSide::Up => "up", - RedstoneWireSide::Side => "side", - RedstoneWireSide::None => "none", + LeverFace::Floor => "floor", + LeverFace::Wall => "wall", + LeverFace::Ceiling => "ceiling", }) } } @@ -3391,31 +3382,21 @@ impl std::fmt::Display for HopperFacing { }) } } -impl std::fmt::Display for ComparatorMode { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - f.write_str(match self { - ComparatorMode::Compare => "compare", - ComparatorMode::Subtract => "subtract", - }) - } -} -impl std::fmt::Display for BlockFacing { +impl std::fmt::Display for SlabType { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { f.write_str(match self { - BlockFacing::North => "north", - BlockFacing::East => "east", - BlockFacing::South => "south", - BlockFacing::West => "west", - BlockFacing::Up => "up", - BlockFacing::Down => "down", + SlabType::Top => "top", + SlabType::Bottom => "bottom", + SlabType::Double => "double", }) } } -impl std::fmt::Display for TrapdoorHalf { +impl std::fmt::Display for BlockAxis { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { f.write_str(match self { - TrapdoorHalf::Top => "top", - TrapdoorHalf::Bottom => "bottom", + BlockAxis::X => "x", + BlockAxis::Y => "y", + BlockAxis::Z => "z", }) } } @@ -3448,17 +3429,29 @@ impl std::fmt::Display for Instrument { }) } } -impl SlabType { - fn get_id(self) -> u32 { - self as u32 +impl std::fmt::Display for RedstoneWireSide { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + f.write_str(match self { + RedstoneWireSide::Up => "up", + RedstoneWireSide::Side => "side", + RedstoneWireSide::None => "none", + }) } - fn from_id(id: u32) -> Self { - match id { - 0 => SlabType::Top, - 1 => SlabType::Bottom, - 2 => SlabType::Double, - id => unreachable!(), - } +} +impl std::fmt::Display for TrapdoorHalf { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + f.write_str(match self { + TrapdoorHalf::Top => "top", + TrapdoorHalf::Bottom => "bottom", + }) + } +} +impl std::fmt::Display for ComparatorMode { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + f.write_str(match self { + ComparatorMode::Compare => "compare", + ComparatorMode::Subtract => "subtract", + }) } } impl BlockDirection { @@ -3475,41 +3468,31 @@ impl BlockDirection { } } } -impl LeverFace { - fn get_id(self) -> u32 { - self as u32 - } - fn from_id(id: u32) -> Self { - match id { - 0 => LeverFace::Floor, - 1 => LeverFace::Wall, - 2 => LeverFace::Ceiling, - id => unreachable!(), - } - } -} -impl BlockAxis { +impl BlockFacing { fn get_id(self) -> u32 { self as u32 } fn from_id(id: u32) -> Self { match id { - 0 => BlockAxis::X, - 1 => BlockAxis::Y, - 2 => BlockAxis::Z, + 0 => BlockFacing::North, + 1 => BlockFacing::East, + 2 => BlockFacing::South, + 3 => BlockFacing::West, + 4 => BlockFacing::Up, + 5 => BlockFacing::Down, id => unreachable!(), } } } -impl RedstoneWireSide { +impl LeverFace { fn get_id(self) -> u32 { self as u32 } fn from_id(id: u32) -> Self { match id { - 0 => RedstoneWireSide::Up, - 1 => RedstoneWireSide::Side, - 2 => RedstoneWireSide::None, + 0 => LeverFace::Floor, + 1 => LeverFace::Wall, + 2 => LeverFace::Ceiling, id => unreachable!(), } } @@ -3529,42 +3512,28 @@ impl HopperFacing { } } } -impl ComparatorMode { - fn get_id(self) -> u32 { - self as u32 - } - fn from_id(id: u32) -> Self { - match id { - 0 => ComparatorMode::Compare, - 1 => ComparatorMode::Subtract, - id => unreachable!(), - } - } -} -impl BlockFacing { +impl SlabType { fn get_id(self) -> u32 { self as u32 } fn from_id(id: u32) -> Self { match id { - 0 => BlockFacing::North, - 1 => BlockFacing::East, - 2 => BlockFacing::South, - 3 => BlockFacing::West, - 4 => BlockFacing::Up, - 5 => BlockFacing::Down, + 0 => SlabType::Top, + 1 => SlabType::Bottom, + 2 => SlabType::Double, id => unreachable!(), } } } -impl TrapdoorHalf { +impl BlockAxis { fn get_id(self) -> u32 { self as u32 } fn from_id(id: u32) -> Self { match id { - 0 => TrapdoorHalf::Top, - 1 => TrapdoorHalf::Bottom, + 0 => BlockAxis::X, + 1 => BlockAxis::Y, + 2 => BlockAxis::Z, id => unreachable!(), } } @@ -3602,6 +3571,43 @@ impl Instrument { } } } +impl RedstoneWireSide { + fn get_id(self) -> u32 { + self as u32 + } + fn from_id(id: u32) -> Self { + match id { + 0 => RedstoneWireSide::Up, + 1 => RedstoneWireSide::Side, + 2 => RedstoneWireSide::None, + id => unreachable!(), + } + } +} +impl TrapdoorHalf { + fn get_id(self) -> u32 { + self as u32 + } + fn from_id(id: u32) -> Self { + match id { + 0 => TrapdoorHalf::Top, + 1 => TrapdoorHalf::Bottom, + id => unreachable!(), + } + } +} +impl ComparatorMode { + fn get_id(self) -> u32 { + self as u32 + } + fn from_id(id: u32) -> Self { + match id { + 0 => ComparatorMode::Compare, + 1 => ComparatorMode::Subtract, + id => unreachable!(), + } + } +} #[derive(Clone, Copy, Debug, PartialEq, Eq)] pub enum Item { Stone, From 01711c4e74c91e6d6bc4a977d4cf30a28d104289 Mon Sep 17 00:00:00 2001 From: StackDoubleFlow Date: Wed, 4 Mar 2026 20:25:53 -0500 Subject: [PATCH 3/7] Use proc macro to read ids instead of hardcoding them --- Cargo.lock | 1 + crates/blocks/src/block_entities.rs | 24 ++++++---- crates/blocks/src/blocks/props.rs | 55 +++++++++++++---------- crates/blocks/src/items.rs | 2 +- crates/core/src/player.rs | 3 +- crates/network/Cargo.toml | 1 + crates/network/src/packets/clientbound.rs | 22 +++++---- crates/proc_macros/src/lib.rs | 32 +++++++++++-- crates/proc_macros/src/mc_data.rs | 32 ++++++++++++- crates/redstone/src/noteblock.rs | 8 +++- crates/redstone/src/repeater.rs | 7 +-- crates/redstone/src/wire/mod.rs | 4 +- 12 files changed, 134 insertions(+), 57 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index acfdda1b..b4cc12bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1230,6 +1230,7 @@ dependencies = [ "byteorder", "flate2", "hematite-nbt", + "mchprs_proc_macros", "mchprs_text", "serde", "tracing", diff --git a/crates/blocks/src/block_entities.rs b/crates/blocks/src/block_entities.rs index 56ca071d..df6b90c5 100644 --- a/crates/blocks/src/block_entities.rs +++ b/crates/blocks/src/block_entities.rs @@ -1,4 +1,5 @@ use crate::items::Item; +use mchprs_proc_macros::protocol_id; use mchprs_utils::{map, nbt_unwrap_val}; use serde::{Deserialize, Serialize}; use std::collections::HashMap; @@ -58,12 +59,12 @@ impl ContainerType { } } - pub fn window_type(self) -> u8 { + pub fn window_type(self) -> i32 { // https://wiki.vg/Inventory match self { - ContainerType::Furnace => 14, - ContainerType::Barrel => 2, - ContainerType::Hopper => 16, + ContainerType::Furnace => protocol_id!("minecraft:menu", "minecraft:furnace"), + ContainerType::Barrel => protocol_id!("minecraft:menu", "minecraft:generic_9x3"), + ContainerType::Hopper => protocol_id!("minecraft:menu", "minecraft:hopper"), } } } @@ -84,14 +85,19 @@ pub enum BlockEntity { impl BlockEntity { /// The protocol id for the block entity pub fn ty(&self) -> i32 { + macro_rules! block_entity_id { + ($name:literal) => { + protocol_id!("minecraft:block_entity_type", $name) + }; + } match self { - BlockEntity::Comparator { .. } => 18, + BlockEntity::Comparator { .. } => block_entity_id!("minecraft:comparator"), BlockEntity::Container { ty, .. } => match ty { - ContainerType::Furnace => 0, - ContainerType::Barrel => 26, - ContainerType::Hopper => 17, + ContainerType::Furnace => block_entity_id!("minecraft:comparator"), + ContainerType::Barrel => block_entity_id!("minecraft:barrel"), + ContainerType::Hopper => block_entity_id!("minecraft:hopper"), }, - BlockEntity::Sign(_) => 7, + BlockEntity::Sign(_) => block_entity_id!("minecraft:sign"), } } diff --git a/crates/blocks/src/blocks/props.rs b/crates/blocks/src/blocks/props.rs index 69d6a474..f2efc423 100644 --- a/crates/blocks/src/blocks/props.rs +++ b/crates/blocks/src/blocks/props.rs @@ -1,3 +1,5 @@ +use mchprs_proc_macros::protocol_id; + use super::{Block, BlockDirection, BlockProperty, BlockTransform, FlipDirection}; #[derive(Copy, Clone, Debug, PartialEq, Eq, BlockProperty, BlockTransform)] @@ -20,7 +22,7 @@ impl Default for Repeater { } impl Repeater { - pub(super) fn new(delay: u8, facing: BlockDirection, locked: bool, powered: bool) -> Repeater { + pub fn new(delay: u8, facing: BlockDirection, locked: bool, powered: bool) -> Repeater { Repeater { delay, facing, @@ -217,29 +219,36 @@ impl Instrument { } pub fn to_sound_id(&self) -> i32 { + macro_rules! sound_id { + ($name:literal) => { + protocol_id!("minecraft:sound_event", $name) + }; + } match self { - Instrument::Harp => 945, - Instrument::Basedrum => 939, - Instrument::Snare => 948, - Instrument::Hat => 946, - Instrument::Bass => 940, - Instrument::Flute => 943, - Instrument::Bell => 941, - Instrument::Guitar => 944, - Instrument::Chime => 942, - Instrument::Xylophone => 949, - Instrument::IronXylophone => 950, - Instrument::CowBell => 951, - Instrument::Didgeridoo => 952, - Instrument::Bit => 953, - Instrument::Banjo => 954, - Instrument::Pling => 947, - Instrument::Zombie => 955, - Instrument::Skeleton => 956, - Instrument::Creeper => 957, - Instrument::Dragon => 958, - Instrument::WitherSkeleton => 959, - Instrument::Piglin => 960, + Instrument::Harp => sound_id!("minecraft:block.note_block.harp"), + Instrument::Basedrum => sound_id!("minecraft:block.note_block.basedrum"), + Instrument::Snare => sound_id!("minecraft:block.note_block.snare"), + Instrument::Hat => sound_id!("minecraft:block.note_block.hat"), + Instrument::Bass => sound_id!("minecraft:block.note_block.bass"), + Instrument::Flute => sound_id!("minecraft:block.note_block.flute"), + Instrument::Bell => sound_id!("minecraft:block.note_block.bell"), + Instrument::Guitar => sound_id!("minecraft:block.note_block.guitar"), + Instrument::Chime => sound_id!("minecraft:block.note_block.chime"), + Instrument::Xylophone => sound_id!("minecraft:block.note_block.xylophone"), + Instrument::IronXylophone => sound_id!("minecraft:block.note_block.iron_xylophone"), + Instrument::CowBell => sound_id!("minecraft:block.note_block.cow_bell"), + Instrument::Didgeridoo => sound_id!("minecraft:block.note_block.didgeridoo"), + Instrument::Bit => sound_id!("minecraft:block.note_block.bit"), + Instrument::Banjo => sound_id!("minecraft:block.note_block.banjo"), + Instrument::Pling => sound_id!("minecraft:block.note_block.pling"), + Instrument::Zombie => sound_id!("minecraft:block.note_block.imitate.zombie"), + Instrument::Skeleton => sound_id!("minecraft:block.note_block.imitate.skeleton"), + Instrument::Creeper => sound_id!("minecraft:block.note_block.imitate.creeper"), + Instrument::Dragon => sound_id!("minecraft:block.note_block.imitate.ender_dragon"), + Instrument::WitherSkeleton => { + sound_id!("minecraft:block.note_block.imitate.wither_skeleton") + } + Instrument::Piglin => sound_id!("minecraft:block.note_block.imitate.piglin"), _ => 0, } } diff --git a/crates/blocks/src/items.rs b/crates/blocks/src/items.rs index 0e2304a6..9b76bbc1 100644 --- a/crates/blocks/src/items.rs +++ b/crates/blocks/src/items.rs @@ -1,6 +1,6 @@ use crate::block_entities::ContainerType; -use mchprs_utils::map; pub use crate::generated::Item; +use mchprs_utils::map; #[derive(Clone, Debug)] pub struct ItemStack { diff --git a/crates/core/src/player.rs b/crates/core/src/player.rs index c97b393a..386c8737 100644 --- a/crates/core/src/player.rs +++ b/crates/core/src/player.rs @@ -10,6 +10,7 @@ use mchprs_blocks::{BlockDirection, BlockFacing, BlockPos}; use mchprs_network::packets::clientbound::*; use mchprs_network::packets::{PacketEncoder, PlayerProperty, SlotData}; use mchprs_network::{PlayerConn, PlayerPacketSender}; +use mchprs_proc_macros::protocol_id; use mchprs_text::{ColorCode, TextComponent, TextComponentBuilder}; use serde::{Deserialize, Serialize}; use std::fmt; @@ -547,7 +548,7 @@ impl Player { CSpawnEntity { entity_id: self.entity_id as i32, entity_uuid: self.uuid, - entity_type: 124, // minecraft::player + entity_type: protocol_id!("minecraft:entity_type", "minecraft:player"), pitch: self.pitch, yaw: self.yaw, // TODO: probably not the same diff --git a/crates/network/Cargo.toml b/crates/network/Cargo.toml index 4d575aa6..0411979d 100644 --- a/crates/network/Cargo.toml +++ b/crates/network/Cargo.toml @@ -13,6 +13,7 @@ repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] +mchprs_proc_macros = { path = "../proc_macros" } mchprs_text = { path = "../text" } hematite-nbt = { workspace = true } flate2 = { workspace = true } diff --git a/crates/network/src/packets/clientbound.rs b/crates/network/src/packets/clientbound.rs index f9322e11..5656b2d6 100644 --- a/crates/network/src/packets/clientbound.rs +++ b/crates/network/src/packets/clientbound.rs @@ -2,6 +2,7 @@ use super::{PacketEncoder, PacketEncoderExt, PalettedContainer, PlayerProperty, use crate::nbt_util::{NBTCompound, NBTMap}; use bitvec::bits; use bitvec::prelude::Lsb0; +use mchprs_proc_macros::protocol_id; use mchprs_text::TextComponent; use serde::Serialize; use std::collections::HashMap; @@ -407,29 +408,34 @@ pub enum CDeclareCommandsNodeParser { impl CDeclareCommandsNodeParser { fn write(&self, buf: &mut Vec) { use CDeclareCommandsNodeParser::*; + macro_rules! arg_type { + ($name:literal) => { + protocol_id!("minecraft:command_argument_type", $name) + }; + } match self { Entity(flags) => { - buf.write_varint(6); // minecraft:entity + buf.write_varint(arg_type!("minecraft:entity")); buf.write_byte(*flags); } - Vec2 => buf.write_varint(11), // minecraft:vec2 - Vec3 => buf.write_varint(10), // minecraft:vec3 - BlockPos => buf.write_varint(8), // minecraft:block_pos - BlockState => buf.write_varint(12), // minecraft:block_state + Vec2 => buf.write_varint(arg_type!("minecraft:vec2")), + Vec3 => buf.write_varint(arg_type!("minecraft:vec3")), + BlockPos => buf.write_varint(arg_type!("minecraft:block_pos")), + BlockState => buf.write_varint(arg_type!("minecraft:block_state")), Integer(min, max) => { - buf.write_varint(3); // brigadier:integer + buf.write_varint(arg_type!("brigadier:integer")); buf.write_byte(3); // Supply min and max value buf.write_int(*min); buf.write_int(*max); } Float(min, max) => { - buf.write_varint(1); // brigadier:float + buf.write_varint(arg_type!("brigadier:float")); buf.write_byte(3); buf.write_float(*min); buf.write_float(*max); } String(ty) => { - buf.write_varint(5); // brigadier:string + buf.write_varint(arg_type!("brigadier:string")); buf.write_varint(*ty); } } diff --git a/crates/proc_macros/src/lib.rs b/crates/proc_macros/src/lib.rs index 0a561fa6..31f088cc 100644 --- a/crates/proc_macros/src/lib.rs +++ b/crates/proc_macros/src/lib.rs @@ -1,5 +1,5 @@ use proc_macro::TokenStream; -use syn::{parse_macro_input, DeriveInput}; +use syn::{parse::Parse, parse_macro_input, punctuated::Punctuated, DeriveInput, LitStr, Token}; mod block_attribs; mod mc_data; @@ -26,10 +26,36 @@ pub fn derive_block_transform(input: TokenStream) -> TokenStream { #[proc_macro] pub fn block_id(input: TokenStream) -> TokenStream { - let input = parse_macro_input!(input as syn::LitStr); + let input = parse_macro_input!(input as LitStr); match mc_data::get_block_id(input) { Ok(ts) => ts, Err(err) => err.to_compile_error().into(), } -} \ No newline at end of file +} + +struct GetProtocolIdInput { + registry: LitStr, + _comma: Token![,], + entry: LitStr, +} + +impl Parse for GetProtocolIdInput { + fn parse(input: syn::parse::ParseStream) -> syn::Result { + Ok(Self { + registry: input.parse()?, + _comma: input.parse()?, + entry: input.parse()?, + }) + } +} + +#[proc_macro] +pub fn protocol_id(input: TokenStream) -> TokenStream { + let input = parse_macro_input!(input as GetProtocolIdInput); + + match mc_data::get_protocol_id(input.registry, input.entry) { + Ok(ts) => ts, + Err(err) => err.to_compile_error().into(), + } +} diff --git a/crates/proc_macros/src/mc_data.rs b/crates/proc_macros/src/mc_data.rs index a4fe23ab..3cf8e347 100644 --- a/crates/proc_macros/src/mc_data.rs +++ b/crates/proc_macros/src/mc_data.rs @@ -5,12 +5,12 @@ use nom::{ sequence::{delimited, separated_pair}, IResult, Parser, }; -use proc_macro::TokenStream; +use proc_macro::{Literal, TokenStream}; use quote::quote; use rustc_hash::FxHashMap; use serde::Deserialize; use std::{collections::HashMap, path::PathBuf, sync::LazyLock}; -use syn::{Error, LitStr}; +use syn::{parse::Parse, parse_macro_input, punctuated::Punctuated, Error, LitStr, Token}; #[derive(Deserialize)] struct BlockData { @@ -34,6 +34,21 @@ static BLOCKS: LazyLock> = LazyLock::new(|| { serde_json::from_str(&path).unwrap() }); +#[derive(Deserialize)] +struct RegistryEntry { + protocol_id: i32, +} + +#[derive(Deserialize)] +struct Registry { + entries: FxHashMap, +} + +static REGISTRY: LazyLock> = LazyLock::new(|| { + let path = std::fs::read_to_string(mc_data_path("registries.json")).unwrap(); + serde_json::from_str(&path).unwrap() +}); + fn parse_props(input: &str) -> IResult<&str, HashMap<&str, &str>> { let (input, items) = separated_list1( char(','), @@ -106,3 +121,16 @@ pub fn get_block_id(str: LitStr) -> Result { "could not find matching block state", )) } + +pub fn get_protocol_id(registry: LitStr, entry: LitStr) -> Result { + let registry = REGISTRY + .get(®istry.value()) + .ok_or_else(|| Error::new_spanned(registry, "invalid registry indentifier"))?; + let entry = registry + .entries + .get(&entry.value()) + .ok_or_else(|| Error::new_spanned(entry, "invalid entry identifier"))?; + + let lit = entry.protocol_id; + Ok(TokenStream::from(quote! { #lit })) +} diff --git a/crates/redstone/src/noteblock.rs b/crates/redstone/src/noteblock.rs index ec0287c4..f8051a75 100644 --- a/crates/redstone/src/noteblock.rs +++ b/crates/redstone/src/noteblock.rs @@ -17,5 +17,11 @@ pub fn play_note(world: &mut impl World, pos: BlockPos, instrument: Instrument, // The range [0, 31] is used even though it is different from the noteblock's note range // of [0, 24] because mapping to [0, 31] can be done efficiently using bitwise AND. let pitch = f32::exp2(((note % 32) as f32 - 12.0) / 12.0); - world.play_sound(pos, instrument.to_sound_id(), sound_category, volume, pitch); + world.play_sound( + pos, + instrument.to_sound_id() as i32, + sound_category, + volume, + pitch, + ); } diff --git a/crates/redstone/src/repeater.rs b/crates/redstone/src/repeater.rs index ab6aa161..5b032071 100644 --- a/crates/redstone/src/repeater.rs +++ b/crates/redstone/src/repeater.rs @@ -42,12 +42,7 @@ fn on_state_change(rep: Repeater, world: &mut impl World, pos: BlockPos) { } } -fn schedule_tick( - rep: Repeater, - world: &mut impl World, - pos: BlockPos, - should_be_powered: bool, -) { +fn schedule_tick(rep: Repeater, world: &mut impl World, pos: BlockPos, should_be_powered: bool) { let front_block = world.get_block(pos.offset(rep.facing.opposite().block_face())); let priority = if super::is_diode(front_block) { TickPriority::Highest diff --git a/crates/redstone/src/wire/mod.rs b/crates/redstone/src/wire/mod.rs index e588ed22..816af6c8 100644 --- a/crates/redstone/src/wire/mod.rs +++ b/crates/redstone/src/wire/mod.rs @@ -112,9 +112,7 @@ fn can_connect_to(block: Block, side: BlockDirection) -> bool { | Block::StoneButton { .. } | Block::Target { .. } | Block::Lever { .. } => true, - Block::Repeater(repeater) => { - repeater.facing == side || repeater.facing == side.opposite() - } + Block::Repeater(repeater) => repeater.facing == side || repeater.facing == side.opposite(), Block::Observer { facing, .. } => facing == side.block_facing(), _ => false, } From 84fa5c95aa8fc674bbc66f5594befb9653e458a9 Mon Sep 17 00:00:00 2001 From: StackDoubleFlow Date: Thu, 5 Mar 2026 03:35:34 -0500 Subject: [PATCH 4/7] Remove some unsued imports --- crates/proc_macros/src/lib.rs | 2 +- crates/proc_macros/src/mc_data.rs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/proc_macros/src/lib.rs b/crates/proc_macros/src/lib.rs index 31f088cc..b894d181 100644 --- a/crates/proc_macros/src/lib.rs +++ b/crates/proc_macros/src/lib.rs @@ -1,5 +1,5 @@ use proc_macro::TokenStream; -use syn::{parse::Parse, parse_macro_input, punctuated::Punctuated, DeriveInput, LitStr, Token}; +use syn::{parse::Parse, parse_macro_input, DeriveInput, LitStr, Token}; mod block_attribs; mod mc_data; diff --git a/crates/proc_macros/src/mc_data.rs b/crates/proc_macros/src/mc_data.rs index 3cf8e347..46763c55 100644 --- a/crates/proc_macros/src/mc_data.rs +++ b/crates/proc_macros/src/mc_data.rs @@ -1,16 +1,16 @@ use nom::{ - bytes::complete::{tag, take_till, take_until}, + bytes::complete::{take_till, take_until}, character::complete::char, multi::separated_list1, sequence::{delimited, separated_pair}, IResult, Parser, }; -use proc_macro::{Literal, TokenStream}; +use proc_macro::TokenStream; use quote::quote; use rustc_hash::FxHashMap; use serde::Deserialize; use std::{collections::HashMap, path::PathBuf, sync::LazyLock}; -use syn::{parse::Parse, parse_macro_input, punctuated::Punctuated, Error, LitStr, Token}; +use syn::{Error, LitStr}; #[derive(Deserialize)] struct BlockData { From 76f6cfccf9455351097eda2475941eb882ffe58d Mon Sep 17 00:00:00 2001 From: StackDoubleFlow Date: Fri, 6 Mar 2026 03:59:12 -0500 Subject: [PATCH 5/7] Fix block and item name namespacing changes --- crates/blocks/src/block_entities.rs | 2 +- crates/core/src/plot/worldedit/mod.rs | 12 ++++++------ crates/core/src/plot/worldedit/schematic.rs | 4 ++-- crates/world_exporter/src/regions.rs | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/crates/blocks/src/block_entities.rs b/crates/blocks/src/block_entities.rs index df6b90c5..84391bdf 100644 --- a/crates/blocks/src/block_entities.rs +++ b/crates/blocks/src/block_entities.rs @@ -246,7 +246,7 @@ impl BlockEntity { for entry in inventory { let nbt = map! { "Count" => nbt::Value::Byte(entry.count), - "id" => nbt::Value::String("minecraft:".to_string() + Item::from_id(entry.id).get_name()), + "id" => nbt::Value::String(Item::from_id(entry.id).get_name().to_owned()), "Slot" => nbt::Value::Byte(entry.slot) }; // TODO: item nbt data in containers diff --git a/crates/core/src/plot/worldedit/mod.rs b/crates/core/src/plot/worldedit/mod.rs index 5eb8f948..66c65173 100644 --- a/crates/core/src/plot/worldedit/mod.rs +++ b/crates/core/src/plot/worldedit/mod.rs @@ -839,12 +839,12 @@ impl FromStr for WorldEditPattern { .unwrap(), ) } else { - let block_name = pattern_match - .get(5) - .unwrap() - .as_str() - .trim_start_matches("minecraft:"); - Block::from_name(block_name) + let mut block_name = pattern_match.get(5).unwrap().as_str().to_string(); + if !block_name.contains(':') { + block_name.insert_str(0, "minecraft:"); + } + + Block::from_name(&block_name) .ok_or_else(|| PatternParseError::UnknownBlock(part.to_owned()))? }; diff --git a/crates/core/src/plot/worldedit/schematic.rs b/crates/core/src/plot/worldedit/schematic.rs index bee8c438..91242523 100644 --- a/crates/core/src/plot/worldedit/schematic.rs +++ b/crates/core/src/plot/worldedit/schematic.rs @@ -229,7 +229,7 @@ pub fn save_schematic(file_name: &str, clipboard: &WorldEditClipboard) -> Result let entry = blocks.get_entry((y_offset + z_offset + x) as usize); let block = Block::from_id(entry); - let name = format!("minecraft:{}", block.get_name()); + let name = block.get_name(); let props = block.properties(); let full_name = if !props.is_empty() { let props_strs: Vec = props @@ -238,7 +238,7 @@ pub fn save_schematic(file_name: &str, clipboard: &WorldEditClipboard) -> Result .collect(); format!("{}[{}]", name, props_strs.join(",")) } else { - name + name.to_owned() }; let mut idx = if let Some(idx) = pallette.iter().position(|s| *s == full_name) { idx diff --git a/crates/world_exporter/src/regions.rs b/crates/world_exporter/src/regions.rs index 6a933120..99e9a57e 100644 --- a/crates/world_exporter/src/regions.rs +++ b/crates/world_exporter/src/regions.rs @@ -29,7 +29,7 @@ fn encode_section(section: &ChunkSection) -> HashMap { let mut palette = Vec::new(); for block in buffer.palette() { let block = Block::from_id(*block); - let name = format!("minecraft:{}", block.get_name()); + let name = block.get_name(); let props = block.properties(); let props = props .iter() From 63a6022e9eedfa9aa9fab225582c1e19f42fd581 Mon Sep 17 00:00:00 2001 From: StackDoubleFlow Date: Fri, 6 Mar 2026 04:19:02 -0500 Subject: [PATCH 6/7] Missed a minecraft: case --- crates/block_data_gen/src/main.rs | 2 -- crates/core/src/interaction.rs | 14 +++++++------- crates/core/src/plot/worldedit/execute.rs | 14 +++++++------- crates/core/src/plot/worldedit/mod.rs | 2 +- crates/core/src/plot/worldedit/schematic.rs | 6 +++++- crates/proc_macros/src/mc_data.rs | 1 - crates/redstone/src/noteblock.rs | 2 +- 7 files changed, 21 insertions(+), 20 deletions(-) diff --git a/crates/block_data_gen/src/main.rs b/crates/block_data_gen/src/main.rs index 6ca31f58..54b9e279 100644 --- a/crates/block_data_gen/src/main.rs +++ b/crates/block_data_gen/src/main.rs @@ -315,7 +315,6 @@ fn generate_is_attr( fn generate_from_name(blocks: &[ProcessedBlock]) -> TokenStream { let match_arms = blocks.iter().map(|block| { - // dbg!(block); let name = &block.name; let pascal_name = ident(&block.pascal_name); let init = block.props.iter().map(|prop| { @@ -911,7 +910,6 @@ fn main() { .into_iter() .map(|(name, attrs)| process_block(name, attrs, &blocks_json, &prop_types)) .collect::>(); - // dbg!(&processed_blocks); let mut items = Vec::new(); for block in &processed_blocks { diff --git a/crates/core/src/interaction.rs b/crates/core/src/interaction.rs index 711b0eaf..2712d2eb 100644 --- a/crates/core/src/interaction.rs +++ b/crates/core/src/interaction.rs @@ -69,7 +69,7 @@ fn get_sign_placement( let rotation = (((180.0 + context.player.yaw) * 16.0 / 360.0) + 0.5).floor() as u8 & 15; match context.block_face { - BlockFace::Bottom => Block::Air {}, + BlockFace::Bottom => Block::Air, BlockFace::Top => standard(rotation), _ => wall(context.block_face.unwrap_direction()), } @@ -140,7 +140,7 @@ pub fn get_state_for_placement( }, }, Item::TripwireHook => match context.block_face { - BlockFace::Bottom | BlockFace::Top => Block::Air {}, + BlockFace::Bottom | BlockFace::Top => Block::Air, direction => Block::TripwireHook { facing: direction.unwrap_direction(), powered: false, @@ -235,13 +235,13 @@ pub fn get_state_for_placement( eye: false, facing: context.player.get_direction().opposite(), }, - _ => Block::Air {}, + _ => Block::Air, }; let block = simple_block.unwrap_or(block); if is_valid_position(block, world, pos) { block } else { - Block::Air {} + Block::Air } } @@ -286,12 +286,12 @@ pub fn destroy(block: Block, world: &mut impl World, pos: BlockPos) { match block { Block::RedstoneWire { .. } => { - world.set_block(pos, Block::Air {}); + world.set_block(pos, Block::Air); change_surrounding_blocks(world, pos); redstone::update_wire_neighbors(world, pos); } Block::Lever { face, facing, .. } => { - world.set_block(pos, Block::Air {}); + world.set_block(pos, Block::Air); // This is a horrible idea, don't do this. // One day this will be fixed, but for now... too bad! match face { @@ -313,7 +313,7 @@ pub fn destroy(block: Block, world: &mut impl World, pos: BlockPos) { } } _ => { - world.set_block(pos, Block::Air {}); + world.set_block(pos, Block::Air); change_surrounding_blocks(world, pos); redstone::update_surrounding_blocks(world, pos); } diff --git a/crates/core/src/plot/worldedit/execute.rs b/crates/core/src/plot/worldedit/execute.rs index 22bfd9a7..5ad80e6a 100644 --- a/crates/core/src/plot/worldedit/execute.rs +++ b/crates/core/src/plot/worldedit/execute.rs @@ -870,7 +870,7 @@ pub(super) fn execute_up(ctx: CommandExecuteContext<'_>) { let block_pos = pos.block_pos(); let platform_pos = block_pos.offset(BlockFace::Bottom); - if matches!(ctx.plot.get_block(platform_pos), Block::Air {}) { + if matches!(ctx.plot.get_block(platform_pos), Block::Air) { ctx.plot.set_block(platform_pos, Block::Glass {}); } @@ -894,9 +894,9 @@ pub(super) fn execute_ascend(ctx: CommandExecuteContext<'_>) { let floor_pos = player_pos + BlockPos::new(0, y - 1, 0); let pos = player_pos + BlockPos::new(0, y, 0); let high_pos = player_pos + BlockPos::new(0, y + 1, 0); - if ctx.plot.get_block(floor_pos) != (Block::Air {}) - && ctx.plot.get_block(pos) == (Block::Air {}) - && ctx.plot.get_block(high_pos) == (Block::Air {}) + if ctx.plot.get_block(floor_pos) != Block::Air + && ctx.plot.get_block(pos) == Block::Air + && ctx.plot.get_block(high_pos) == Block::Air { player_y = pos.y; levels -= 1; @@ -930,9 +930,9 @@ pub(super) fn execute_descend(ctx: CommandExecuteContext<'_>) { let floor_pos = player_pos + BlockPos::new(0, y - 1, 0); let pos = player_pos + BlockPos::new(0, y, 0); let high_pos = player_pos + BlockPos::new(0, y + 1, 0); - if ctx.plot.get_block(floor_pos) != (Block::Air {}) - && ctx.plot.get_block(pos) == (Block::Air {}) - && ctx.plot.get_block(high_pos) == (Block::Air {}) + if ctx.plot.get_block(floor_pos) != Block::Air + && ctx.plot.get_block(pos) == Block::Air + && ctx.plot.get_block(high_pos) == Block::Air { player_y = pos.y; levels -= 1; diff --git a/crates/core/src/plot/worldedit/mod.rs b/crates/core/src/plot/worldedit/mod.rs index 66c65173..e757efdd 100644 --- a/crates/core/src/plot/worldedit/mod.rs +++ b/crates/core/src/plot/worldedit/mod.rs @@ -965,7 +965,7 @@ pub fn ray_trace_block( let block_pos = pos.block_pos(); let block = world.get_block(block_pos); - if !matches!(block, Block::Air {}) { + if !matches!(block, Block::Air) { return Some(block_pos); } diff --git a/crates/core/src/plot/worldedit/schematic.rs b/crates/core/src/plot/worldedit/schematic.rs index 91242523..89dbf3a5 100644 --- a/crates/core/src/plot/worldedit/schematic.rs +++ b/crates/core/src/plot/worldedit/schematic.rs @@ -31,7 +31,11 @@ fn parse_block(str: &str) -> Option { static RE: Lazy = Lazy::new(|| Regex::new(r"(?:minecraft:)?([a-z_]+)(?:\[([a-z=,0-9]+)\])?").unwrap()); let captures = RE.captures(str)?; - let mut block = Block::from_name(captures.get(1)?.as_str()).unwrap_or(Block::Air {}); + let mut block_name = captures.get(1)?.as_str().to_owned(); + if !block_name.contains(':') { + block_name.insert_str(0, "minecraft:"); + } + let mut block = Block::from_name(&block_name).unwrap_or(Block::Air); if let Some(properties_match) = captures.get(2) { let properties = properties_match .as_str() diff --git a/crates/proc_macros/src/mc_data.rs b/crates/proc_macros/src/mc_data.rs index 46763c55..51a3b6a4 100644 --- a/crates/proc_macros/src/mc_data.rs +++ b/crates/proc_macros/src/mc_data.rs @@ -93,7 +93,6 @@ pub fn get_block_id(str: LitStr) -> Result { let (_, block_info) = parse_block(&full_name) .map_err(|_| Error::new_spanned(&str, "failed to parse block name"))?; - dbg!(&block_info.name); let block = BLOCKS .get(block_info.name) .ok_or_else(|| Error::new_spanned(&str, "could not find block with name"))?; diff --git a/crates/redstone/src/noteblock.rs b/crates/redstone/src/noteblock.rs index f8051a75..f44ea4a0 100644 --- a/crates/redstone/src/noteblock.rs +++ b/crates/redstone/src/noteblock.rs @@ -3,7 +3,7 @@ use mchprs_blocks::{BlockFace, BlockPos}; use mchprs_world::World; pub fn is_noteblock_unblocked(world: &impl World, pos: BlockPos) -> bool { - matches!(world.get_block(pos.offset(BlockFace::Top)), Block::Air {}) + matches!(world.get_block(pos.offset(BlockFace::Top)), Block::Air) } pub fn get_noteblock_instrument(world: &impl World, pos: BlockPos) -> Instrument { From 522e527eb3174407d4255974c057bb7617598eb4 Mon Sep 17 00:00:00 2001 From: StackDoubleFlow Date: Fri, 6 Mar 2026 04:49:35 -0500 Subject: [PATCH 7/7] Add a little bit of docs for the block data generator --- crates/block_data_gen/src/main.rs | 4 ++++ crates/blocks/src/generated.rs | 3 +++ crates/core/src/interaction.rs | 4 ++-- docs/Adding_a_block.md | 20 ++++++++++++++++++++ mc_data/gen_info.yaml | 5 +++++ 5 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 docs/Adding_a_block.md diff --git a/crates/block_data_gen/src/main.rs b/crates/block_data_gen/src/main.rs index 54b9e279..f8b2e478 100644 --- a/crates/block_data_gen/src/main.rs +++ b/crates/block_data_gen/src/main.rs @@ -836,6 +836,10 @@ fn generate_module( let item_max_stack_size = generate_item_max_stack_size(items); quote! { + //! This module was generated by `mchprs_block_data_gen`. + //! DO NOT EDIT THIS FILE BY HAND. + //! See [Adding a block](../../../docs/Adding_a_block.md) for more information on the block data generator. + #![allow(unused_parens, unused_assignments, non_contiguous_range_endpoints, unused_variables)] use crate::{*, blocks::*}; diff --git a/crates/blocks/src/generated.rs b/crates/blocks/src/generated.rs index 72f048f0..88982bbd 100644 --- a/crates/blocks/src/generated.rs +++ b/crates/blocks/src/generated.rs @@ -1,3 +1,6 @@ +#![doc = r" This module was generated by `mchprs_block_data_gen`."] +#![doc = r" DO NOT EDIT THIS FILE BY HAND."] +#![doc = r" See [Adding a block](../../../docs/Adding_a_block.md) for more information on the block data generator."] #![allow( unused_parens, unused_assignments, diff --git a/crates/core/src/interaction.rs b/crates/core/src/interaction.rs index 2712d2eb..cc1b925c 100644 --- a/crates/core/src/interaction.rs +++ b/crates/core/src/interaction.rs @@ -224,14 +224,14 @@ pub fn get_state_for_placement( powered: false, }, }, - Item::NoteBlock {} => Block::NoteBlock { + Item::NoteBlock => Block::NoteBlock { instrument: Instrument::Harp, note: 0, powered: false, }, Item::BoneBlock => Block::BoneBlock { axis: BlockAxis::Y }, Item::HayBlock => Block::HayBlock { axis: BlockAxis::Y }, - Item::EndPortalFrame {} => Block::EndPortalFrame { + Item::EndPortalFrame => Block::EndPortalFrame { eye: false, facing: context.player.get_direction().opposite(), }, diff --git a/docs/Adding_a_block.md b/docs/Adding_a_block.md new file mode 100644 index 00000000..271464cd --- /dev/null +++ b/docs/Adding_a_block.md @@ -0,0 +1,20 @@ +# Adding a block + +This document explains the process of adding a new block to MCHPRS. + +### Editing the [gen_info.yaml](../mc_data/gen_info.yaml) file + +Blocks and items in MCHPRS are defined in the [gen_info.yaml](../mc_data/gen_info.yaml). See the comments in this file for information on how to define a block and its corresponding item. + +### Implementing placement logic for complex blocks + +If a block has properties or otherwise has complex placement logic, you cannot use the `simple_item` attribute in `gen_info.yaml`. Therefore, the placement logic has to be implemented by hand in the [`core::interaction`](../crates/core/src/interaction.rs) module. Add a match arm for your `Item` variant in the `get_state_for_placement` function. See the other item to block mappings for an example. + +### Running the block data generator + +Running the block data generator will produce the [generated.rs](../crates/blocks/src/generated.rs) file containing the `Block` and `Item` enums. + +```sh +cd crates/block_data_gen +cargo run +``` diff --git a/mc_data/gen_info.yaml b/mc_data/gen_info.yaml index ec62477c..2989a815 100644 --- a/mc_data/gen_info.yaml +++ b/mc_data/gen_info.yaml @@ -214,6 +214,11 @@ prop_types: - compare - subtract +# Items defined here are those that could not have been defined by the block `item` or +# `simple_item` attributes. This is either because the item has a non-standard stack +# size, does not have the same name as its block, or does not correspond to a block at +# all. + # Items can have the following attributes # max_stack:##: the maximum number of this item that fits in one inventory slot # block: this item can be placed