From 57b48ba56f943f0d82c34f7dd9af42ad7f56183d Mon Sep 17 00:00:00 2001 From: Mike Primm Date: Wed, 8 Jun 2022 00:42:08 -0500 Subject: [PATCH] Add 1.19 blocks and textures --- DynmapCore/src/main/resources/models_1.txt | 485 ++++++++++++++++ DynmapCore/src/main/resources/texture_1.txt | 532 ++++++++++++++++++ .../minecraft/textures/block/frogspawn.png | Bin 0 -> 157 bytes .../textures/block/mangrove_door_bottom.png | Bin 0 -> 278 bytes .../textures/block/mangrove_door_top.png | Bin 0 -> 273 bytes .../textures/block/mangrove_leaves.png | Bin 0 -> 279 bytes .../minecraft/textures/block/mangrove_log.png | Bin 0 -> 242 bytes .../textures/block/mangrove_log_top.png | Bin 0 -> 285 bytes .../textures/block/mangrove_planks.png | Bin 0 -> 266 bytes .../textures/block/mangrove_propagule.png | Bin 0 -> 160 bytes .../block/mangrove_propagule_hanging.png | Bin 0 -> 258 bytes .../textures/block/mangrove_roots_side.png | Bin 0 -> 250 bytes .../textures/block/mangrove_roots_top.png | Bin 0 -> 266 bytes .../textures/block/mangrove_trapdoor.png | Bin 0 -> 261 bytes .../assets/minecraft/textures/block/mud.png | Bin 0 -> 283 bytes .../minecraft/textures/block/mud_bricks.png | Bin 0 -> 209 bytes .../block/muddy_mangrove_roots_side.png | Bin 0 -> 330 bytes .../block/muddy_mangrove_roots_top.png | Bin 0 -> 336 bytes .../textures/block/ochre_froglight_side.png | Bin 0 -> 260 bytes .../textures/block/ochre_froglight_top.png | Bin 0 -> 205 bytes .../minecraft/textures/block/packed_mud.png | Bin 0 -> 265 bytes .../block/pearlescent_froglight_side.png | Bin 0 -> 257 bytes .../block/pearlescent_froglight_top.png | Bin 0 -> 204 bytes .../block/reinforced_deepslate_bottom.png | Bin 0 -> 273 bytes .../block/reinforced_deepslate_side.png | Bin 0 -> 321 bytes .../block/reinforced_deepslate_top.png | Bin 0 -> 299 bytes .../assets/minecraft/textures/block/sculk.png | Bin 0 -> 370 bytes .../minecraft/textures/block/sculk.png.mcmeta | 6 + .../textures/block/sculk_catalyst_bottom.png | Bin 0 -> 274 bytes .../textures/block/sculk_catalyst_side.png | Bin 0 -> 314 bytes .../block/sculk_catalyst_side_bloom.png | Bin 0 -> 465 bytes .../sculk_catalyst_side_bloom.png.mcmeta | 5 + .../textures/block/sculk_catalyst_top.png | Bin 0 -> 245 bytes .../block/sculk_catalyst_top_bloom.png | Bin 0 -> 806 bytes .../block/sculk_catalyst_top_bloom.png.mcmeta | 5 + .../textures/block/sculk_shrieker_bottom.png | Bin 0 -> 240 bytes .../sculk_shrieker_can_summon_inner_top.png | Bin 0 -> 724 bytes ...k_shrieker_can_summon_inner_top.png.mcmeta | 6 + .../block/sculk_shrieker_inner_top.png | Bin 0 -> 729 bytes .../block/sculk_shrieker_inner_top.png.mcmeta | 6 + .../textures/block/sculk_shrieker_side.png | Bin 0 -> 309 bytes .../textures/block/sculk_shrieker_top.png | Bin 0 -> 125 bytes .../minecraft/textures/block/sculk_vein.png | Bin 0 -> 423 bytes .../textures/block/sculk_vein.png.mcmeta | 6 + .../textures/block/stripped_mangrove_log.png | Bin 0 -> 253 bytes .../block/stripped_mangrove_log_top.png | Bin 0 -> 261 bytes .../textures/block/verdant_froglight_side.png | Bin 0 -> 258 bytes .../textures/block/verdant_froglight_top.png | Bin 0 -> 205 bytes .../textures/entity/signs/mangrove.png | Bin 0 -> 506 bytes 49 files changed, 1051 insertions(+) create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/frogspawn.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_door_bottom.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_door_top.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_leaves.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_log.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_log_top.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_planks.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_propagule.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_propagule_hanging.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_roots_side.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_roots_top.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_trapdoor.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mud.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mud_bricks.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/muddy_mangrove_roots_side.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/muddy_mangrove_roots_top.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/ochre_froglight_side.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/ochre_froglight_top.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/packed_mud.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/pearlescent_froglight_side.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/pearlescent_froglight_top.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/reinforced_deepslate_bottom.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/reinforced_deepslate_side.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/reinforced_deepslate_top.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk.png.mcmeta create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_catalyst_bottom.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_catalyst_side.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_catalyst_side_bloom.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_catalyst_side_bloom.png.mcmeta create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_catalyst_top.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_catalyst_top_bloom.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_catalyst_top_bloom.png.mcmeta create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_shrieker_bottom.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_shrieker_can_summon_inner_top.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_shrieker_can_summon_inner_top.png.mcmeta create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_shrieker_inner_top.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_shrieker_inner_top.png.mcmeta create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_shrieker_side.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_shrieker_top.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_vein.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_vein.png.mcmeta create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/stripped_mangrove_log.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/stripped_mangrove_log_top.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/verdant_froglight_side.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/verdant_froglight_top.png create mode 100644 DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/entity/signs/mangrove.png diff --git a/DynmapCore/src/main/resources/models_1.txt b/DynmapCore/src/main/resources/models_1.txt index 3696eea8..77730a93 100644 --- a/DynmapCore/src/main/resources/models_1.txt +++ b/DynmapCore/src/main/resources/models_1.txt @@ -355,15 +355,19 @@ patchblock:id=ladder,data=6,data=7,patch0=VertX0In # Wall sign - facing east [-1.13.2]patchblock:id=wall_sign,data=0-1,patch0=WSignFront,patch1=WSignBack,patch2=WSignTop,patch3=WSignBottom,patch4=WSignLeft,patch5=WSignRight [1.14-]patchblock:id=oak_wall_sign,id=birch_wall_sign,id=spruce_wall_sign,id=acacia_wall_sign,id=jungle_wall_sign,id=dark_oak_wall_sign,data=0-1,patch0=WSignFront,patch1=WSignBack,patch2=WSignTop,patch3=WSignBottom,patch4=WSignLeft,patch5=WSignRight +[1.19-]patchblock:id=mangrove_wall_sign,data=0-1,patch0=WSignFront,patch1=WSignBack,patch2=WSignTop,patch3=WSignBottom,patch4=WSignLeft,patch5=WSignRight # Wall sign - facing west [-1.13.2]patchblock:id=wall_sign,data=2-3,patch0=WSignFront@180,patch1=WSignBack@180,patch2=WSignTop@180,patch3=WSignBottom@180,patch4=WSignLeft@180,patch5=WSignRight@180 [1.14-]patchblock:id=oak_wall_sign,id=birch_wall_sign,id=spruce_wall_sign,id=acacia_wall_sign,id=jungle_wall_sign,id=dark_oak_wall_sign,data=2-3,patch0=WSignFront@180,patch1=WSignBack@180,patch2=WSignTop@180,patch3=WSignBottom@180,patch4=WSignLeft@180,patch5=WSignRight@180 +[1.19-]patchblock:id=mangrove_wall_sign,data=2-3,patch0=WSignFront@180,patch1=WSignBack@180,patch2=WSignTop@180,patch3=WSignBottom@180,patch4=WSignLeft@180,patch5=WSignRight@180 # Wall sign - facing north [-1.13.2]patchblock:id=wall_sign,data=4-5,patch0=WSignFront@270,patch1=WSignBack@270,patch2=WSignTop@270,patch3=WSignBottom@270,patch4=WSignLeft@270,patch5=WSignRight@270 [1.14-]patchblock:id=oak_wall_sign,id=birch_wall_sign,id=spruce_wall_sign,id=acacia_wall_sign,id=jungle_wall_sign,id=dark_oak_wall_sign,data=4-5,patch0=WSignFront@270,patch1=WSignBack@270,patch2=WSignTop@270,patch3=WSignBottom@270,patch4=WSignLeft@270,patch5=WSignRight@270 +[1.19-]patchblock:id=mangrove_wall_sign,data=4-5,patch0=WSignFront@270,patch1=WSignBack@270,patch2=WSignTop@270,patch3=WSignBottom@270,patch4=WSignLeft@270,patch5=WSignRight@270 # Wall sign - facing south [-1.13.2]patchblock:id=wall_sign,data=6-7,patch0=WSignFront@90,patch1=WSignBack@90,patch2=WSignTop@90,patch3=WSignBottom@90,patch4=WSignLeft@90,patch5=WSignRight@90 [1.14-]patchblock:id=oak_wall_sign,id=birch_wall_sign,id=spruce_wall_sign,id=acacia_wall_sign,id=jungle_wall_sign,id=dark_oak_wall_sign,data=6-7,patch0=WSignFront@90,patch1=WSignBack@90,patch2=WSignTop@90,patch3=WSignBottom@90,patch4=WSignLeft@90,patch5=WSignRight@90 +[1.19-]patchblock:id=mangrove_wall_sign,data=6-7,patch0=WSignFront@90,patch1=WSignBack@90,patch2=WSignTop@90,patch3=WSignBottom@90,patch4=WSignLeft@90,patch5=WSignRight@90 # Redstone wire customblock:id=redstone_wire,class=org.dynmap.hdmap.renderer.RedstoneWireStateRenderer @@ -372,51 +376,67 @@ ignore-updates:id=redstone_wire # Signpost - facing west [-1.13.2]patchblock:id=sign,data=0-1,patch0=SignFront@180,patch1=SignBack@180,patch2=SignTop@180,patch3=SignBottom@180,patch4=SignLeft@180,patch5=SignRight@180,patch6=PostFront@180,patch7=PostBack@180,patch8=PostLeft@180,patch9=PostRight@180 [1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=0-1,patch0=SignFront@180,patch1=SignBack@180,patch2=SignTop@180,patch3=SignBottom@180,patch4=SignLeft@180,patch5=SignRight@180,patch6=PostFront@180,patch7=PostBack@180,patch8=PostLeft@180,patch9=PostRight@180 +[1.19-]patchblock:id=mangrove_sign,data=0-1,patch0=SignFront@180,patch1=SignBack@180,patch2=SignTop@180,patch3=SignBottom@180,patch4=SignLeft@180,patch5=SignRight@180,patch6=PostFront@180,patch7=PostBack@180,patch8=PostLeft@180,patch9=PostRight@180 # Signpost - facing north [-1.13.2]patchblock:id=sign,data=8-9,patch0=SignFront@270,patch1=SignBack@270,patch2=SignTop@270,patch3=SignBottom@270,patch4=SignLeft@270,patch5=SignRight@270,patch6=PostFront@270,patch7=PostBack@270,patch8=PostLeft@270,patch9=PostRight@270 [1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=8-9,patch0=SignFront@270,patch1=SignBack@270,patch2=SignTop@270,patch3=SignBottom@270,patch4=SignLeft@270,patch5=SignRight@270,patch6=PostFront@270,patch7=PostBack@270,patch8=PostLeft@270,patch9=PostRight@270 +[1.19-]patchblock:id=mangrove_sign,data=8-9,patch0=SignFront@270,patch1=SignBack@270,patch2=SignTop@270,patch3=SignBottom@270,patch4=SignLeft@270,patch5=SignRight@270,patch6=PostFront@270,patch7=PostBack@270,patch8=PostLeft@270,patch9=PostRight@270 # Signpost - facing east [-1.13.2]patchblock:id=sign,data=16-17,patch0=SignFront,patch1=SignBack,patch2=SignTop,patch3=SignBottom,patch4=SignLeft,patch5=SignRight,patch6=PostFront,patch7=PostBack,patch8=PostLeft,patch9=PostRight [1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=16-17,patch0=SignFront,patch1=SignBack,patch2=SignTop,patch3=SignBottom,patch4=SignLeft,patch5=SignRight,patch6=PostFront,patch7=PostBack,patch8=PostLeft,patch9=PostRight +[1.19-]patchblock:id=mangrove_sign,data=16-17,patch0=SignFront,patch1=SignBack,patch2=SignTop,patch3=SignBottom,patch4=SignLeft,patch5=SignRight,patch6=PostFront,patch7=PostBack,patch8=PostLeft,patch9=PostRight # Signpost - facing south [-1.13.2]patchblock:id=sign,data=24-25,patch0=SignFront@90,patch1=SignBack@90,patch2=SignTop@90,patch3=SignBottom@90,patch4=SignLeft@90,patch5=SignRight@90,patch6=PostFront@90,patch7=PostBack@90,patch8=PostLeft@90,patch9=PostRight@90 [1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=24-25,patch0=SignFront@90,patch1=SignBack@90,patch2=SignTop@90,patch3=SignBottom@90,patch4=SignLeft@90,patch5=SignRight@90,patch6=PostFront@90,patch7=PostBack@90,patch8=PostLeft@90,patch9=PostRight@90 +[1.19-]patchblock:id=mangrove_sign,data=24-25,patch0=SignFront@90,patch1=SignBack@90,patch2=SignTop@90,patch3=SignBottom@90,patch4=SignLeft@90,patch5=SignRight@90,patch6=PostFront@90,patch7=PostBack@90,patch8=PostLeft@90,patch9=PostRight@90 # Signpost - facing northwest [-1.13.2]patchblock:id=sign,data=4-5,patch0=SignFront@225,patch1=SignBack@225,patch2=SignTop@225,patch3=SignBottom@225,patch4=SignLeft@225,patch5=SignRight@225,patch6=PostFront@225,patch7=PostBack@225,patch8=PostLeft@225,patch9=PostRight@225 [1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=4-5,patch0=SignFront@225,patch1=SignBack@225,patch2=SignTop@225,patch3=SignBottom@225,patch4=SignLeft@225,patch5=SignRight@225,patch6=PostFront@225,patch7=PostBack@225,patch8=PostLeft@225,patch9=PostRight@225 +[1.19-]patchblock:id=mangrove_sign,data=4-5,patch0=SignFront@225,patch1=SignBack@225,patch2=SignTop@225,patch3=SignBottom@225,patch4=SignLeft@225,patch5=SignRight@225,patch6=PostFront@225,patch7=PostBack@225,patch8=PostLeft@225,patch9=PostRight@225 # Signpost - facing northeast [-1.13.2]patchblock:id=sign,data=12-13,patch0=SignFront@315,patch1=SignBack@315,patch2=SignTop@315,patch3=SignBottom@315,patch4=SignLeft@315,patch5=SignRight@315,patch6=PostFront@315,patch7=PostBack@315,patch8=PostLeft@315,patch9=PostRight@315 [1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=12-13,patch0=SignFront@315,patch1=SignBack@315,patch2=SignTop@315,patch3=SignBottom@315,patch4=SignLeft@315,patch5=SignRight@315,patch6=PostFront@315,patch7=PostBack@315,patch8=PostLeft@315,patch9=PostRight@315 +[1.19-]patchblock:id=mangrove_sign,data=12-13,patch0=SignFront@315,patch1=SignBack@315,patch2=SignTop@315,patch3=SignBottom@315,patch4=SignLeft@315,patch5=SignRight@315,patch6=PostFront@315,patch7=PostBack@315,patch8=PostLeft@315,patch9=PostRight@315 # Signpost - facing southeast [-1.13.2]patchblock:id=sign,data=20-21,patch0=SignFront@45,patch1=SignBack@45,patch2=SignTop@45,patch3=SignBottom@45,patch4=SignLeft@45,patch5=SignRight@45,patch6=PostFront@45,patch7=PostBack@45,patch8=PostLeft@45,patch9=PostRight@45 [1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=20-21,patch0=SignFront@45,patch1=SignBack@45,patch2=SignTop@45,patch3=SignBottom@45,patch4=SignLeft@45,patch5=SignRight@45,patch6=PostFront@45,patch7=PostBack@45,patch8=PostLeft@45,patch9=PostRight@45 +[1.19-]patchblock:id=mangrove_sign,data=20-21,patch0=SignFront@45,patch1=SignBack@45,patch2=SignTop@45,patch3=SignBottom@45,patch4=SignLeft@45,patch5=SignRight@45,patch6=PostFront@45,patch7=PostBack@45,patch8=PostLeft@45,patch9=PostRight@45 # Signpost - facing southwest [-1.13.2]patchblock:id=sign,data=28-29,patch0=SignFront@135,patch1=SignBack@135,patch2=SignTop@135,patch3=SignBottom@135,patch4=SignLeft@135,patch5=SignRight@135,patch6=PostFront@135,patch7=PostBack@135,patch8=PostLeft@135,patch9=PostRight@135 [1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=28-29,patch0=SignFront@135,patch1=SignBack@135,patch2=SignTop@135,patch3=SignBottom@135,patch4=SignLeft@135,patch5=SignRight@135,patch6=PostFront@135,patch7=PostBack@135,patch8=PostLeft@135,patch9=PostRight@135 +[1.19-]patchblock:id=mangrove_sign,data=28-29,patch0=SignFront@135,patch1=SignBack@135,patch2=SignTop@135,patch3=SignBottom@135,patch4=SignLeft@135,patch5=SignRight@135,patch6=PostFront@135,patch7=PostBack@135,patch8=PostLeft@135,patch9=PostRight@135 # Signpost - facing west-northwest [-1.13.2]patchblock:id=sign,data=2-3,patch0=SignFront@203,patch1=SignBack@203,patch2=SignTop@203,patch3=SignBottom@203,patch4=SignLeft@203,patch5=SignRight@203,patch6=PostFront@203,patch7=PostBack@203,patch8=PostLeft@203,patch9=PostRight@203 [1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=2-3,patch0=SignFront@203,patch1=SignBack@203,patch2=SignTop@203,patch3=SignBottom@203,patch4=SignLeft@203,patch5=SignRight@203,patch6=PostFront@203,patch7=PostBack@203,patch8=PostLeft@203,patch9=PostRight@203 +[1.19-]patchblock:id=mangrove_sign,data=2-3,patch0=SignFront@203,patch1=SignBack@203,patch2=SignTop@203,patch3=SignBottom@203,patch4=SignLeft@203,patch5=SignRight@203,patch6=PostFront@203,patch7=PostBack@203,patch8=PostLeft@203,patch9=PostRight@203 # Signpost - facing north-northeast [-1.13.2]patchblock:id=sign,data=10-11,patch0=SignFront@293,patch1=SignBack@293,patch2=SignTop@293,patch3=SignBottom@293,patch4=SignLeft@293,patch5=SignRight@293,patch6=PostFront@293,patch7=PostBack@293,patch8=PostLeft@293,patch9=PostRight@293 [1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=10-11,patch0=SignFront@293,patch1=SignBack@293,patch2=SignTop@293,patch3=SignBottom@293,patch4=SignLeft@293,patch5=SignRight@293,patch6=PostFront@293,patch7=PostBack@293,patch8=PostLeft@293,patch9=PostRight@293 +[1.19-]patchblock:id=mangrove_sign,data=10-11,patch0=SignFront@293,patch1=SignBack@293,patch2=SignTop@293,patch3=SignBottom@293,patch4=SignLeft@293,patch5=SignRight@293,patch6=PostFront@293,patch7=PostBack@293,patch8=PostLeft@293,patch9=PostRight@293 # Signpost - facing north-northeast [-1.13.2]patchblock:id=sign,data=18-19,patch0=SignFront@23,patch1=SignBack@23,patch2=SignTop@23,patch3=SignBottom@23,patch4=SignLeft@23,patch5=SignRight@23,patch6=PostFront@23,patch7=PostBack@23,patch8=PostLeft@23,patch9=PostRight@23 [1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=18-19,patch0=SignFront@23,patch1=SignBack@23,patch2=SignTop@23,patch3=SignBottom@23,patch4=SignLeft@23,patch5=SignRight@23,patch6=PostFront@23,patch7=PostBack@23,patch8=PostLeft@23,patch9=PostRight@23 +[1.19-]patchblock:id=mangrove_sign,data=18-19,patch0=SignFront@23,patch1=SignBack@23,patch2=SignTop@23,patch3=SignBottom@23,patch4=SignLeft@23,patch5=SignRight@23,patch6=PostFront@23,patch7=PostBack@23,patch8=PostLeft@23,patch9=PostRight@23 # Signpost - facing north-northeast [-1.13.2]patchblock:id=sign,data=26-27,patch0=SignFront@113,patch1=SignBack@113,patch2=SignTop@113,patch3=SignBottom@113,patch4=SignLeft@113,patch5=SignRight@113,patch6=PostFront@113,patch7=PostBack@113,patch8=PostLeft@113,patch9=PostRight@113 [1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=26-27,patch0=SignFront@113,patch1=SignBack@113,patch2=SignTop@113,patch3=SignBottom@113,patch4=SignLeft@113,patch5=SignRight@113,patch6=PostFront@113,patch7=PostBack@113,patch8=PostLeft@113,patch9=PostRight@113 +[1.19-]patchblock:id=mangrove_sign,data=26-27,patch0=SignFront@113,patch1=SignBack@113,patch2=SignTop@113,patch3=SignBottom@113,patch4=SignLeft@113,patch5=SignRight@113,patch6=PostFront@113,patch7=PostBack@113,patch8=PostLeft@113,patch9=PostRight@113 # Signpost - facing west-southwest [-1.13.2]patchblock:id=sign,data=30-31,patch0=SignFront@157,patch1=SignBack@157,patch2=SignTop@157,patch3=SignBottom@157,patch4=SignLeft@157,patch5=SignRight@157,patch6=PostFront@157,patch7=PostBack@157,patch8=PostLeft@157,patch9=PostRight@157 [1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=30-31,patch0=SignFront@157,patch1=SignBack@157,patch2=SignTop@157,patch3=SignBottom@157,patch4=SignLeft@157,patch5=SignRight@157,patch6=PostFront@157,patch7=PostBack@157,patch8=PostLeft@157,patch9=PostRight@157 +[1.19-]patchblock:id=mangrove_sign,data=30-31,patch0=SignFront@157,patch1=SignBack@157,patch2=SignTop@157,patch3=SignBottom@157,patch4=SignLeft@157,patch5=SignRight@157,patch6=PostFront@157,patch7=PostBack@157,patch8=PostLeft@157,patch9=PostRight@157 # Signpost - facing north-northwest [-1.13.2]patchblock:id=sign,data=6-7,patch0=SignFront@247,patch1=SignBack@247,patch2=SignTop@247,patch3=SignBottom@247,patch4=SignLeft@247,patch5=SignRight@247,patch6=PostFront@247,patch7=PostBack@247,patch8=PostLeft@247,patch9=PostRight@247 [1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=6-7,patch0=SignFront@247,patch1=SignBack@247,patch2=SignTop@247,patch3=SignBottom@247,patch4=SignLeft@247,patch5=SignRight@247,patch6=PostFront@247,patch7=PostBack@247,patch8=PostLeft@247,patch9=PostRight@247 +[1.19-]patchblock:id=mangrove_sign,data=6-7,patch0=SignFront@247,patch1=SignBack@247,patch2=SignTop@247,patch3=SignBottom@247,patch4=SignLeft@247,patch5=SignRight@247,patch6=PostFront@247,patch7=PostBack@247,patch8=PostLeft@247,patch9=PostRight@247 # Signpost - facing east-northeast [-1.13.2]patchblock:id=sign,data=14-15,patch0=SignFront@337,patch1=SignBack@337,patch2=SignTop@337,patch3=SignBottom@337,patch4=SignLeft@337,patch5=SignRight@337,patch6=PostFront@337,patch7=PostBack@337,patch8=PostLeft@337,patch9=PostRight@337 [1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=14-15,patch0=SignFront@337,patch1=SignBack@337,patch2=SignTop@337,patch3=SignBottom@337,patch4=SignLeft@337,patch5=SignRight@337,patch6=PostFront@337,patch7=PostBack@337,patch8=PostLeft@337,patch9=PostRight@337 +[1.19-]patchblock:id=mangrove_sign,data=14-15,patch0=SignFront@337,patch1=SignBack@337,patch2=SignTop@337,patch3=SignBottom@337,patch4=SignLeft@337,patch5=SignRight@337,patch6=PostFront@337,patch7=PostBack@337,patch8=PostLeft@337,patch9=PostRight@337 # Signpost - facing south-southeast [-1.13.2]patchblock:id=sign,data=22-23,patch0=SignFront@67,patch1=SignBack@67,patch2=SignTop@67,patch3=SignBottom@67,patch4=SignLeft@67,patch5=SignRight@67,patch6=PostFront@67,patch7=PostBack@67,patch8=PostLeft@67,patch9=PostRight@67 [1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=22-23,patch0=SignFront@67,patch1=SignBack@67,patch2=SignTop@67,patch3=SignBottom@67,patch4=SignLeft@67,patch5=SignRight@67,patch6=PostFront@67,patch7=PostBack@67,patch8=PostLeft@67,patch9=PostRight@67 +[1.19-]patchblock:id=mangrove_sign,data=22-23,patch0=SignFront@67,patch1=SignBack@67,patch2=SignTop@67,patch3=SignBottom@67,patch4=SignLeft@67,patch5=SignRight@67,patch6=PostFront@67,patch7=PostBack@67,patch8=PostLeft@67,patch9=PostRight@67 # Fire modellist:id=fire,box=0/0/8.8/false:16/16/8.8/-22.5/0/0:s/0/0/0/16/16,box=0/0/7.2/false:16/16/7.2/22.5/0/0:n/0/0/0/16/16,box=8.8/0/0/false:8.8/16/16/0/0/-22/5:w/0/0/0/16/16,box=7.2/0/0/false:7.2/16/16/0/0/22.5:e/0/0/0/16/16,box=0/0/0.01/false:16/16/0.01:s/0/0/0/16/16:n/0/0/0/16/16,box=0/0/0.01/false:16/16/0.01/0/90/0:s/0/0/0/16/16:n/0/0/0/16/16,box=0/0/0.01/false:16/16/0.01/0/180/0:s/0/0/0/16/16:n/0/0/0/16/16,box=0/0/0.01/false:16/16/0.01/0/270/0:s/0/0/0/16/16:n/0/0/0/16/16 @@ -2243,3 +2263,468 @@ modellist:id=%dropper,state=facing:south,box=0.000000/0.000000/0.000000:16.00000 modellist:id=%dropper,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:d/2:w/1:e/1:n/0:u/2:s/1:R/0/270/0 modellist:id=%dropper,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:d/0:w/0:e/0:n/0:u/1:s/0:R/180/0/0 + +[1.19-]modellist:id=%mangrove_propagule,state=hanging:true/age:0,box=7.000000/13.611040/10.071930:9.000000/13.611040/12.071930/22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u180/0/8.000000/3.000000/10.000000/5.000000,box=10.071930/13.611040/7.000000:12.071930/13.611040/9.000000/0.000000/0.000000/-22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d90/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u90/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.611040/3.928070:9.000000/13.611040/5.928070/-22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d180/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000,box=3.928070/13.611040/7.000000:5.928070/13.611040/9.000000/0.000000/0.000000/22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d270/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u270/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/2.000000/2.000000/3.000000:d/0/0.000000/3.000000/2.000000/5.000000:w/0/0.000000/2.000000/2.000000/3.000000:e/0/0.000000/2.000000/2.000000/3.000000:s/0/0.000000/2.000000/2.000000/3.000000:u/0/0.000000/0.000000/2.000000/2.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000 +[1.19-]modellist:id=%mangrove_propagule,state=hanging:false/age:0,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/4.000000/1.000000/11.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000 +[1.19-]modellist:id=%mangrove_propagule,state=hanging:true/age:1,box=7.000000/10.000000/7.000000:9.000000/13.000000/9.000000:n/0/0.000000/7.000000/2.000000/10.000000:d/0/0.000000/5.000000/2.000000/7.000000:w/0/0.000000/7.000000/2.000000/10.000000:e/0/0.000000/7.000000/2.000000/10.000000:s/0/0.000000/7.000000/2.000000/10.000000:u/0/0.000000/5.000000/2.000000/7.000000,box=7.000000/13.611040/10.071930:9.000000/13.611040/12.071930/22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u180/0/8.000000/3.000000/10.000000/5.000000,box=10.071930/13.611040/7.000000:12.071930/13.611040/9.000000/0.000000/0.000000/-22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d90/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u90/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.611040/3.928070:9.000000/13.611040/5.928070/-22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d180/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000,box=3.928070/13.611040/7.000000:5.928070/13.611040/9.000000/0.000000/0.000000/22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d270/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u270/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/2.000000/2.000000/3.000000:d/0/0.000000/3.000000/2.000000/5.000000:w/0/0.000000/2.000000/2.000000/3.000000:e/0/0.000000/2.000000/2.000000/3.000000:s/0/0.000000/2.000000/2.000000/3.000000:u/0/0.000000/0.000000/2.000000/2.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000 +[1.19-]modellist:id=%mangrove_propagule,state=hanging:false/age:1,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/4.000000/1.000000/11.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000 +[1.19-]modellist:id=%mangrove_propagule,state=hanging:true/age:2,box=7.000000/10.000000/7.000000:9.000000/13.000000/9.000000:n/0/0.000000/7.000000/2.000000/10.000000:d/0/0.000000/10.000000/2.000000/12.000000:w/0/0.000000/7.000000/2.000000/10.000000:e/0/0.000000/7.000000/2.000000/10.000000:s/0/0.000000/7.000000/2.000000/10.000000:u/0/0.000000/5.000000/2.000000/7.000000,box=7.000000/13.611040/10.071930:9.000000/13.611040/12.071930/22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u180/0/8.000000/3.000000/10.000000/5.000000,box=10.071930/13.611040/7.000000:12.071930/13.611040/9.000000/0.000000/0.000000/-22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d90/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u90/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.611040/3.928070:9.000000/13.611040/5.928070/-22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d180/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000,box=3.928070/13.611040/7.000000:5.928070/13.611040/9.000000/0.000000/0.000000/22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d270/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u270/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/2.000000/2.000000/3.000000:d/0/0.000000/3.000000/2.000000/5.000000:w/0/0.000000/2.000000/2.000000/3.000000:e/0/0.000000/2.000000/2.000000/3.000000:s/0/0.000000/2.000000/2.000000/3.000000:u/0/0.000000/0.000000/2.000000/2.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000,box=7.000000/7.000000/8.000000:9.000000/10.000000/8.000000/0.000000/45.000000/0.000000/8.000000/16.000000/8.000000:n/0/3.000000/7.000000/5.000000/10.000000:d/0/11.000000/10.000000/13.000000/10.000000:w/0/11.000000/0.000000/11.000000/10.000000:e/0/13.000000/0.000000/13.000000/10.000000:s/0/3.000000/7.000000/5.000000/10.000000:u/0/11.000000/0.000000/13.000000/0.000000,box=7.000000/7.000000/8.000000:9.000000/10.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/16.000000/8.000000:n/0/3.000000/7.000000/5.000000/10.000000:d180/0/11.000000/10.000000/13.000000/10.000000:w/0/13.000000/0.000000/13.000000/10.000000:e/0/11.000000/0.000000/11.000000/10.000000:s/0/3.000000/7.000000/5.000000/10.000000:u180/0/11.000000/0.000000/13.000000/0.000000 +[1.19-]modellist:id=%mangrove_propagule,state=hanging:false/age:2,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/4.000000/1.000000/11.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000 +[1.19-]modellist:id=%mangrove_propagule,state=hanging:true/age:3,box=7.000000/10.000000/7.000000:9.000000/13.000000/9.000000:n/0/0.000000/7.000000/2.000000/10.000000:d/0/0.000000/10.000000/2.000000/12.000000:w/0/0.000000/7.000000/2.000000/10.000000:e/0/0.000000/7.000000/2.000000/10.000000:s/0/0.000000/7.000000/2.000000/10.000000:u/0/0.000000/5.000000/2.000000/7.000000,box=7.000000/13.611040/10.071930:9.000000/13.611040/12.071930/22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u180/0/8.000000/3.000000/10.000000/5.000000,box=10.071930/13.611040/7.000000:12.071930/13.611040/9.000000/0.000000/0.000000/-22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d90/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u90/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.611040/3.928070:9.000000/13.611040/5.928070/-22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d180/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000,box=3.928070/13.611040/7.000000:5.928070/13.611040/9.000000/0.000000/0.000000/22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d270/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u270/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/2.000000/2.000000/3.000000:d/0/0.000000/3.000000/2.000000/5.000000:w/0/0.000000/2.000000/2.000000/3.000000:e/0/0.000000/2.000000/2.000000/3.000000:s/0/0.000000/2.000000/2.000000/3.000000:u/0/0.000000/0.000000/2.000000/2.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000,box=7.000000/3.000000/8.000000:9.000000/10.000000/8.000000/0.000000/45.000000/0.000000/8.000000/16.000000/8.000000:n/0/3.000000/3.000000/5.000000/10.000000:d/0/11.000000/10.000000/13.000000/10.000000:w/0/11.000000/0.000000/11.000000/10.000000:e/0/13.000000/0.000000/13.000000/10.000000:s/0/3.000000/3.000000/5.000000/10.000000:u/0/11.000000/0.000000/13.000000/0.000000,box=7.000000/3.000000/8.000000:9.000000/10.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/16.000000/8.000000:n/0/3.000000/3.000000/5.000000/10.000000:d180/0/11.000000/10.000000/13.000000/10.000000:w/0/13.000000/0.000000/13.000000/10.000000:e/0/11.000000/0.000000/11.000000/10.000000:s/0/3.000000/3.000000/5.000000/10.000000:u180/0/11.000000/0.000000/13.000000/0.000000 +[1.19-]modellist:id=%mangrove_propagule,state=hanging:false/age:3,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/4.000000/1.000000/11.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000 +[1.19-]modellist:id=%mangrove_propagule,state=hanging:true/age:4,box=7.000000/10.000000/7.000000:9.000000/13.000000/9.000000:n/0/0.000000/7.000000/2.000000/10.000000:d/0/0.000000/10.000000/2.000000/12.000000:w/0/0.000000/7.000000/2.000000/10.000000:e/0/0.000000/7.000000/2.000000/10.000000:s/0/0.000000/7.000000/2.000000/10.000000:u/0/0.000000/5.000000/2.000000/7.000000,box=7.000000/13.611040/10.071930:9.000000/13.611040/12.071930/22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u180/0/8.000000/3.000000/10.000000/5.000000,box=10.071930/13.611040/7.000000:12.071930/13.611040/9.000000/0.000000/0.000000/-22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d90/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u90/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.611040/3.928070:9.000000/13.611040/5.928070/-22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d180/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000,box=3.928070/13.611040/7.000000:5.928070/13.611040/9.000000/0.000000/0.000000/22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d270/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u270/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/2.000000/2.000000/3.000000:d/0/0.000000/3.000000/2.000000/5.000000:w/0/0.000000/2.000000/2.000000/3.000000:e/0/0.000000/2.000000/2.000000/3.000000:s/0/0.000000/2.000000/2.000000/3.000000:u/0/0.000000/0.000000/2.000000/2.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000,box=7.000000/0.000000/8.000000:9.000000/10.000000/8.000000/0.000000/45.000000/0.000000/8.000000/16.000000/8.000000:n/0/3.000000/0.000000/5.000000/10.000000:d/0/11.000000/10.000000/13.000000/10.000000:w/0/11.000000/0.000000/11.000000/10.000000:e/0/13.000000/0.000000/13.000000/10.000000:s/0/3.000000/0.000000/5.000000/10.000000:u/0/11.000000/0.000000/13.000000/0.000000,box=7.000000/0.000000/8.000000:9.000000/10.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/16.000000/8.000000:n/0/3.000000/0.000000/5.000000/10.000000:d180/0/11.000000/10.000000/13.000000/10.000000:w/0/13.000000/0.000000/13.000000/10.000000:e/0/11.000000/0.000000/11.000000/10.000000:s/0/3.000000/0.000000/5.000000/10.000000:u180/0/11.000000/0.000000/13.000000/0.000000 +[1.19-]modellist:id=%mangrove_propagule,state=hanging:false/age:4,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/4.000000/1.000000/11.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000 +[1.19-]modellist:id=%mangrove_log,state=axis:x,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/90/0 +[1.19-]modellist:id=%mangrove_log,state=axis:z,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/0/0 +[1.19-]modellist:id=%mangrove_roots,box=0.000000/0.000000/8.000000:16.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/15.998000/0.000000:16.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:16.000000/0.002000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:u/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.002000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/15.998000:16.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:0.002000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=15.998000/0.000000/0.000000:16.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000 +[1.19-]modellist:id=%muddy_mangrove_roots,state=axis:x,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u/1:R/90/90/0 +[1.19-]modellist:id=%muddy_mangrove_roots,state=axis:z,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u/1:R/90/0/0 +[1.19-]modellist:id=%stripped_mangrove_log,state=axis:x,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/90/0 +[1.19-]modellist:id=%stripped_mangrove_log,state=axis:z,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/0/0 +[1.19-]modellist:id=%mangrove_wood,state=axis:x,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/0:w/0:e/0:s/0:u/0:R/90/90/0 +[1.19-]modellist:id=%mangrove_wood,state=axis:z,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/0:w/0:e/0:s/0:u/0:R/90/0/0 +[1.19-]modellist:id=%stripped_mangrove_wood,state=axis:x,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/0:w/0:e/0:s/0:u/0:R/90/90/0 +[1.19-]modellist:id=%stripped_mangrove_wood,state=axis:z,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/0:w/0:e/0:s/0:u/0:R/90/0/0 +[1.19-]modellist:id=%mangrove_pressure_plate,state=powered:true,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.19-]modellist:id=%mangrove_pressure_plate,state=powered:false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:n/0/1.000000/15.000000/15.000000/16.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/16.000000:e/0/1.000000/15.000000/15.000000/16.000000:s/0/1.000000/15.000000/15.000000/16.000000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.19-]modellist:id=%mangrove_trapdoor,state=facing:north/half:top/open:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e90/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/180/0 +[1.19-]modellist:id=%mangrove_trapdoor,state=facing:north/half:top/open:false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.19-]modellist:id=%mangrove_trapdoor,state=facing:north/half:bottom/open:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e90/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.19-]modellist:id=%mangrove_trapdoor,state=facing:north/half:bottom/open:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.19-]modellist:id=%mangrove_trapdoor,state=facing:south/half:top/open:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e90/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/0/0 +[1.19-]modellist:id=%mangrove_trapdoor,state=facing:south/half:top/open:false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_trapdoor,state=facing:south/half:bottom/open:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e90/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_trapdoor,state=facing:south/half:bottom/open:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_trapdoor,state=facing:west/half:top/open:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e90/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/90/0 +[1.19-]modellist:id=%mangrove_trapdoor,state=facing:west/half:top/open:false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_trapdoor,state=facing:west/half:bottom/open:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e90/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_trapdoor,state=facing:west/half:bottom/open:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_trapdoor,state=facing:east/half:top/open:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e90/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/270/0 +[1.19-]modellist:id=%mangrove_trapdoor,state=facing:east/half:top/open:false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_trapdoor,state=facing:east/half:bottom/open:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e90/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_trapdoor,state=facing:east/half:bottom/open:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.19-]modellist:id=%potted_mangrove_propagule,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/11.000000/1.000000/4.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/11.000000/1.000000/4.000000/7.000000,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/1/10.000000/10.000000/11.000000/16.000000:d/1/5.000000/5.000000/6.000000/11.000000:w/1/5.000000/10.000000/11.000000/16.000000:e/1/5.000000/10.000000/11.000000/16.000000:s/1/5.000000/10.000000/6.000000/16.000000:u/1/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/1/5.000000/10.000000/6.000000/16.000000:d/1/10.000000/5.000000/11.000000/11.000000:w/1/5.000000/10.000000/11.000000/16.000000:e/1/5.000000/10.000000/11.000000/16.000000:s/1/10.000000/10.000000/11.000000/16.000000:u/1/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/1/6.000000/10.000000/10.000000/16.000000:d/1/6.000000/10.000000/10.000000/11.000000:s/1/6.000000/10.000000/10.000000/16.000000:u/1/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/1/6.000000/10.000000/10.000000/16.000000:d/1/6.000000/5.000000/10.000000/6.000000:s/1/6.000000/10.000000/10.000000/16.000000:u/1/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/1/6.000000/12.000000/10.000000/16.000000:u/2/6.000000/6.000000/10.000000/10.000000 +[1.19-]modellist:id=%mangrove_button,state=facing:north/face:floor/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000 +[1.19-]modellist:id=%mangrove_button,state=facing:north/face:floor/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000 +[1.19-]modellist:id=%mangrove_button,state=facing:south/face:floor/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_button,state=facing:south/face:floor/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_button,state=facing:west/face:floor/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_button,state=facing:west/face:floor/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_button,state=facing:east/face:floor/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_button,state=facing:east/face:floor/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_button,state=facing:north/face:wall/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/90/0/0 +[1.19-]modellist:id=%mangrove_button,state=facing:north/face:wall/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/90/0/0 +[1.19-]modellist:id=%mangrove_button,state=facing:south/face:wall/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/90/180/0 +[1.19-]modellist:id=%mangrove_button,state=facing:south/face:wall/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/90/180/0 +[1.19-]modellist:id=%mangrove_button,state=facing:west/face:wall/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/90/270/0 +[1.19-]modellist:id=%mangrove_button,state=facing:west/face:wall/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/90/270/0 +[1.19-]modellist:id=%mangrove_button,state=facing:east/face:wall/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/90/90/0 +[1.19-]modellist:id=%mangrove_button,state=facing:east/face:wall/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/90/90/0 +[1.19-]modellist:id=%mangrove_button,state=facing:north/face:ceiling/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/180/180/0 +[1.19-]modellist:id=%mangrove_button,state=facing:north/face:ceiling/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/180/180/0 +[1.19-]modellist:id=%mangrove_button,state=facing:south/face:ceiling/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/180/0/0 +[1.19-]modellist:id=%mangrove_button,state=facing:south/face:ceiling/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/180/0/0 +[1.19-]modellist:id=%mangrove_button,state=facing:west/face:ceiling/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/180/90/0 +[1.19-]modellist:id=%mangrove_button,state=facing:west/face:ceiling/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/180/90/0 +[1.19-]modellist:id=%mangrove_button,state=facing:east/face:ceiling/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/180/270/0 +[1.19-]modellist:id=%mangrove_button,state=facing:east/face:ceiling/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/180/270/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.19-]modellist:id=%mangrove_slab,state=type:top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.19-]modellist:id=%mangrove_slab,state=type:bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.19-]modellist:id=%mangrove_fence_gate,state=facing:north/in_wall:true/open:true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_fence_gate,state=facing:north/in_wall:true/open:false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_fence_gate,state=facing:north/in_wall:false/open:true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_fence_gate,state=facing:north/in_wall:false/open:false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_fence_gate,state=facing:south/in_wall:true/open:true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.19-]modellist:id=%mangrove_fence_gate,state=facing:south/in_wall:true/open:false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.19-]modellist:id=%mangrove_fence_gate,state=facing:south/in_wall:false/open:true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.19-]modellist:id=%mangrove_fence_gate,state=facing:south/in_wall:false/open:false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.19-]modellist:id=%mangrove_fence_gate,state=facing:west/in_wall:true/open:true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_fence_gate,state=facing:west/in_wall:true/open:false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_fence_gate,state=facing:west/in_wall:false/open:true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_fence_gate,state=facing:west/in_wall:false/open:false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_fence_gate,state=facing:east/in_wall:true/open:true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_fence_gate,state=facing:east/in_wall:true/open:false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_fence_gate,state=facing:east/in_wall:false/open:true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_fence_gate,state=facing:east/in_wall:false/open:false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_fence,state=west:true/east:true/south:true/north:true,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_fence,state=west:false/east:true/south:true/north:true,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_fence,state=west:true/east:true/south:false/north:true,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_fence,state=west:false/east:true/south:false/north:true,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_fence,state=west:true/east:true/south:true/north:false,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_fence,state=west:false/east:true/south:true/north:false,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_fence,state=west:true/east:true/south:false/north:false,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_fence,state=west:false/east:true/south:false/north:false,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_fence,state=west:true/east:false/south:true/north:true,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_fence,state=west:false/east:false/south:true/north:true,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_fence,state=west:true/east:false/south:false/north:true,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_fence,state=west:false/east:false/south:false/north:true,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000 +[1.19-]modellist:id=%mangrove_fence,state=west:true/east:false/south:true/north:false,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_fence,state=west:false/east:false/south:true/north:false,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_fence,state=west:true/east:false/south:false/north:false,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_fence,state=west:false/east:false/south:false/north:false,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000 +[1.19-]modellist:id=%mangrove_door,state=facing:north/hinge:left/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u270/0/0.000000/3.000000/16.000000/0.000000 +[1.19-]modellist:id=%mangrove_door,state=facing:north/hinge:left/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u90/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_door,state=facing:north/hinge:right/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_door,state=facing:north/hinge:right/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u270/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_door,state=facing:north/hinge:left/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d90/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.19-]modellist:id=%mangrove_door,state=facing:north/hinge:left/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_door,state=facing:north/hinge:right/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_door,state=facing:north/hinge:right/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_door,state=facing:south/hinge:left/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u270/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_door,state=facing:south/hinge:left/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u90/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_door,state=facing:south/hinge:right/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u90/0/0.000000/0.000000/16.000000/3.000000 +[1.19-]modellist:id=%mangrove_door,state=facing:south/hinge:right/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u270/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_door,state=facing:south/hinge:left/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d90/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_door,state=facing:south/hinge:left/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_door,state=facing:south/hinge:right/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.19-]modellist:id=%mangrove_door,state=facing:south/hinge:right/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_door,state=facing:west/hinge:left/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u270/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_door,state=facing:west/hinge:left/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u90/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_door,state=facing:west/hinge:right/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_door,state=facing:west/hinge:right/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u270/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_door,state=facing:west/hinge:left/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d90/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_door,state=facing:west/hinge:left/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_door,state=facing:west/hinge:right/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_door,state=facing:west/hinge:right/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.19-]modellist:id=%mangrove_door,state=facing:east/hinge:left/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u270/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_door,state=facing:east/hinge:left/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u90/0/0.000000/3.000000/16.000000/0.000000 +[1.19-]modellist:id=%mangrove_door,state=facing:east/hinge:right/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_door,state=facing:east/hinge:right/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u270/0/0.000000/0.000000/16.000000/3.000000 +[1.19-]modellist:id=%mangrove_door,state=facing:east/hinge:left/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d90/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.19-]modellist:id=%mangrove_door,state=facing:east/hinge:left/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.19-]modellist:id=%mangrove_door,state=facing:east/hinge:right/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%mangrove_door,state=facing:east/hinge:right/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.19-]modellist:id=%stripped_mangrove_wood,state=axis:x,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/0:w/0:e/0:s/0:u/0:R/90/90/0 +[1.19-]modellist:id=%stripped_mangrove_wood,state=axis:z,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/0:w/0:e/0:s/0:u/0:R/90/0/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.19-]modellist:id=%mud_brick_slab,state=type:top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.19-]modellist:id=%mud_brick_slab,state=type:bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:true/south:none/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:true/south:none/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:none/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:false/south:none/north:none +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:false/south:none/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:none/north:none,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:true/south:low/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:true/south:low/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:low/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:false/south:low/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:false/south:low/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:low/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:true/south:tall/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:true/south:tall/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:tall/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:false/south:tall/north:none,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:false/south:tall/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:tall/north:none,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:true/south:none/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:true/south:none/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:none/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:false/south:none/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:false/south:none/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:none/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:true/south:low/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:true/south:low/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:low/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:false/south:low/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:false/south:low/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:low/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:true/south:tall/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:true/south:tall/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:tall/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:false/south:tall/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:false/south:tall/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:tall/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:true/south:none/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:true/south:none/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:none/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:false/south:none/north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:false/south:none/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:none/north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:true/south:low/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:true/south:low/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:low/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:false/south:low/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:false/south:low/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:low/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:true/south:tall/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:true/south:tall/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:tall/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:false/south:tall/north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:false/south:tall/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:tall/north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:true/south:none/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:true/south:none/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:none/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:false/south:none/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:false/south:none/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:none/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:true/south:low/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:true/south:low/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:low/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:false/south:low/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:false/south:low/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:low/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:true/south:tall/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:true/south:tall/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:tall/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:false/south:tall/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:false/south:tall/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:tall/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:true/south:none/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:true/south:none/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:none/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:false/south:none/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:false/south:none/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:none/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:true/south:low/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:true/south:low/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:low/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:false/south:low/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:false/south:low/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:low/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:true/south:tall/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:true/south:tall/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:tall/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:false/south:tall/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:false/south:tall/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:tall/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:true/south:none/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:true/south:none/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:none/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:false/south:none/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:false/south:none/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:none/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:true/south:low/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:true/south:low/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:low/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:false/south:low/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:false/south:low/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:low/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:true/south:tall/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:true/south:tall/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:tall/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:false/south:tall/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:false/south:tall/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:tall/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:none/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:none/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:none/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:none/north:none,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:none/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:none/north:none,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:low/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:low/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:low/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:low/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:low/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:low/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:tall/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:tall/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:tall/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:tall/north:none,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:tall/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:tall/north:none,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:none/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:none/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:none/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:none/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:none/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:none/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:low/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:low/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:low/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:low/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:low/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:low/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:tall/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:tall/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:tall/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:tall/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:tall/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:tall/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:none/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:none/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:none/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:none/north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:none/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:none/north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:low/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:low/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:low/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:low/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:low/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:low/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:tall/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:tall/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:tall/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:tall/north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:tall/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0 +[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:tall/north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:true/west:true/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:true/west:false/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:true/west:true/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:true/west:false/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:true/west:true/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:true/west:false/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:true/west:true/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:true/west:false/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:false/west:true/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:false/west:false/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:false/west:true/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:false/west:false/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:false/west:true/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:false/west:false/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:false/west:true/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:false/west:false/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:true/west:true/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:true/west:false/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:true/west:true/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:true/west:false/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:true/west:true/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:true/west:false/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:true/west:true/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:true/west:false/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:false/west:true/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:false/west:false/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:false/west:true/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:false/west:false/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:false/west:true/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:false/west:false/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:false/west:true/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:false/west:false/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:true/west:true/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:true/west:false/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:true/west:true/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:true/west:false/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:true/west:true/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:true/west:false/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:true/west:true/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:true/west:false/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:false/west:true/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:false/west:false/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:false/west:true/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:false/west:false/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:false/west:true/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:false/west:false/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:false/west:true/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:false/west:false/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:true/west:true/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:true/west:false/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:true/west:true/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:true/west:false/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:true/west:true/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:true/west:false/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:true/west:true/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:true/west:false/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:false/west:true/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:false/west:false/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:false/west:true/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:false/west:false/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:false/west:true/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:false/west:false/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:false/west:true/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:false/west:false/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%sculk_shrieker,state=can_summon:true,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=1.000000/8.000000/1.000000:15.000000/15.000000/15.000000:n/0/1.000000/1.000000/15.000000/8.000000:w/0/1.000000/1.000000/15.000000/8.000000:e/0/1.000000/1.000000/15.000000/8.000000:s/0/1.000000/1.000000/15.000000/8.000000:u/3/1.000000/1.000000/15.000000/15.000000,box=1.000000/14.980000/1.000000:15.000000/14.980000/15.000000:d/3/1.000000/1.000000/15.000000/15.000000,box=1.000000/8.000000/14.980000:15.000000/15.000000/14.980000:n/0/1.000000/1.000000/15.000000/8.000000,box=1.000000/8.000000/1.020000:15.000000/15.000000/1.020000:s/0/1.000000/1.000000/15.000000/8.000000,box=14.980000/8.000000/1.000000:14.980000/15.000000/15.000000:w/0/1.000000/1.000000/15.000000/8.000000,box=1.020000/8.000000/1.000000:1.020000/15.000000/15.000000:e/0/1.000000/1.000000/15.000000/8.000000 +[1.19-]modellist:id=%sculk_shrieker,state=can_summon:false,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=1.000000/8.000000/1.000000:15.000000/15.000000/15.000000:n/0/1.000000/1.000000/15.000000/8.000000:w/0/1.000000/1.000000/15.000000/8.000000:e/0/1.000000/1.000000/15.000000/8.000000:s/0/1.000000/1.000000/15.000000/8.000000:u/3/1.000000/1.000000/15.000000/15.000000,box=1.000000/14.980000/1.000000:15.000000/14.980000/15.000000:d/3/1.000000/1.000000/15.000000/15.000000,box=1.000000/8.000000/14.980000:15.000000/15.000000/14.980000:n/0/1.000000/1.000000/15.000000/8.000000,box=1.000000/8.000000/1.020000:15.000000/15.000000/1.020000:s/0/1.000000/1.000000/15.000000/8.000000,box=14.980000/8.000000/1.000000:14.980000/15.000000/15.000000:w/0/1.000000/1.000000/15.000000/8.000000,box=1.020000/8.000000/1.000000:1.020000/15.000000/15.000000:e/0/1.000000/1.000000/15.000000/8.000000 +[1.19-]modellist:id=%ochre_froglight,state=axis:x,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/90/0 +[1.19-]modellist:id=%ochre_froglight,state=axis:z,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/0/0 +[1.19-]modellist:id=%verdant_froglight,state=axis:x,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/90/0 +[1.19-]modellist:id=%verdant_froglight,state=axis:z,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/0/0 +[1.19-]modellist:id=%pearlescent_froglight,state=axis:x,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/90/0 +[1.19-]modellist:id=%pearlescent_froglight,state=axis:z,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/0/0 +[1.19-]modellist:id=%frogspawn,box=0.000000/0.250000/0.000000:16.000000/0.250000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.19-]modellist:id=%potted_mangrove_propagule,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/11.000000/1.000000/4.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/11.000000/1.000000/4.000000/7.000000,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/1/10.000000/10.000000/11.000000/16.000000:d/1/5.000000/5.000000/6.000000/11.000000:w/1/5.000000/10.000000/11.000000/16.000000:e/1/5.000000/10.000000/11.000000/16.000000:s/1/5.000000/10.000000/6.000000/16.000000:u/1/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/1/5.000000/10.000000/6.000000/16.000000:d/1/10.000000/5.000000/11.000000/11.000000:w/1/5.000000/10.000000/11.000000/16.000000:e/1/5.000000/10.000000/11.000000/16.000000:s/1/10.000000/10.000000/11.000000/16.000000:u/1/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/1/6.000000/10.000000/10.000000/16.000000:d/1/6.000000/10.000000/10.000000/11.000000:s/1/6.000000/10.000000/10.000000/16.000000:u/1/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/1/6.000000/10.000000/10.000000/16.000000:d/1/6.000000/5.000000/10.000000/6.000000:s/1/6.000000/10.000000/10.000000/16.000000:u/1/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/1/6.000000/12.000000/10.000000/16.000000:u/2/6.000000/6.000000/10.000000/10.000000 +[1.19-]modellist:id=%potted_azalea_bush,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/1/6.000000/6.000000/10.000000/10.000000,box=4.000000/15.900000/4.000000:12.000000/16.000000/12.000000:d/2/4.000000/12.000000/12.000000/4.000000:u/2/4.000000/4.000000/12.000000/12.000000,box=4.000000/8.000000/4.000000:12.000000/16.000000/4.000000:n/3/4.000000/5.000000/12.000000/13.000000:s/3/12.000000/5.000000/4.000000/13.000000,box=4.000000/8.000000/12.000000:12.000000/16.000000/12.000000:n/3/12.000000/5.000000/4.000000/13.000000:s/3/4.000000/5.000000/12.000000/13.000000,box=4.000000/8.000000/4.000000:4.000000/16.000000/12.000000:w/3/4.000000/5.000000/12.000000/13.000000:e/3/12.000000/5.000000/4.000000/13.000000,box=12.000000/8.000000/4.000000:12.000000/16.000000/12.000000:w/3/12.000000/5.000000/4.000000/13.000000:e/3/4.000000/5.000000/12.000000/13.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:n/4/0.000000/4.000000/16.000000/16.000000:s/4/0.000000/4.000000/16.000000/16.000000,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/4/0.000000/4.000000/16.000000/16.000000:e/4/0.000000/4.000000/16.000000/16.000000 +[1.19-]modellist:id=%potted_flowering_azalea_bush,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/1/6.000000/6.000000/10.000000/10.000000,box=4.000000/15.900000/4.000000:12.000000/16.000000/12.000000:d/2/4.000000/12.000000/12.000000/4.000000:u/2/4.000000/4.000000/12.000000/12.000000,box=4.000000/8.000000/4.000000:12.000000/16.000000/4.000000:n/3/4.000000/5.000000/12.000000/13.000000:s/3/12.000000/5.000000/4.000000/13.000000,box=4.000000/8.000000/12.000000:12.000000/16.000000/12.000000:n/3/12.000000/5.000000/4.000000/13.000000:s/3/4.000000/5.000000/12.000000/13.000000,box=4.000000/8.000000/4.000000:4.000000/16.000000/12.000000:w/3/4.000000/5.000000/12.000000/13.000000:e/3/12.000000/5.000000/4.000000/13.000000,box=12.000000/8.000000/4.000000:12.000000/16.000000/12.000000:w/3/12.000000/5.000000/4.000000/13.000000:e/3/4.000000/5.000000/12.000000/13.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:n/4/0.000000/4.000000/16.000000/16.000000:s/4/0.000000/4.000000/16.000000/16.000000,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/4/0.000000/4.000000/16.000000/16.000000:e/4/0.000000/4.000000/16.000000/16.000000 +[1.19-]modellist:id=%lightning_rod,state=powered:true/facing:north,box=6.000000/12.000000/6.000000/false:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000/false:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/16.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%lightning_rod,state=powered:false/facing:north,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0 +[1.19-]modellist:id=%lightning_rod,state=powered:true/facing:east,box=6.000000/12.000000/6.000000/false:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000/false:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/16.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0 +[1.19-]modellist:id=%lightning_rod,state=powered:false/facing:east,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0 +[1.19-]modellist:id=%lightning_rod,state=powered:true/facing:south,box=6.000000/12.000000/6.000000/false:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000/false:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/16.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0 +[1.19-]modellist:id=%lightning_rod,state=powered:false/facing:south,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0 +[1.19-]modellist:id=%lightning_rod,state=powered:true/facing:west,box=6.000000/12.000000/6.000000/false:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000/false:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/16.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0 +[1.19-]modellist:id=%lightning_rod,state=powered:false/facing:west,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0 +[1.19-]modellist:id=%lightning_rod,state=powered:true/facing:up,box=6.000000/12.000000/6.000000/false:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000/false:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/16.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000 +[1.19-]modellist:id=%lightning_rod,state=powered:false/facing:up,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000 +[1.19-]modellist:id=%lightning_rod,state=powered:true/facing:down,box=6.000000/12.000000/6.000000/false:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000/false:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/16.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0 +[1.19-]modellist:id=%lightning_rod,state=powered:false/facing:down,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0 diff --git a/DynmapCore/src/main/resources/texture_1.txt b/DynmapCore/src/main/resources/texture_1.txt index a437348b..42cde168 100644 --- a/DynmapCore/src/main/resources/texture_1.txt +++ b/DynmapCore/src/main/resources/texture_1.txt @@ -3201,3 +3201,535 @@ block:id=%attached_melon_stem,patch0=0:melon_stem,patch1=0:attached_melon_stem,b block:id=%pumpkin_stem,patch0=0:pumpkin_stem,blockcolor=foliagebiome,transparency=TRANSPARENT,stdrot=true # Melon stem block:id=%melon_stem,patch0=0:melon_stem,blockcolor=foliagebiome,transparency=TRANSPARENT,stdrot=true + +[1.19-]texture:id=mangrove_planks,filename=assets/minecraft/textures/block/mangrove_planks.png,xcount=1,ycount=1 +[1.19-]texture:id=mangrove_propagule_hanging,filename=assets/minecraft/textures/block/mangrove_propagule_hanging.png,xcount=1,ycount=1 +[1.19-]texture:id=mangrove_propagule,filename=assets/minecraft/textures/block/mangrove_propagule.png,xcount=1,ycount=1 +[1.19-]texture:id=mangrove_log,filename=assets/minecraft/textures/block/mangrove_log.png,xcount=1,ycount=1 +[1.19-]texture:id=mangrove_log_top,filename=assets/minecraft/textures/block/mangrove_log_top.png,xcount=1,ycount=1 +[1.19-]texture:id=mangrove_roots_side,filename=assets/minecraft/textures/block/mangrove_roots_side.png,xcount=1,ycount=1 +[1.19-]texture:id=mangrove_roots_top,filename=assets/minecraft/textures/block/mangrove_roots_top.png,xcount=1,ycount=1 +[1.19-]texture:id=mangrove_door_top,filename=assets/minecraft/textures/block/mangrove_door_top.png,xcount=1,ycount=1 +[1.19-]texture:id=mangrove_door_bottom,filename=assets/minecraft/textures/block/mangrove_door_bottom.png,xcount=1,ycount=1 +[1.19-]texture:id=muddy_mangrove_roots_side,filename=assets/minecraft/textures/block/muddy_mangrove_roots_side.png,xcount=1,ycount=1 +[1.19-]texture:id=muddy_mangrove_roots_top,filename=assets/minecraft/textures/block/muddy_mangrove_roots_top.png,xcount=1,ycount=1 +[1.19-]texture:id=stripped_mangrove_log,filename=assets/minecraft/textures/block/stripped_mangrove_log.png,xcount=1,ycount=1 +[1.19-]texture:id=stripped_mangrove_log_top,filename=assets/minecraft/textures/block/stripped_mangrove_log_top.png,xcount=1,ycount=1 +[1.19-]texture:id=mangrove_leaves,filename=assets/minecraft/textures/block/mangrove_leaves.png,xcount=1,ycount=1 +[1.19-]texture:id=mangrove_trapdoor,filename=assets/minecraft/textures/block/mangrove_trapdoor.png,xcount=1,ycount=1 +[1.19-]texture:id=foliage,filename=assets/minecraft/textures/colormap/foliage.png,xcount=1,ycount=1,format=BIOME +[1.19-]texturefile:id=mangrove_sign,filename=assets/minecraft/textures/entity/signs/mangrove.png,format=SIGN +[1.19-]texture:id=packed_mud,filename=assets/minecraft/textures/block/packed_mud.png,xcount=1,ycount=1 +[1.19-]texture:id=mud_bricks,filename=assets/minecraft/textures/block/mud_bricks.png,xcount=1,ycount=1 +[1.19-]texture:id=mud,filename=assets/minecraft/textures/block/mud.png,xcount=1,ycount=1 +[1.19-]texture:id=sculk,filename=assets/minecraft/textures/block/sculk.png,xcount=1,ycount=1 +[1.19-]texture:id=sculk_vein,filename=assets/minecraft/textures/block/sculk_vein.png,xcount=1,ycount=1 +[1.19-]texture:id=sculk_catalyst_side_bloom,filename=assets/minecraft/textures/block/sculk_catalyst_side_bloom.png,xcount=1,ycount=1 +[1.19-]texture:id=sculk_catalyst_top_bloom,filename=assets/minecraft/textures/block/sculk_catalyst_top_bloom.png,xcount=1,ycount=1 +[1.19-]texture:id=sculk_catalyst_bottom,filename=assets/minecraft/textures/block/sculk_catalyst_bottom.png,xcount=1,ycount=1 +[1.19-]texture:id=sculk_catalyst_side,filename=assets/minecraft/textures/block/sculk_catalyst_side.png,xcount=1,ycount=1 +[1.19-]texture:id=sculk_catalyst_top,filename=assets/minecraft/textures/block/sculk_catalyst_top.png,xcount=1,ycount=1 +[1.19-]texture:id=sculk_shrieker_side,filename=assets/minecraft/textures/block/sculk_shrieker_side.png,xcount=1,ycount=1 +[1.19-]texture:id=sculk_shrieker_can_summon_inner_top,filename=assets/minecraft/textures/block/sculk_shrieker_can_summon_inner_top.png,xcount=1,ycount=1 +[1.19-]texture:id=sculk_shrieker_bottom,filename=assets/minecraft/textures/block/sculk_shrieker_bottom.png,xcount=1,ycount=1 +[1.19-]texture:id=sculk_shrieker_top,filename=assets/minecraft/textures/block/sculk_shrieker_top.png,xcount=1,ycount=1 +[1.19-]texture:id=sculk_shrieker_inner_top,filename=assets/minecraft/textures/block/sculk_shrieker_inner_top.png,xcount=1,ycount=1 +[1.19-]texture:id=ochre_froglight_side,filename=assets/minecraft/textures/block/ochre_froglight_side.png,xcount=1,ycount=1 +[1.19-]texture:id=ochre_froglight_top,filename=assets/minecraft/textures/block/ochre_froglight_top.png,xcount=1,ycount=1 +[1.19-]texture:id=verdant_froglight_side,filename=assets/minecraft/textures/block/verdant_froglight_side.png,xcount=1,ycount=1 +[1.19-]texture:id=verdant_froglight_top,filename=assets/minecraft/textures/block/verdant_froglight_top.png,xcount=1,ycount=1 +[1.19-]texture:id=pearlescent_froglight_side,filename=assets/minecraft/textures/block/pearlescent_froglight_side.png,xcount=1,ycount=1 +[1.19-]texture:id=pearlescent_froglight_top,filename=assets/minecraft/textures/block/pearlescent_froglight_top.png,xcount=1,ycount=1 +[1.19-]texture:id=frogspawn,filename=assets/minecraft/textures/block/frogspawn.png,xcount=1,ycount=1 +[1.19-]texture:id=reinforced_deepslate_side,filename=assets/minecraft/textures/block/reinforced_deepslate_side.png,xcount=1,ycount=1 +[1.19-]texture:id=reinforced_deepslate_top,filename=assets/minecraft/textures/block/reinforced_deepslate_top.png,xcount=1,ycount=1 +[1.19-]texture:id=reinforced_deepslate_bottom,filename=assets/minecraft/textures/block/reinforced_deepslate_bottom.png,xcount=1,ycount=1 +[1.19-]texture:id=lightning_rod_on,filename=assets/minecraft/textures/block/lightning_rod_on.png,xcount=1,ycount=1 +[1.19-]texture:id=lightning_rod,filename=assets/minecraft/textures/block/lightning_rod.png,xcount=1,ycount=1 +[1.19-]texture:id=potted_azalea_bush_top,filename=assets/minecraft/textures/block/potted_azalea_bush_top.png,xcount=1,ycount=1 +[1.19-]texture:id=potted_azalea_bush_side,filename=assets/minecraft/textures/block/potted_azalea_bush_side.png,xcount=1,ycount=1 +[1.19-]texture:id=potted_azalea_bush_plant,filename=assets/minecraft/textures/block/potted_azalea_bush_plant.png,xcount=1,ycount=1 +[1.19-]texture:id=potted_flowering_azalea_bush_top,filename=assets/minecraft/textures/block/potted_flowering_azalea_bush_top.png,xcount=1,ycount=1 +[1.19-]texture:id=potted_flowering_azalea_bush_side,filename=assets/minecraft/textures/block/potted_flowering_azalea_bush_side.png,xcount=1,ycount=1 +[1.19-]block:id=%stripped_mangrove_wood,state=axis:x,patch0=0:stripped_mangrove_log,stdrot=true +[1.19-]block:id=%stripped_mangrove_wood,state=axis:y,patch0=0:stripped_mangrove_log,patch1=0:stripped_mangrove_log,patch2=0:stripped_mangrove_log,patch3=0:stripped_mangrove_log,patch4=0:stripped_mangrove_log,patch5=0:stripped_mangrove_log,stdrot=true +[1.19-]block:id=%stripped_mangrove_wood,state=axis:z,patch0=0:stripped_mangrove_log,stdrot=true +[1.19-]block:id=%mangrove_planks,patch0=0:mangrove_planks,patch1=0:mangrove_planks,patch2=0:mangrove_planks,patch3=0:mangrove_planks,patch4=0:mangrove_planks,patch5=0:mangrove_planks,stdrot=true +[1.19-]block:id=%mangrove_propagule,state=hanging:true/age:0,patch0=0:mangrove_propagule_hanging,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_propagule,state=hanging:false/age:0,patch0=0:mangrove_propagule,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_propagule,state=hanging:true/age:1,patch0=0:mangrove_propagule_hanging,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_propagule,state=hanging:false/age:1,patch0=0:mangrove_propagule,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_propagule,state=hanging:true/age:2,patch0=0:mangrove_propagule_hanging,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_propagule,state=hanging:false/age:2,patch0=0:mangrove_propagule,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_propagule,state=hanging:true/age:3,patch0=0:mangrove_propagule_hanging,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_propagule,state=hanging:false/age:3,patch0=0:mangrove_propagule,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_propagule,state=hanging:true/age:4,patch0=0:mangrove_propagule_hanging,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_propagule,state=hanging:false/age:4,patch0=0:mangrove_propagule,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_log,state=axis:x,patch0=0:mangrove_log,patch1=0:mangrove_log_top,stdrot=true +[1.19-]block:id=%mangrove_log,state=axis:y,patch0=0:mangrove_log,patch1=0:mangrove_log_top,patch2=0:mangrove_log,patch3=0:mangrove_log,patch4=0:mangrove_log_top,patch5=0:mangrove_log,stdrot=true +[1.19-]block:id=%mangrove_log,state=axis:z,patch0=0:mangrove_log,patch1=0:mangrove_log_top,stdrot=true +[1.19-]block:id=%mangrove_roots,patch0=0:mangrove_roots_side,patch1=0:mangrove_roots_top,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%muddy_mangrove_roots,state=axis:x,patch0=0:muddy_mangrove_roots_side,patch1=0:muddy_mangrove_roots_top,stdrot=true +[1.19-]block:id=%muddy_mangrove_roots,state=axis:y,patch0=0:muddy_mangrove_roots_side,patch1=0:muddy_mangrove_roots_top,patch2=0:muddy_mangrove_roots_side,patch3=0:muddy_mangrove_roots_side,patch4=0:muddy_mangrove_roots_top,patch5=0:muddy_mangrove_roots_side,stdrot=true +[1.19-]block:id=%muddy_mangrove_roots,state=axis:z,patch0=0:muddy_mangrove_roots_side,patch1=0:muddy_mangrove_roots_top,stdrot=true +[1.19-]block:id=%stripped_mangrove_log,state=axis:x,patch0=0:stripped_mangrove_log,patch1=0:stripped_mangrove_log_top,stdrot=true +[1.19-]block:id=%stripped_mangrove_log,state=axis:y,patch0=0:stripped_mangrove_log,patch1=0:stripped_mangrove_log_top,patch2=0:stripped_mangrove_log,patch3=0:stripped_mangrove_log,patch4=0:stripped_mangrove_log_top,patch5=0:stripped_mangrove_log,stdrot=true +[1.19-]block:id=%stripped_mangrove_log,state=axis:z,patch0=0:stripped_mangrove_log,patch1=0:stripped_mangrove_log_top,stdrot=true +[1.19-]block:id=%mangrove_wood,state=axis:x,patch0=0:mangrove_log,stdrot=true +[1.19-]block:id=%mangrove_wood,state=axis:y,patch0=0:mangrove_log,patch1=0:mangrove_log,patch2=0:mangrove_log,patch3=0:mangrove_log,patch4=0:mangrove_log,patch5=0:mangrove_log,stdrot=true +[1.19-]block:id=%mangrove_wood,state=axis:z,patch0=0:mangrove_log,stdrot=true +[1.19-]block:id=%mangrove_leaves,patch0=0:mangrove_leaves,patch1=0:mangrove_leaves,patch2=0:mangrove_leaves,patch3=0:mangrove_leaves,patch4=0:mangrove_leaves,patch5=0:mangrove_leaves,blockcolor=foliage,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_pressure_plate,state=powered:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_pressure_plate,state=powered:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_trapdoor,state=facing:north/half:top/open:true,patch0=0:mangrove_trapdoor,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_trapdoor,state=facing:north/half:top/open:false,patch0=0:mangrove_trapdoor,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_trapdoor,state=facing:north/half:bottom/open:true,patch0=0:mangrove_trapdoor,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_trapdoor,state=facing:north/half:bottom/open:false,patch0=0:mangrove_trapdoor,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_trapdoor,state=facing:south/half:top/open:true,patch0=0:mangrove_trapdoor,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_trapdoor,state=facing:south/half:top/open:false,patch0=0:mangrove_trapdoor,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_trapdoor,state=facing:south/half:bottom/open:true,patch0=0:mangrove_trapdoor,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_trapdoor,state=facing:south/half:bottom/open:false,patch0=0:mangrove_trapdoor,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_trapdoor,state=facing:west/half:top/open:true,patch0=0:mangrove_trapdoor,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_trapdoor,state=facing:west/half:top/open:false,patch0=0:mangrove_trapdoor,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_trapdoor,state=facing:west/half:bottom/open:true,patch0=0:mangrove_trapdoor,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_trapdoor,state=facing:west/half:bottom/open:false,patch0=0:mangrove_trapdoor,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_trapdoor,state=facing:east/half:top/open:true,patch0=0:mangrove_trapdoor,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_trapdoor,state=facing:east/half:top/open:false,patch0=0:mangrove_trapdoor,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_trapdoor,state=facing:east/half:bottom/open:true,patch0=0:mangrove_trapdoor,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_trapdoor,state=facing:east/half:bottom/open:false,patch0=0:mangrove_trapdoor,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:north/face:floor/powered:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:north/face:floor/powered:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:south/face:floor/powered:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:south/face:floor/powered:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:west/face:floor/powered:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:west/face:floor/powered:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:east/face:floor/powered:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:east/face:floor/powered:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:north/face:wall/powered:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:north/face:wall/powered:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:south/face:wall/powered:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:south/face:wall/powered:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:west/face:wall/powered:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:west/face:wall/powered:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:east/face:wall/powered:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:east/face:wall/powered:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:north/face:ceiling/powered:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:north/face:ceiling/powered:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:south/face:ceiling/powered:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:south/face:ceiling/powered:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:west/face:ceiling/powered:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:west/face:ceiling/powered:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:east/face:ceiling/powered:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_button,state=facing:east/face:ceiling/powered:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:north/half:top/shape:straight,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:south/half:top/shape:straight,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:west/half:top/shape:straight,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:east/half:top/shape:straight,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_slab,state=type:top,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_slab,state=type:bottom,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_slab,state=type:double,patch0=0:mangrove_planks,patch1=0:mangrove_planks,patch2=0:mangrove_planks,patch3=0:mangrove_planks,patch4=0:mangrove_planks,patch5=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence_gate,state=facing:north/in_wall:true/open:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence_gate,state=facing:north/in_wall:true/open:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence_gate,state=facing:north/in_wall:false/open:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence_gate,state=facing:north/in_wall:false/open:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence_gate,state=facing:south/in_wall:true/open:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence_gate,state=facing:south/in_wall:true/open:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence_gate,state=facing:south/in_wall:false/open:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence_gate,state=facing:south/in_wall:false/open:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence_gate,state=facing:west/in_wall:true/open:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence_gate,state=facing:west/in_wall:true/open:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence_gate,state=facing:west/in_wall:false/open:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence_gate,state=facing:west/in_wall:false/open:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence_gate,state=facing:east/in_wall:true/open:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence_gate,state=facing:east/in_wall:true/open:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence_gate,state=facing:east/in_wall:false/open:true,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence_gate,state=facing:east/in_wall:false/open:false,patch0=0:mangrove_planks,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence,state=west:true/east:true/south:true/north:true,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence,state=west:false/east:true/south:true/north:true,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence,state=west:true/east:true/south:false/north:true,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence,state=west:false/east:true/south:false/north:true,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence,state=west:true/east:true/south:true/north:false,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence,state=west:false/east:true/south:true/north:false,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence,state=west:true/east:true/south:false/north:false,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence,state=west:false/east:true/south:false/north:false,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence,state=west:true/east:false/south:true/north:true,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence,state=west:false/east:false/south:true/north:true,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence,state=west:true/east:false/south:false/north:true,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence,state=west:false/east:false/south:false/north:true,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence,state=west:true/east:false/south:true/north:false,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence,state=west:false/east:false/south:true/north:false,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence,state=west:true/east:false/south:false/north:false,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_fence,state=west:false/east:false/south:false/north:false,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:north/hinge:left/half:upper/open:true,patch0=0:mangrove_door_top,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:north/hinge:left/half:upper/open:false,patch0=0:mangrove_door_top,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:north/hinge:right/half:upper/open:true,patch0=0:mangrove_door_top,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:north/hinge:right/half:upper/open:false,patch0=0:mangrove_door_top,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:north/hinge:left/half:lower/open:true,patch0=0:mangrove_door_bottom,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:north/hinge:left/half:lower/open:false,patch0=0:mangrove_door_bottom,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:north/hinge:right/half:lower/open:true,patch0=0:mangrove_door_bottom,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:north/hinge:right/half:lower/open:false,patch0=0:mangrove_door_bottom,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:south/hinge:left/half:upper/open:true,patch0=0:mangrove_door_top,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:south/hinge:left/half:upper/open:false,patch0=0:mangrove_door_top,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:south/hinge:right/half:upper/open:true,patch0=0:mangrove_door_top,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:south/hinge:right/half:upper/open:false,patch0=0:mangrove_door_top,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:south/hinge:left/half:lower/open:true,patch0=0:mangrove_door_bottom,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:south/hinge:left/half:lower/open:false,patch0=0:mangrove_door_bottom,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:south/hinge:right/half:lower/open:true,patch0=0:mangrove_door_bottom,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:south/hinge:right/half:lower/open:false,patch0=0:mangrove_door_bottom,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:west/hinge:left/half:upper/open:true,patch0=0:mangrove_door_top,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:west/hinge:left/half:upper/open:false,patch0=0:mangrove_door_top,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:west/hinge:right/half:upper/open:true,patch0=0:mangrove_door_top,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:west/hinge:right/half:upper/open:false,patch0=0:mangrove_door_top,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:west/hinge:left/half:lower/open:true,patch0=0:mangrove_door_bottom,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:west/hinge:left/half:lower/open:false,patch0=0:mangrove_door_bottom,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:west/hinge:right/half:lower/open:true,patch0=0:mangrove_door_bottom,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:west/hinge:right/half:lower/open:false,patch0=0:mangrove_door_bottom,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:east/hinge:left/half:upper/open:true,patch0=0:mangrove_door_top,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:east/hinge:left/half:upper/open:false,patch0=0:mangrove_door_top,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:east/hinge:right/half:upper/open:true,patch0=0:mangrove_door_top,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:east/hinge:right/half:upper/open:false,patch0=0:mangrove_door_top,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:east/hinge:left/half:lower/open:true,patch0=0:mangrove_door_bottom,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:east/hinge:left/half:lower/open:false,patch0=0:mangrove_door_bottom,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:east/hinge:right/half:lower/open:true,patch0=0:mangrove_door_bottom,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_door,state=facing:east/hinge:right/half:lower/open:false,patch0=0:mangrove_door_bottom,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%mangrove_sign,patch0=0,patch1=1,patch2=2,patch3=3,patch4=4,patch5=5,patch6=6,patch7=7,patch8=8,patch9=9,transparency=TRANSPARENT,txtid=mangrove_sign +[1.19-]block:id=%mangrove_wall_sign,patch0=0,patch1=1,patch2=2,patch3=3,patch4=4,patch5=5,transparency=TRANSPARENT,txtid=mangrove_sign +[1.19-]block:id=%packed_mud,patch0=0:packed_mud,patch1=0:packed_mud,patch2=0:packed_mud,patch3=0:packed_mud,patch4=0:packed_mud,patch5=0:packed_mud,stdrot=true +[1.19-]block:id=%mud_bricks,patch0=0:mud_bricks,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:north/half:top/shape:straight,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:south/half:top/shape:straight,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:west/half:top/shape:straight,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:east/half:top/shape:straight,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_slab,state=type:top,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_slab,state=type:bottom,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_slab,state=type:double,patch0=0:mud_bricks,patch1=0:mud_bricks,patch2=0:mud_bricks,patch3=0:mud_bricks,patch4=0:mud_bricks,patch5=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:none/up:true/south:none/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:none/up:true/south:none/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:none/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:none/up:false/south:none/north:none,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:none/up:false/south:none/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:none/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:none/up:true/south:low/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:none/up:true/south:low/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:low/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:none/up:false/south:low/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:none/up:false/south:low/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:low/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:none/up:true/south:tall/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:none/up:true/south:tall/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:tall/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:none/up:false/south:tall/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:none/up:false/south:tall/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:tall/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:none/up:true/south:none/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:none/up:true/south:none/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:none/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:none/up:false/south:none/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:none/up:false/south:none/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:none/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:none/up:true/south:low/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:none/up:true/south:low/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:low/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:none/up:false/south:low/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:none/up:false/south:low/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:low/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:none/up:true/south:tall/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:none/up:true/south:tall/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:tall/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:none/up:false/south:tall/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:none/up:false/south:tall/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:tall/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:none/up:true/south:none/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:none/up:true/south:none/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:none/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:none/up:false/south:none/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:none/up:false/south:none/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:none/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:none/up:true/south:low/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:none/up:true/south:low/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:low/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:none/up:false/south:low/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:none/up:false/south:low/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:low/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:none/up:true/south:tall/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:none/up:true/south:tall/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:tall/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:none/up:false/south:tall/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:none/up:false/south:tall/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:tall/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:low/up:true/south:none/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:low/up:true/south:none/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:none/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:low/up:false/south:none/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:low/up:false/south:none/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:none/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:low/up:true/south:low/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:low/up:true/south:low/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:low/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:low/up:false/south:low/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:low/up:false/south:low/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:low/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:low/up:true/south:tall/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:low/up:true/south:tall/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:tall/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:low/up:false/south:tall/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:low/up:false/south:tall/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:tall/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:low/up:true/south:none/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:low/up:true/south:none/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:none/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:low/up:false/south:none/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:low/up:false/south:none/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:none/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:low/up:true/south:low/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:low/up:true/south:low/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:low/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:low/up:false/south:low/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:low/up:false/south:low/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:low/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:low/up:true/south:tall/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:low/up:true/south:tall/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:tall/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:low/up:false/south:tall/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:low/up:false/south:tall/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:tall/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:low/up:true/south:none/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:low/up:true/south:none/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:none/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:low/up:false/south:none/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:low/up:false/south:none/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:none/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:low/up:true/south:low/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:low/up:true/south:low/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:low/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:low/up:false/south:low/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:low/up:false/south:low/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:low/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:low/up:true/south:tall/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:low/up:true/south:tall/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:tall/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:low/up:false/south:tall/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:low/up:false/south:tall/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:tall/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:none/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:none/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:none/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:none/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:none/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:none/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:low/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:low/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:low/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:low/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:low/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:low/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:tall/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:tall/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:tall/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:tall/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:tall/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:tall/north:none,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:none/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:none/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:none/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:none/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:none/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:none/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:low/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:low/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:low/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:low/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:low/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:low/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:tall/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:tall/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:tall/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:tall/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:tall/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:tall/north:low,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:none/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:none/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:none/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:none/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:none/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:none/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:low/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:low/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:low/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:low/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:low/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:low/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:tall/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:tall/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:tall/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:tall/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:tall/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:tall/north:tall,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%mud,patch0=0:mud,patch1=0:mud,patch2=0:mud,patch3=0:mud,patch4=0:mud,patch5=0:mud,stdrot=true +[1.19-]block:id=%sculk,patch0=0:sculk,patch1=0:sculk,patch2=0:sculk,patch3=0:sculk,patch4=0:sculk,patch5=0:sculk,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:true/north:true/west:true/up:true/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:true/north:true/west:false/up:true/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:true/north:true/west:true/up:false/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:true/north:true/west:false/up:false/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:false/north:true/west:true/up:true/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:false/north:true/west:false/up:true/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:false/north:true/west:true/up:false/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:false/north:true/west:false/up:false/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:true/north:false/west:true/up:true/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:true/north:false/west:false/up:true/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:true/north:false/west:true/up:false/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:true/north:false/west:false/up:false/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:false/north:false/west:true/up:true/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:false/north:false/west:false/up:true/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:false/north:false/west:true/up:false/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:false/north:false/west:false/up:false/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:true/north:true/west:true/up:true/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:true/north:true/west:false/up:true/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:true/north:true/west:true/up:false/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:true/north:true/west:false/up:false/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:false/north:true/west:true/up:true/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:false/north:true/west:false/up:true/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:false/north:true/west:true/up:false/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:false/north:true/west:false/up:false/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:true/north:false/west:true/up:true/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:true/north:false/west:false/up:true/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:true/north:false/west:true/up:false/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:true/north:false/west:false/up:false/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:false/north:false/west:true/up:true/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:false/north:false/west:false/up:true/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:false/north:false/west:true/up:false/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:false/north:false/west:false/up:false/down:true,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:true/north:true/west:true/up:true/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:true/north:true/west:false/up:true/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:true/north:true/west:true/up:false/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:true/north:true/west:false/up:false/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:false/north:true/west:true/up:true/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:false/north:true/west:false/up:true/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:false/north:true/west:true/up:false/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:false/north:true/west:false/up:false/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:true/north:false/west:true/up:true/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:true/north:false/west:false/up:true/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:true/north:false/west:true/up:false/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:true/north:false/west:false/up:false/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:false/north:false/west:true/up:true/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:false/north:false/west:false/up:true/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:false/north:false/west:true/up:false/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:true/south:false/north:false/west:false/up:false/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:true/north:true/west:true/up:true/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:true/north:true/west:false/up:true/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:true/north:true/west:true/up:false/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:true/north:true/west:false/up:false/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:false/north:true/west:true/up:true/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:false/north:true/west:false/up:true/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:false/north:true/west:true/up:false/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:false/north:true/west:false/up:false/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:true/north:false/west:true/up:true/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:true/north:false/west:false/up:true/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:true/north:false/west:true/up:false/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:true/north:false/west:false/up:false/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:false/north:false/west:true/up:true/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:false/north:false/west:false/up:true/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:false/north:false/west:true/up:false/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_vein,state=east:false/south:false/north:false/west:false/up:false/down:false,patch0=0:sculk_vein,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_catalyst,state=bloom:true,patch0=0:sculk_catalyst_side_bloom,patch1=0:sculk_catalyst_bottom,patch2=0:sculk_catalyst_side_bloom,patch3=0:sculk_catalyst_side_bloom,patch4=0:sculk_catalyst_top_bloom,patch5=0:sculk_catalyst_side_bloom,stdrot=true +[1.19-]block:id=%sculk_catalyst,state=bloom:false,patch0=0:sculk_catalyst_side,patch1=0:sculk_catalyst_bottom,patch2=0:sculk_catalyst_side,patch3=0:sculk_catalyst_side,patch4=0:sculk_catalyst_top,patch5=0:sculk_catalyst_side,stdrot=true +[1.19-]block:id=%sculk_shrieker,state=can_summon:true,patch0=0:sculk_shrieker_side,patch1=0:sculk_shrieker_can_summon_inner_top,patch2=0:sculk_shrieker_bottom,patch3=0:sculk_shrieker_top,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%sculk_shrieker,state=can_summon:false,patch0=0:sculk_shrieker_side,patch1=0:sculk_shrieker_inner_top,patch2=0:sculk_shrieker_bottom,patch3=0:sculk_shrieker_top,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%ochre_froglight,state=axis:x,patch0=0:ochre_froglight_side,patch1=0:ochre_froglight_top,stdrot=true +[1.19-]block:id=%ochre_froglight,state=axis:y,patch0=0:ochre_froglight_side,patch1=0:ochre_froglight_top,patch2=0:ochre_froglight_side,patch3=0:ochre_froglight_side,patch4=0:ochre_froglight_top,patch5=0:ochre_froglight_side,stdrot=true +[1.19-]block:id=%ochre_froglight,state=axis:z,patch0=0:ochre_froglight_side,patch1=0:ochre_froglight_top,stdrot=true +[1.19-]block:id=%verdant_froglight,state=axis:x,patch0=0:verdant_froglight_side,patch1=0:verdant_froglight_top,stdrot=true +[1.19-]block:id=%verdant_froglight,state=axis:y,patch0=0:verdant_froglight_side,patch1=0:verdant_froglight_top,patch2=0:verdant_froglight_side,patch3=0:verdant_froglight_side,patch4=0:verdant_froglight_top,patch5=0:verdant_froglight_side,stdrot=true +[1.19-]block:id=%verdant_froglight,state=axis:z,patch0=0:verdant_froglight_side,patch1=0:verdant_froglight_top,stdrot=true +[1.19-]block:id=%pearlescent_froglight,state=axis:x,patch0=0:pearlescent_froglight_side,patch1=0:pearlescent_froglight_top,stdrot=true +[1.19-]block:id=%pearlescent_froglight,state=axis:y,patch0=0:pearlescent_froglight_side,patch1=0:pearlescent_froglight_top,patch2=0:pearlescent_froglight_side,patch3=0:pearlescent_froglight_side,patch4=0:pearlescent_froglight_top,patch5=0:pearlescent_froglight_side,stdrot=true +[1.19-]block:id=%pearlescent_froglight,state=axis:z,patch0=0:pearlescent_froglight_side,patch1=0:pearlescent_froglight_top,stdrot=true +[1.19-]block:id=%frogspawn,patch0=0:frogspawn,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%potted_mangrove_propagule,patch0=0:mangrove_propagule,patch1=0:flower_pot,patch2=0:dirt,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%potted_azalea_bush,patch0=0:flower_pot,patch1=0:dirt,patch2=0:potted_azalea_bush_top,patch3=0:potted_azalea_bush_side,patch4=0:potted_azalea_bush_plant,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%potted_flowering_azalea_bush,patch0=0:flower_pot,patch1=0:dirt,patch2=0:potted_flowering_azalea_bush_top,patch3=0:potted_flowering_azalea_bush_side,patch4=0:potted_azalea_bush_plant,transparency=TRANSPARENT,stdrot=true +[1.19-]block:id=%reinforced_deepslate,patch0=0:reinforced_deepslate_side,patch1=0:reinforced_deepslate_bottom,patch2=0:reinforced_deepslate_side,patch3=0:reinforced_deepslate_side,patch4=0:reinforced_deepslate_top,patch5=0:reinforced_deepslate_side,stdrot=true +[1.19-]block:id=%lightning_rod,state=powered:true/facing:north,patch0=0:lightning_rod_on,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%lightning_rod,state=powered:false/facing:north,patch0=0:lightning_rod,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%lightning_rod,state=powered:true/facing:east,patch0=0:lightning_rod_on,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%lightning_rod,state=powered:false/facing:east,patch0=0:lightning_rod,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%lightning_rod,state=powered:true/facing:south,patch0=0:lightning_rod_on,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%lightning_rod,state=powered:false/facing:south,patch0=0:lightning_rod,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%lightning_rod,state=powered:true/facing:west,patch0=0:lightning_rod_on,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%lightning_rod,state=powered:false/facing:west,patch0=0:lightning_rod,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%lightning_rod,state=powered:true/facing:up,patch0=0:lightning_rod_on,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%lightning_rod,state=powered:false/facing:up,patch0=0:lightning_rod,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%lightning_rod,state=powered:true/facing:down,patch0=0:lightning_rod_on,transparency=SEMITRANSPARENT,stdrot=true +[1.19-]block:id=%lightning_rod,state=powered:false/facing:down,patch0=0:lightning_rod,transparency=SEMITRANSPARENT,stdrot=true diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/frogspawn.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/frogspawn.png new file mode 100644 index 0000000000000000000000000000000000000000..2289054037930df07fc414b34c86a64559f786b9 GIT binary patch literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`DV{ElAr_~T6Amyf+kSohs?+}L z$!tXo9*ZT!5C4DkB;ykgLnh0^7Ki>&mRPs0;*Gm{M4l&=O6oli5*2vs8^hK4O---W zrFwEi>le?AA2|mLG|i5xsHW$1UCcfBIzNf2KTVQ{A?4sy)4o-f%YpVWc)I$ztaD0e F0sw#gI3NH3 literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_door_bottom.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_door_bottom.png new file mode 100644 index 0000000000000000000000000000000000000000..d8ab5639a951c591be5fc7062b1578325ba1a5b6 GIT binary patch literal 278 zcmV+x0qOpUP)ve{y9 z>y<1|fb%#E*ToX&H6DrJCnw30p;XZnBoBhf3C{#&hy!o{pPuJoBD^oBIRR@&N`T0X zz}xDT>TJog=1Nd6_W@`C^23l{9b`!*h-h&lK|@QTg@(17P=}_BQ)RU2opiOQ|)$@ zF$w}f3`O@KVxyH{A?yfRiM^ezo&8i|=>cp#uwP#I6K5B)Lz2x)Cdmw+>*;+tN~EB_ z&SUmCK>pieImmt<#>Z~26UEYbqz7Qba$m0ydm!Z*R7+a+lGwSOD}Yi80Kcc{fg4b3 zMRT3*(l8CsC!5pJ-F0v@ZkDS+PMX~;03P+m2;cq|6K XL|M>$u$2~n00000NkvXXu0mjf28?dH literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_leaves.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_leaves.png new file mode 100644 index 0000000000000000000000000000000000000000..ec40483b9bf9ca06a243fb960b2cb0cb99584020 GIT binary patch literal 279 zcmV+y0qFjTP)21FxeCIY}y8op2gxXZwZ=8;xL)WL!PzyJUcmpOdh zVU~wCC9RR2Z2{h9?M+#0P_`Yt%SS;=}#28^ZIpAIszT1;z!B zF$X-Zr_D%2it!C`K5Qp+hnQ-j;$EHistjJaR+F-h_^rS%9hocWfM1dwbuN>@<+|iL zbx+p2*@7lorFFBY$;?IC@mfnxif(}a7)pMCK8Qq;TAKuEWlYpVkHt0mDw7ww_K+Ob sd7vXjnr{7heBB>L@(OFK>wH4I07NvtkfagEq5uE@07*qoM6N<$g1l&FmH+?% literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_log_top.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_log_top.png new file mode 100644 index 0000000000000000000000000000000000000000..f2c4d64f1c5bbb82f9e3a79d4d138e3a1621fc99 GIT binary patch literal 285 zcmV+&0pk9NP)dZ22;_e$&@J9C#iZ6gBEhZ##UxkOx9}H%{Avq* z1RlE8=L3QN3#FMTwNO>i2j4;%Wf7DHN6?Uk7GM#9AK_o%9n>3vzg-IC*A^`WCS58%;vH&_Y)szP}c$?}mt0e^18t{cy~UpL!s%IWNJdI%#sB+iUE z6y|vUfS`oD^N~A-WY2^qBS7Fi*Ar_~T6Be***oA$wPYM1} zzsa;(=j*@s7gIjY*O5MXiRTi-rHK9ZZ|q&`@@Ktpoyn-`+c!m$fs6hB;e$`4nYh?D zE$-LSW5`@~f^|X0k{hgs;=(7)8J5gkbcE%SPhb*LrrMMl460}RW~`bfxfW<8gQu&X J%Q~loCIDL`IKTh^ literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_propagule_hanging.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_propagule_hanging.png new file mode 100644 index 0000000000000000000000000000000000000000..1ebc363927241edfe85dd231795e979a3344c82b GIT binary patch literal 258 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Cp}#pLo7}wXRO%xFFq#W*L+5f zoK0W<-<~efbW>qMRKgGY?WZKp9p`eG<=ED6L*cBPuUG-E!r7~Hul?Y)*kS(b|0PMi z1XqQ#in9-W%ywYcy%_cXbW_N|Sq`&or&S&1{qgtprFwy5*$f`WCjTa7 z_V*sKH&z1D%Ne&FJN5tW8q&t;uc GLK6Ugac1}c literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_roots_side.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_roots_side.png new file mode 100644 index 0000000000000000000000000000000000000000..658754e4632b66a4b89f60fdf2bc267349523b17 GIT binary patch literal 250 zcmVgaS=428<}QMTwMKJJ$#Ez6qW!3_qATGIq zYOYExg1ZDS;8TkUXjwbbs!@V!q{}Xe1ng!qQWMfhlf)V&E+zt(csJHMWX1GQh{f0F z6@8@1=t+`KAi5lUs5|~>;+zBVMBt7m5+z{KKlAwNZuF+UApigX07*qoM6N<$g4wWU AZU6uP literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_roots_top.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mangrove_roots_top.png new file mode 100644 index 0000000000000000000000000000000000000000..5e2eb107e338a6c99ac12afce6045b9eb1da93df GIT binary patch literal 266 zcmV+l0rmcgP)KFDjuf^b)z%k;5oWi=U<$!P#c4yS#LC{AOnq^U1eTPd#Q3~3^nytlHR zsiG55l084hv~XAxN~ry7OL(z)ZTeK5#0^iQ#M$a$xfh#9<-e$#nSXMUUHR(>;&7!0WWH!ehhDdI?$^B3}Y3(KD2Eyh6p2sG#funauH6sva0awQ-2~65tCsTLR55| z+X})!3`FxozEqG>un1nj;{X57$}F69c6xSKtisMqI70jC(RSkR<<&071;_V}Q^% zG#wIMoUH5$BBb2uXY1>d&Oza4tO5=da|7}LmnIX51o+M8d4mQHoVUvT!-Ky_w&G}} h0uDQ0UFwcb_AjBau}IJyG8F&-002ovPDHLkV1f(Fd))v4 literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mud_bricks.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/mud_bricks.png new file mode 100644 index 0000000000000000000000000000000000000000..f138a525060c916fb9d793d2b644d3a6e102f08c GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!bbwEYE0B)!aLf#JtBdvMN%x;x z7%;aYW_4TQy8c4*=~cIY(u^fRe!&b5&u*jvIVqkljv*3~tOpwd859{Lz)YTnpShqim&Sl8jd3x02MYr!u!12eAK`;xXl2|GoR$1MBaXtw2#5l)z4*}Q$iB} DU9n8` literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/muddy_mangrove_roots_side.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/muddy_mangrove_roots_side.png new file mode 100644 index 0000000000000000000000000000000000000000..9436714368d10ea18681327a2d3c441ce82f71dc GIT binary patch literal 330 zcmV-Q0k!^#P){ z(P{!g3`O%T_Q4mWV5x}MRp?r5Dg6Nd|36mFz!@*ohp?G!?oD!&nhyKr^!n25c=%}c zcU~`VyW=vyubNMe@$aAC<$l{VA548+ruHBRh#)}Xe2u5iSHC{zYY$)$P%#s&KKc|X zl5uQ{N+d}@EQ{o5#2W!Nf+e6M3CN+CV}k1)5WobJB*3;6lsrc*mA5Ux3Bb<+yX|vp zT?0puKuxkEtFlH%fV>i5MOBs{Zv{QKgDfH=tm-0me*FuD2LJ#7 literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/muddy_mangrove_roots_top.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/muddy_mangrove_roots_top.png new file mode 100644 index 0000000000000000000000000000000000000000..dbbe6b0e9666850b1d6310c377abddb6c4c1409b GIT binary patch literal 336 zcmV-W0k8gvP)s9}HoA#Hd zhrU_AR_vZ9eKFq@PQU?&L&%5Ieh#xv00Iyaz2n~^@Z^KHJXjqCNfgVX*Y9QF%|xpc z{G(+4xT-J77RY8FyM1p+BSy)N^7+0kqRDx#5$u{?&}}r$JH4<$ji5YDgg__4g8!*& zI?TaK=LFBrX|gI?IxRuTIBi$vKAz59#dps*N`sufuc7IzP-0GEWFb5*klNu%LqqBH62UyGG9=O|@jn&R7! iX1RI%UoNLRV}Aj%39R8^Hf8Jp0000@gidb-3O!#}Qw_ub;6)CO zpA_^!z7-H9!FCc6Ie0gW(o7IJcYpxKY+tmspB>;kIFHj! z@P&C;D5@1`WoeMZX9<3^q-AyBodc7yU_*-4N9MgRw1iQ0miHTv-IT&*JVluR0000< KMNUMnLSTXug=mTZ literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/ochre_froglight_top.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/ochre_froglight_top.png new file mode 100644 index 0000000000000000000000000000000000000000..68cfb4255a9e7e87f4c895fbb12ccb26913a3b23 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Q#@T9Lp08>4RYjaFyMLJUE9Y0 zL37@pmV369Vl4el9k(V4cJsV+kcchl%=Auqv#N5%_LVoUi+#OO%}{eOoJp1Y<|*f| z4Kt(^fA0|s;qO@J$@KqEVZx*+uB<6)t~sWHd;)?qnAbgcpUbv?>HO$Jix%k~T)1Fq zdfOu1Nbj2&KV0_6ZhH86=I5N#LXUW7iYqftXS--m#X$Elc)I$ztaD0e F0st~EQDguB literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/packed_mud.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/packed_mud.png new file mode 100644 index 0000000000000000000000000000000000000000..c1539af5849eda61042314e456787970faccc7f2 GIT binary patch literal 265 zcmV+k0rvihP)$W7!RzZ>Rlu z-oG|DBm9P~vIKZDP6;C7Utw1hE($44fBAW*Pz?Cn?+8!8>dkkd#v9$`+D P00000NkvXXu0mjf?3-)} literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/pearlescent_froglight_side.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/pearlescent_froglight_side.png new file mode 100644 index 0000000000000000000000000000000000000000..8f15ce6ae75dbe11d25aed35481b080c32350d81 GIT binary patch literal 257 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Cp=voLp09!PO|1>GURcot>Zhu zX~7`N>fv$Wg1&eHcNABK#t)uZFA{TmTAoy>f3rAwOZfE7s_i#U_uX#(Yr!-9v!{dH znk!lR1TCvB{Vg*MJy4iGHPrWjng2aE75RmiqZ^&pKR+D8Y{*bCvH7t&tL=n*Ru|6= zb6s5c?(r@*5e8Dfx~CNGUU=r~fmptOKjt_6T7FvWws`K_boL*7=N^{`*Cfh`b!D+e zMM^#S5ZNTJn;9uv@%+FNof{L9zD}%s&#jvnGWY3Uw#v|ra$O1!4gvkd;OXk;vd$@? F2>{BbXTJad literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/pearlescent_froglight_top.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/pearlescent_froglight_top.png new file mode 100644 index 0000000000000000000000000000000000000000..c8cb05115ccfe2578ec4a73962debf47869981a9 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|lRaG=Lp08>4cg7s;K1|xe|`IZ z#TSp(*)M2b-K@uF7gcmbsr`$CMb$xXpJ*lDt9+&AU;i5QulT)<=|T5CA&tlrVREb3 zk6hundA)K$l>?8j(2wW+%#*JK1uQnvOj_Mp(9m%}rhv6R-}r~_-#bELqPd)Wth%AT}nZE{H3zasiGQ^ez49$8yWSV6}1lUw#rNy+4n}IGisn z=iFnSCJW7>Mm32)>+9LBx4Q{SDeZV#EbxyY3^k}707!t$;##YP3JJv*wS*)LK&6-~ z6M|q)T|onF;$AV~_sl$<_*#q&5bc?{$OY#+z(e-zYu*5`vL*QC2HM0uDMYW%_k`Yt z0la_oKyWfKYT>{wP2qt}_k$-$e6Yq`z`Y;=AEdhY@d3(Gmsq}k?_!b<^c)u- z^?|xjLhlEDyZa!mQ3r|0Ncn$&n0(-zQ6Kowd>fN}kbA%d|N4NSpiMYD4>XG}lh8Nj TvaLWK00000NkvXXu0mjfzV?ct literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/reinforced_deepslate_top.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/reinforced_deepslate_top.png new file mode 100644 index 0000000000000000000000000000000000000000..bee3fab0dca4c3f42e21f9b05d94f2c35adbda90 GIT binary patch literal 299 zcmV+`0o4A9P)dV01kuX1Q@O}@OK6RXf!0l1w4sd}GZj-=Cw68!{^?VR`QsM3RT)1;m zorAzFGw}*m)OLfwlip`-0f6sw2B^|kRj%Zad=Wsx+4G+Jao`Whhv^P#9-(}RdY1l_ xeI~Ak6V>to^D}9s0H6~w1Jy_{KhwY8`2&fz@iDguI12y(002ovPDHLkV1lHcfz|*3 literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk.png new file mode 100644 index 0000000000000000000000000000000000000000..fef9d9760a94d0db924c610feca9e4a12020194a GIT binary patch literal 370 zcmV-&0ge8NP) zF$w}P5Jd-MOABp8thUtB8`y}Y7qIb2g6H!99zq#m!q4AHq6?y{DZ;{J_Gj`lc|^w3 z*$u~J(T35i*5S+Z789JnL>AMbF%z{B1axA)-6cgVr#T)X5lN|YWtf9;!33{lOJ=Vu zF5X^MaJ1PMD~n9@s^ER&&$d7$z~y-!aK*s`UWG+C7WDxe>BYPXB7s~Zc`JugzzJ+5 zZ)H0j6zMb)SD>OS5^ceA*)uW~6E7*ZZ>~f2cj3Euu)JK0Jdo45@*u?n z4fN)L{;VgE6Djh*I_tAMuqH`~zRUv_?ZpG{Dpww4c)*TV9<)hTzJ~|u?ho()%}Tuw zxY>&D13bYP);|@PzN7&VjkX6zs6NJ|iOp)A$J1Gv z*Jg%)vRJy}z5`CeEtbd#vlx)cD-rFs=G2yMjEG;T8iA2JFamDB8bL+mVjd+FF&cr3 zS(j+ZDiM)5-|Zanvl9_tl3UWBsD53h Y4wZ>A-^6X!)&Kwi07*qoM6N<$g4rZ-ga7~l literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_catalyst_side.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_catalyst_side.png new file mode 100644 index 0000000000000000000000000000000000000000..1225e9650ccf3ff4fbbe7fe09255c89129a3f483 GIT binary patch literal 314 zcmV-A0mc4_P)#R3Tf*3Cay{T!Pf0P&G|;69mC=0UQR&2{5%BpojRIZ<9B9OqLb1 z|G#hEd^2Zq$APKDXcPW3}$YI-@iJ zdB;l)wH<(96hZ}@Lz?PBBnM%3jX?84b>0C4VJ7XQ0$jtVvAds<7m1uC9O#;R^M9bF zkdRq-|C;W;^w32RPQSak7UvEgX7hyf0oAS-Qp2( z6hD(SYyufd{OOtM|7*H?XI?t9u|6CXjg9eEid6Nig}LIXozd%q6W3q0D-9>Sb%ns#=4-B z8X;LV1T-z=$g2TOFek1_Hc$@6Plpa zb4||0Z4CyK{btf-$l+=+YMKE=ny}4=+K-@d{5}u#1q literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_catalyst_side_bloom.png.mcmeta b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_catalyst_side_bloom.png.mcmeta new file mode 100644 index 00000000..d1cd0799 --- /dev/null +++ b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_catalyst_side_bloom.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_catalyst_top.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_catalyst_top.png new file mode 100644 index 0000000000000000000000000000000000000000..00ee9fad84d8302cd78c2a071bb37391b73fec7f GIT binary patch literal 245 zcmVmFrMRbxAIgZb<-5)+&yW^>9bGg>5 zePF>29#pcd#6XHFf^3{$?;#0h;<+@E7_qA|o?$$Az)8lidIdb(tx0&hKmICfCOQ=( zZ?cC4MUa5Xa~`PT09$UEkto)3021Eh%ynPeOq^vvH`gz?km#LkG?W5c1!?uqKT;)W vCped#ks~bJ(Clti5{?}qfjSNnCpF(MdCFAD3&CpM00000NkvXXu0mjfRn%O! literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_catalyst_top_bloom.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_catalyst_top_bloom.png new file mode 100644 index 0000000000000000000000000000000000000000..d59da0e276f603a7d544ce25f3eba05fd91ca4d5 GIT binary patch literal 806 zcmV+>1KIqEP)+&ET>5&KMmptfUJ-RlZqt)4%$rsAe*1CPn)DO0^gj3vX z{h&nS;=xn%fK!-k{b17|I#Q;7unFLUC6g}{BB{)DlrQixD8sqM1Fka{9w5#+-bXy( zHsgy!wti5#@{#&M@q@*K#e=8kf%=LwTR*65aHM`v{2+$&hzI`P$852%zArrc?~NlK k48J#yc(A@VKAU>tJrn(Rx}TZ7^8f$<07*qoM6N<$g0iN3R{#J2 literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_catalyst_top_bloom.png.mcmeta b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_catalyst_top_bloom.png.mcmeta new file mode 100644 index 00000000..d1cd0799 --- /dev/null +++ b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_catalyst_top_bloom.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_shrieker_bottom.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/sculk_shrieker_bottom.png new file mode 100644 index 0000000000000000000000000000000000000000..a3bf18fee5f4dff722188310a8a8d8cf3eef0739 GIT binary patch literal 240 zcmVxBz+^DdO%mIohKo-uA=MaLP`SWg&7|~T3_i#SA!AVB5dWC$rT@yInUw@S~6P*g( zn}5cD22gp<165oe=oE!$uHAte>2gj%1MD4=n_REJ1wJG<8Lz{T%^|6Rges)1;9Pb_ qj&k9e_V!jK;pjLL_r!du`TYT6CrQRHqEveT0000Q3*gxf&m56MUB^lwJppLF!H*lWFHdzV_%g|NnvnbMMoh!1F z0ue%CHAPn<&-ytOptmDO>RVA*qtmu}9{n->9yxEbVl)Al$#3$^>?WWS(NTT55PQ$T zCJN{*jJpc+s=5MBBupAkCN`%hl9$SBX*{L!w>Q&|Z0Fy}gAqP)=-1#mDGxaI6Bi&N zE)O_eF{GRiQzmB1RV8EWRx$A)%Q`iOH=5x=v=c=^M5Pw(L}NxkrC|c^L{9;lX?PGh zD$5C%2T{zuWHUVQV(yu<%7ZK?iU%8bppIKp=<-10p3yk14>$*KC7!}56E%sVT{%)6 zluSIp{T`jroS733yyY{MyhFFGO<*E1v4#oJ3Ct#;0#hG&j`AEkLDiIb5Dg7uiuLGV z@fd;0mh!+$TV=$5;z7p5RUYuZh?KZI;Bq(PLdpZoK3xH?#P9&mzU-*?d4R=ba-g6& z6A#92OgPBdXzvTjn{kymXSy#$Z`U_7tql*>iV7x{%L5LXxrA)x0b@QaG$S5pWfq-O zn|OeQ#(%pnV9n^!IK3}06SA9Z*gs(5=q_z5Rbm2`y=uZX9wgh^T)wl*b#_V_9&D}5 zQXXU&^UMo*piXmd@myqi*FKK}9-%`XFbAT@r2PZ#WQ3_)_l4>wRzI=&iN%BJCsseP z`iaGZ>L*q|vHFSCPpp1o^%JX~SpCH6CsseP`iXz0pZEzs3q_$}AgXi#00005P)xWb8cHUhVV&dogipW!*v=s+K)49U zLF`;?=Zo$3^7=H%xPN?@Zf@_U&Bf(B-rk?5z5T;^$nW}hnIm&muE`Ji$L`7LA}|^< zS7c@dqK$<&N5|9V{A_Ah*Yi`}JtZRBORjRFzW=d1)iU6shwC_rnY67Q2$5qhWb{&n@W9%-v52F5g7z|Z3^!|jAN5{m+5qh4PwkUPAfXhv`R-^Y7!q91mi|?TCWQ zR;ICrkbNYvGrL4NnPWq80e;uSeMJ038NJO$o~Y-?yF%AymwY#}4C z9&=v6@F4SjWMG#E>@qJlhCJZAAc~EY2cvBj4+cE&jHw14<_8&_^*!VP3Ye9%Kr%ql zkcCzF6n3Gk){e3eJZQ*^jt6*&x-<&5(IOstC(>KMAdRWyUAm~;@BppvUge&FJ1;of zFnI#mrsIK5$THMnexPSRx{dxD50Hsp=7HWukynO1;J^y8&OA`}>9Z>VG9HYsbUsX7 zy%0s78k4ut*9%Efg?7O?t-A}8_-8U(9$;>qdDleeb(kXTKB}AuEX+$kih|UY>G)hmP@jA;l$+?-mn|mWdar6V5}*##VreHvYJj`v^k&&;2-KB&w?Bxz;m9~@oq1uJWL3tZ z2npKbi2)I2fKYYm@Zb$fmLMFCcB+FWq=wc9+54za1)cTh;$EjK0~kq0om$V=67y%; z;K$O=fCt13^qA6kPw-})7=V5eefJHL07TX93V`8%GlhZS YE&qzZvU5cb>!3=|M_3No}yhfEpcu|Mb!`hhHcQh~lN59lKtkmw1=lkB>d;h=>L2#Rd+MDnPM zly}xoj?YyESGG>!LAWmh2Jqzw~7+Qgd8^)kImog^R;x$kd3|DHXM65VgIJJFJyfgr% zwrVi;@Md9(6(lb*MGsJYnx70XM-SYlRS*1~>cJF72KB(*e!olxspb}sd2blcF^@8dh@*uFlLhRGp4tZUczHg7)zO7>)=dNE{ zoZr`_i}}J2IEN4jY&f9#5+E=h0>cUnZ^oA}VjVd}iIk18^837}l#xl5LFXVniZkmx zKm_3o!04=A?M85r>K8`@IPk$4D0!#Ri~3^@QtAR!btIEmwUfXQQNimj{6!hp8F8>a ziL?3@w46jo(N8k#3_B+dW}oM*Lw4x%35eTZj zMeB7r8}p%J-`B8&{Zs_;u3&EqmVDQptxlHz3rLNs74DG0n_B;X`Ts|2H6?0rjem(oCzq-bk; z!(aSJV$u-OumIESZS@@dDb~>2>dPzuXZ(Lr!5>&mtiL)tOJDc^9b?1oF;a~g00000 LNkvXXu0mjf6uEA{ literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/verdant_froglight_side.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/verdant_froglight_side.png new file mode 100644 index 0000000000000000000000000000000000000000..5f18747c7c6b065c52eaf4cb4134369354634e1b GIT binary patch literal 258 zcmV+d0sa1oP)Pit&{ z-pL=Y!}z!W@W!Mz!wPcrq}%f@DnM~<$x;($i-(svl8@l@RzPTaO`;0GFtCRlK7Llv z1AHrR)Cq5A5y;_pn^Bqwki&2NMasC{Q097|E{Fg4pMv_Q%NENQZS7}g@Ex4SsV3;c zJS;1!6|k~2oU_jo{Ah_Kb=WIs?34r>D3%YVy)Kl5t?DfAH@dBkIx1o`MF0Q*07*qo IM6N<$g5a2IU;qFB literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/verdant_froglight_top.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/block/verdant_froglight_top.png new file mode 100644 index 0000000000000000000000000000000000000000..964bfb7b9203985f108c602df61860131944631b GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Q#@T9Lp08>4Kn0vaNv3U_;2Il z?)?QtUs#pSo$K1n*Q9HiHNm+`L1ym*)n&R9t5)3F_;PyQJ@qSJ?=XCDjhEGkoU_&@ zgsm@D`JCN4=BbUz8Iv03+w=JZc{}!ATGFvr?GdvJ%d-aUAJwxPw|^=2jtJSJY9X@a z%b9>Js@a;-ynaV+D@xm)li956-C>@hFVdQ&MBb@ E06!v5w*UYD literal 0 HcmV?d00001 diff --git a/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/entity/signs/mangrove.png b/DynmapCore/src/main/resources/texturepacks/standard/assets/minecraft/textures/entity/signs/mangrove.png new file mode 100644 index 0000000000000000000000000000000000000000..c18ac85b87616e3320dad850653cbcc7de719ee0 GIT binary patch literal 506 zcmVb9>2V zvU$Vs(>`ua%iI28kzVkA@e9mZ;Poh9)|MydEBT-ImnQi9VQhQZU6kjo?Sft)e@Mm* ztO0sWIM!N(k8$MuZo}baz6pUI*XF!@xiOiuZcy{Bys16Yf!QSJSy@Vm5cX|1Kh$R4bdTMFB^%8h;L@kqB=UW>0@<&Mk zAy(6u4pHu>!VfzDWPO7*eX=HbeO-JjyGQt=-hWHKHGO+?Lrvez*ZSr?QGQnr@MzhZ z_wM6)>s@EvV_xS1FTbk}&|$?I)SA;_J~jTRN>Crf2XK