sapdon 2.0.2 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/doc/BlockAPI.md +145 -0
- package/doc/api.md +1 -1
- package/doc/hello_sapdon/a9aad643f5609da73404d1f7f35fd5d0.png +0 -0
- package/doc/hello_sapdon/sapdon/344/275/277/347/224/250/346/225/231/347/250/213.md +159 -0
- package/examples/guidebook/build.config +33 -0
- package/examples/guidebook/dev/guidebook_BP/items/sapdon_test_guidebook.json +19 -0
- package/examples/{masterball/dev/masterball_BP/masterball_BP_1_20_20 → guidebook/dev/guidebook_BP}/manifest.json +63 -59
- package/examples/guidebook/dev/guidebook_BP/scripts/custom_components/cropComponent.js +50 -0
- package/examples/guidebook/dev/guidebook_BP/scripts/custom_components/items/gui_book.js +37 -0
- package/examples/guidebook/dev/guidebook_BP/scripts/custom_components/registry.js +20 -0
- package/examples/guidebook/dev/guidebook_BP/scripts/index.js +3 -0
- package/examples/guidebook/dev/guidebook_RP/blocks.json +3 -0
- package/examples/guidebook/dev/guidebook_RP/manifest.json +44 -0
- package/examples/guidebook/dev/guidebook_RP/models/blocks/crop.geo.json +48 -0
- package/examples/{masterball/dev/masterball_RP/masterball_RP_1_20_20.zip → guidebook/dev/guidebook_RP/pack_icon.png} +0 -0
- package/examples/guidebook/dev/guidebook_RP/textures/blocks/test_log_oak.png +0 -0
- package/examples/guidebook/dev/guidebook_RP/textures/blocks/test_log_top.png +0 -0
- package/examples/guidebook/dev/guidebook_RP/textures/flipbook_textures.json +1 -0
- package/examples/guidebook/dev/guidebook_RP/textures/item_texture.json +9 -0
- package/examples/guidebook/dev/guidebook_RP/textures/items/masterball.png +0 -0
- package/examples/guidebook/dev/guidebook_RP/textures/terrain_texture.json +14 -0
- package/examples/guidebook/dev/guidebook_RP/ui/_ui_defs.json +6 -0
- package/examples/guidebook/dev/guidebook_RP/ui/guidebook.json +581 -0
- package/examples/guidebook/dev/guidebook_RP/ui/server_form.json +91 -0
- package/examples/guidebook/main.mjs +66 -0
- package/examples/guidebook/mod.info +7 -0
- package/examples/{masterball/dev/masterball_BP/masterball_BP_1_20_20.zip → guidebook/pack_icon.png} +0 -0
- package/examples/guidebook/res/models/blocks/crop.geo.json +48 -0
- package/examples/guidebook/res/textures/blocks/test_log_oak.png +0 -0
- package/examples/guidebook/res/textures/blocks/test_log_top.png +0 -0
- package/examples/guidebook/res/textures/items/masterball.png +0 -0
- package/examples/guidebook/scripts/custom_components/cropComponent.js +50 -0
- package/examples/guidebook/scripts/custom_components/items/gui_book.js +37 -0
- package/examples/guidebook/scripts/custom_components/registry.js +20 -0
- package/examples/guidebook/scripts/index.js +3 -0
- package/examples/hello_sapdon/build.config +29 -0
- package/examples/hello_sapdon/main.mjs +3 -0
- package/examples/hello_sapdon/mod.info +7 -0
- package/examples/hello_sapdon/pack_icon.png +0 -0
- package/examples/hello_sapdon/res/models/blocks/crop.geo.json +48 -0
- package/examples/hello_sapdon/res/textures/blocks/test_log_oak.png +0 -0
- package/examples/hello_sapdon/res/textures/blocks/test_log_top.png +0 -0
- package/examples/hello_sapdon/res/textures/items/masterball.png +0 -0
- package/examples/hello_sapdon/scripts/custom_components/cropComponent.js +50 -0
- package/examples/hello_sapdon/scripts/custom_components/items/gui_book.js +37 -0
- package/examples/hello_sapdon/scripts/custom_components/registry.js +25 -0
- package/examples/hello_sapdon/scripts/index.js +0 -0
- package/examples/masterball/build.config +1 -0
- package/examples/masterball/dev/masterball_1_20_30.mcaddon +0 -0
- package/examples/masterball/dev/masterball_BP/entities/sapdon_projectile_masterball.json +56 -55
- package/examples/masterball/dev/masterball_BP/manifest.json +59 -59
- package/examples/masterball/dev/masterball_BP/pack_icon.png +0 -0
- package/examples/masterball/dev/masterball_BP/recipes/masterball.json +25 -0
- package/examples/masterball/dev/masterball_BP_1_20_30.mcpack +0 -0
- package/examples/masterball/dev/masterball_RP/attachables/sapdon_caught_masterball.json +19 -0
- package/examples/masterball/dev/masterball_RP/manifest.json +43 -43
- package/examples/masterball/dev/masterball_RP/pack_icon.png +0 -0
- package/examples/masterball/dev/masterball_RP/textures/flipbook_textures.json +1 -0
- package/examples/masterball/dev/masterball_RP/ui/_ui_defs.json +3 -0
- package/examples/masterball/dev/masterball_RP_1_20_30.mcpack +0 -0
- package/examples/masterball/main.mjs +18 -1
- package/examples/masterball/pack_icon.png +0 -0
- package/examples/mob_chest/build.config +29 -0
- package/examples/mob_chest/dev/mob_chest_BP/blocks/mob_chest_chest.json +56 -0
- package/examples/mob_chest/dev/mob_chest_BP/entities/mob_chest_chest_entity.json +79 -0
- package/examples/mob_chest/dev/mob_chest_BP/manifest.json +64 -0
- package/examples/mob_chest/dev/mob_chest_BP/pack_icon.png +0 -0
- package/examples/mob_chest/dev/mob_chest_BP/scripts/custom_components/block/block_with_entity.js +46 -0
- package/examples/mob_chest/dev/mob_chest_BP/scripts/custom_components/block/cropComponent.js +50 -0
- package/examples/mob_chest/dev/mob_chest_BP/scripts/custom_components/items/gui_book.js +37 -0
- package/examples/mob_chest/dev/mob_chest_BP/scripts/custom_components/registry.js +25 -0
- package/examples/mob_chest/dev/mob_chest_BP/scripts/index.js +4 -0
- package/examples/mob_chest/dev/mob_chest_RP/animation_controllers/mob_chest.animation_controllers.json +30 -0
- package/examples/mob_chest/dev/mob_chest_RP/animations/animation_item.animation.json +34 -0
- package/examples/mob_chest/dev/mob_chest_RP/animations/large_item.animation.json +27 -0
- package/examples/mob_chest/dev/mob_chest_RP/animations/mob_chest.animation.json +64 -0
- package/examples/mob_chest/dev/mob_chest_RP/blocks.json +13 -0
- package/examples/mob_chest/dev/mob_chest_RP/entity/mob_chest_chest_entity.json +32 -0
- package/examples/mob_chest/dev/mob_chest_RP/manifest.json +44 -0
- package/examples/mob_chest/dev/mob_chest_RP/models/blocks/crop.geo.json +48 -0
- package/examples/mob_chest/dev/mob_chest_RP/models/blocks/cube.geo.json +35 -0
- package/examples/mob_chest/dev/mob_chest_RP/models/blocks/empty.geo.json +35 -0
- package/examples/mob_chest/dev/mob_chest_RP/models/entity/mob_chest.geo.json +98 -0
- package/examples/mob_chest/dev/mob_chest_RP/pack_icon.png +0 -0
- package/examples/mob_chest/dev/mob_chest_RP/textures/blocks/entity/double_normal.png +0 -0
- package/examples/mob_chest/dev/mob_chest_RP/textures/blocks/entity/none.png +0 -0
- package/examples/mob_chest/dev/mob_chest_RP/textures/blocks/entity/normal.png +0 -0
- package/examples/mob_chest/dev/mob_chest_RP/textures/blocks/test_log_oak.png +0 -0
- package/examples/mob_chest/dev/mob_chest_RP/textures/blocks/test_log_top.png +0 -0
- package/examples/mob_chest/dev/mob_chest_RP/textures/flipbook_textures.json +1 -0
- package/examples/mob_chest/dev/mob_chest_RP/textures/item_texture.json +9 -0
- package/examples/mob_chest/dev/mob_chest_RP/textures/items/masterball.png +0 -0
- package/examples/mob_chest/dev/mob_chest_RP/textures/terrain_texture.json +23 -0
- package/examples/mob_chest/dev/mob_chest_RP/ui/_ui_defs.json +3 -0
- package/examples/mob_chest/main.mjs +31 -0
- package/examples/mob_chest/mod.info +7 -0
- package/examples/mob_chest/pack_icon.png +0 -0
- package/examples/mob_chest/res/animation_controllers/mob_chest.animation_controllers.json +30 -0
- package/examples/mob_chest/res/animations/animation_item.animation.json +34 -0
- package/examples/mob_chest/res/animations/large_item.animation.json +27 -0
- package/examples/mob_chest/res/animations/mob_chest.animation.json +64 -0
- package/examples/mob_chest/res/models/blocks/crop.geo.json +48 -0
- package/examples/mob_chest/res/models/blocks/cube.geo.json +35 -0
- package/examples/mob_chest/res/models/blocks/empty.geo.json +35 -0
- package/examples/mob_chest/res/models/entity/mob_chest.geo.json +98 -0
- package/examples/mob_chest/res/textures/blocks/entity/double_normal.png +0 -0
- package/examples/mob_chest/res/textures/blocks/entity/none.png +0 -0
- package/examples/mob_chest/res/textures/blocks/entity/normal.png +0 -0
- package/examples/mob_chest/res/textures/blocks/test_log_oak.png +0 -0
- package/examples/mob_chest/res/textures/blocks/test_log_top.png +0 -0
- package/examples/mob_chest/res/textures/items/masterball.png +0 -0
- package/examples/mob_chest/resource/cube.bbmodel +1 -0
- package/examples/mob_chest/resource/flipbook_item.bbmodel +1 -0
- package/examples/mob_chest/resource/flipbook_item.geo.bbmodel +1 -0
- package/examples/mob_chest/resource/flipbook_item.geo.json +3124 -0
- package/examples/mob_chest/resource/mob_chest.bbmodel +1 -0
- package/examples/mob_chest/scripts/custom_components/block/block_with_entity.js +46 -0
- package/examples/mob_chest/scripts/custom_components/block/cropComponent.js +50 -0
- package/examples/mob_chest/scripts/custom_components/items/gui_book.js +37 -0
- package/examples/mob_chest/scripts/custom_components/registry.js +25 -0
- package/examples/mob_chest/scripts/index.js +4 -0
- package/examples/test/build.config +29 -0
- package/examples/test/dev/test_BP/blocks/sapdon_ore_cinnabar.json +15 -15
- package/examples/test/dev/test_BP/blocks/sapdon_test_block.json +15 -15
- package/examples/test/dev/test_BP/blocks/sapdon_test_crop.json +191 -191
- package/examples/test/dev/test_BP/blocks/sapdon_wire.json +102 -102
- package/examples/test/dev/test_BP/entities/sapdon_test_projectile.json +56 -55
- package/examples/test/dev/test_BP/feature_rules/ore_cinnabar_orefeatre_rule.json +52 -52
- package/examples/test/dev/test_BP/feature_rules/overworld_underground_titanite_ore_feature.json +52 -52
- package/examples/test/dev/test_BP/features/ore_cinnabar_ore_feature.json +16 -16
- package/examples/test/dev/test_BP/features/titanite_ore_feature.json +22 -22
- package/examples/test/dev/test_BP/items/sapdon_chest.json +22 -22
- package/examples/test/dev/test_BP/items/sapdon_test_book.json +19 -0
- package/examples/test/dev/test_BP/items/sapdon_test_food.json +25 -25
- package/examples/test/dev/test_BP/items/sapdon_test_item.json +30 -30
- package/examples/test/dev/test_BP/manifest.json +63 -59
- package/examples/test/dev/test_BP/recipes/sapdon_test_furnace.json +12 -12
- package/examples/test/dev/test_BP/scripts/custom_components/cropComponent.js +1 -10
- package/examples/test/dev/test_BP/scripts/custom_components/items/gui_book.js +37 -0
- package/examples/test/dev/test_BP/scripts/custom_components/registry.js +20 -0
- package/examples/test/dev/test_BP/scripts/index.js +4 -3
- package/examples/test/dev/test_RP/attachables/sapdon_chest.json +24 -24
- package/examples/test/dev/test_RP/blocks.json +42 -42
- package/examples/test/dev/test_RP/entity/sapdon_test_projectile.json +27 -27
- package/examples/test/dev/test_RP/manifest.json +43 -43
- package/examples/test/dev/test_RP/models/blocks/arcane_workbench.geo.json +105 -105
- package/examples/test/dev/test_RP/models/blocks/jar_normal.geo.json +46 -46
- package/examples/test/dev/test_RP/models/blocks/jar_normal_0.geo.json +58 -58
- package/examples/test/dev/test_RP/models/blocks/jar_normal_1.geo.json +58 -58
- package/examples/test/dev/test_RP/models/blocks/jar_normal_2.geo.json +58 -58
- package/examples/test/dev/test_RP/models/blocks/jar_normal_3.geo.json +58 -58
- package/examples/test/dev/test_RP/models/blocks/wire.geo.json +153 -153
- package/examples/test/dev/test_RP/textures/item_texture.json +788 -788
- package/examples/test/dev/test_RP/textures/items/seals/seal_breaker.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_butcher.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_empty.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_empty_advanced.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_fill.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_fill_advanced.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_guard.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_guard_advanced.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_harvest.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_lumber.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_pickup.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_pickup_advanced.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_provider.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_use.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/wand/cap_thaumium.png.mcmeta +11 -11
- package/examples/test/dev/test_RP/textures/items/wand/cap_void.png.mcmeta +11 -11
- package/examples/test/dev/test_RP/textures/items/wand/focus_pech.png.mcmeta +2 -2
- package/examples/test/dev/test_RP/textures/items/wand/focus_portablehole.png.mcmeta +2 -2
- package/examples/test/dev/test_RP/textures/items/wand/focus_primal.png.mcmeta +2 -2
- package/examples/test/dev/test_RP/textures/items/wand/focus_shard.png.mcmeta +2 -2
- package/examples/test/dev/test_RP/textures/items/wand/focus_warding.png.mcmeta +2 -2
- package/examples/test/dev/test_RP/textures/items/wand/rod_primal_mat.png.mcmeta +44 -44
- package/examples/test/dev/test_RP/textures/terrain_texture.json +136 -136
- package/examples/test/dev/test_RP/ui/_ui_defs.json +6 -0
- package/examples/test/dev/test_RP/ui/guidebook.json +446 -0
- package/examples/test/dev/test_RP/ui/server_form.json +91 -0
- package/examples/test/main.mjs +46 -1
- package/examples/test/res/models/blocks/arcane_workbench.geo.json +105 -105
- package/examples/test/res/models/blocks/jar_normal.geo.json +46 -46
- package/examples/test/res/models/blocks/jar_normal_0.geo.json +58 -58
- package/examples/test/res/models/blocks/jar_normal_1.geo.json +58 -58
- package/examples/test/res/models/blocks/jar_normal_2.geo.json +58 -58
- package/examples/test/res/models/blocks/jar_normal_3.geo.json +58 -58
- package/examples/test/res/models/blocks/wire.geo.json +153 -153
- package/examples/test/res/textures/items/seals/seal_breaker.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_butcher.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_empty.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_empty_advanced.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_fill.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_fill_advanced.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_guard.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_guard_advanced.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_harvest.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_lumber.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_pickup.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_pickup_advanced.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_provider.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_use.png.mcmeta +5 -5
- package/examples/test/res/textures/items/wand/cap_thaumium.png.mcmeta +11 -11
- package/examples/test/res/textures/items/wand/cap_void.png.mcmeta +11 -11
- package/examples/test/res/textures/items/wand/focus_pech.png.mcmeta +2 -2
- package/examples/test/res/textures/items/wand/focus_portablehole.png.mcmeta +2 -2
- package/examples/test/res/textures/items/wand/focus_primal.png.mcmeta +2 -2
- package/examples/test/res/textures/items/wand/focus_shard.png.mcmeta +2 -2
- package/examples/test/res/textures/items/wand/focus_warding.png.mcmeta +2 -2
- package/examples/test/res/textures/items/wand/rod_primal_mat.png.mcmeta +44 -44
- package/examples/test/scripts/custom_components/cropComponent.js +1 -10
- package/examples/test/scripts/custom_components/items/gui_book.js +37 -0
- package/examples/test/scripts/custom_components/registry.js +20 -0
- package/examples/test/scripts/index.js +4 -3
- package/log.md +8 -0
- package/package.json +4 -1
- package/src/cli/build.js +210 -210
- package/src/cli/load.js +116 -112
- package/src/cli/tools/textureSet.js +114 -114
- package/src/cli/utils.js +82 -82
- package/src/core/addon/controllers/animation_controller.js +80 -0
- package/src/core/addon/entity/entity.js +52 -51
- package/src/core/block/GeometryBlock.js +8 -0
- package/src/core/block/OreBlock.js +1 -0
- package/src/core/block/TileBlock.js +117 -0
- package/src/core/block/block.js +106 -106
- package/src/core/block/blockComponent.js +557 -557
- package/src/core/block/cropBlock.js +1 -1
- package/src/core/entity/BasicEntity.js +195 -166
- package/src/core/entity/bundles/BasicBundle.js +51 -0
- package/src/core/factory/BlockFactory.js +166 -158
- package/src/core/factory/EntityFactory.js +82 -82
- package/src/core/factory/ItemFactory.js +120 -95
- package/src/core/factory/RecipeFactory.js +46 -46
- package/src/core/index.js +2 -1
- package/src/core/item/Item.js +96 -96
- package/src/core/item/ItemComponents.js +251 -235
- package/src/core/item/armor.js +117 -89
- package/src/core/item/attachable.js +33 -33
- package/src/core/item/food.js +61 -61
- package/src/core/registry.js +16 -16
- package/src/core/ui/Properties/{Grid.js → GridProp.js} +2 -2
- package/src/core/ui/Properties/Sound.js +72 -0
- package/src/core/ui/elements/Button.js +111 -0
- package/src/core/ui/elements/CollectionPanel.js +61 -0
- package/src/core/ui/elements/Grid.js +24 -0
- package/src/core/ui/elements/Image.js +4 -0
- package/src/core/ui/elements/Label.js +10 -2
- package/src/core/ui/elements/Panel.js +7 -0
- package/src/core/ui/elements/ScrollingPanel.js +68 -0
- package/src/core/ui/elements/StackPanel.js +40 -0
- package/src/core/ui/elements/UIElement.js +43 -2
- package/src/core/ui/registry/UISystemRegistry.js +35 -0
- package/src/core/ui/systems/UISystem.js +9 -5
- package/src/core/ui/systems/guidebook.js +299 -0
- package/src/core/ui/systems/server_form.js +94 -83
- package/src/templates/test_sapdon/build.config +28 -28
- package/src/templates/test_sapdon/res/animations/animation_item.animation.json +34 -0
- package/src/templates/test_sapdon/res/animations/large_item.animation.json +27 -0
- package/src/templates/test_sapdon/res/models/entity/animation/animation_item.geo.json +26 -0
- package/src/templates/test_sapdon/res/models/entity/animation/large_item.geo.json +28 -0
- package/src/templates/test_sapdon/res/textures/blocks/none.png +0 -0
- package/src/templates/test_sapdon/scripts/custom_components/cropComponent.js +50 -0
- package/src/templates/test_sapdon/scripts/custom_components/items/gui_book.js +37 -0
- package/src/templates/test_sapdon/scripts/custom_components/registry.js +25 -0
- package/examples/masterball/dev/masterball[1.20.20+].mcaddon.zip +0 -0
- package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/entities/sapdon_projectile_masterball.json +0 -56
- package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/items/sapdon_caught_masterball.json +0 -32
- package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/items/sapdon_uncaught_masterball.json +0 -31
- package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/scripts/index.js +0 -159
- package/examples/test/dev/test_BP/biomes/test_biome.json +0 -48
- package/examples/test/dev/test_BP/blocks/sapdon_block.json +0 -111
- package/examples/test/dev/test_BP/entities/sapdon_body.json +0 -118
- package/examples/test/dev/test_BP/entities/sapdon_test_entity_ctrl1.json +0 -55
- package/examples/test/dev/test_BP/entities/sapdon_test_entity_ctrl2.json +0 -61
- package/examples/test/dev/test_BP/entities/sapdon_test_entity_header.json +0 -408
- package/examples/test/dev/test_RP/entity/sapdon_body.json +0 -44
- package/examples/test/dev/test_RP/entity/sapdon_test_entity_ctrl1.json +0 -38
- package/examples/test/dev/test_RP/entity/sapdon_test_entity_ctrl2.json +0 -38
- package/examples/test/dev/test_RP/entity/sapdon_test_entity_header.json +0 -44
- package/src/cli/build.config +0 -4
- package/src/core/ui/registry/ServerUISystem.js +0 -19
- /package/examples/{masterball/dev/masterball_BP/masterball_BP_1_20_20 → guidebook/dev/guidebook_BP}/pack_icon.png +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"meta":{"format_version":"4.10","model_format":"free","box_uv":false},"name":"flipbook_item","model_identifier":"flipbook_item","visible_box":[4,4,1],"variable_placeholders":"","variable_placeholder_buttons":[],"timeline_setups":[],"unhandled_root_fields":{},"resolution":{"width":16,"height":16},"elements":[{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,7.499999999999996,-8],"to":[8,8.5,-7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[0,0,1,1]},"east":{"uv":[0,0,1,1]},"south":{"uv":[0,0,1,1]},"west":{"uv":[0,0,1,1]},"up":{"uv":[1,1,0,0]},"down":{"uv":[1,1,0,0]}},"type":"cube","uuid":"2381b5dc-d42d-203f-6e29-428dcf54c7c9"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,7.499999999999996,-8],"to":[7,8.5,-7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[1,0,2,1]},"east":{"uv":[1,0,2,1]},"south":{"uv":[1,0,2,1]},"west":{"uv":[1,0,2,1]},"up":{"uv":[2,1,1,0]},"down":{"uv":[2,1,1,0]}},"type":"cube","uuid":"bcf88427-6b41-4a23-63a0-8e126511351e"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[5,7.499999999999996,-8],"to":[6,8.5,-7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[2,0,3,1]},"east":{"uv":[2,0,3,1]},"south":{"uv":[2,0,3,1]},"west":{"uv":[2,0,3,1]},"up":{"uv":[3,1,2,0]},"down":{"uv":[3,1,2,0]}},"type":"cube","uuid":"4d6ba7f8-99ce-0dec-c93a-8cf510c655e9"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[4,7.499999999999996,-8],"to":[5,8.5,-7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[3,0,4,1]},"east":{"uv":[3,0,4,1]},"south":{"uv":[3,0,4,1]},"west":{"uv":[3,0,4,1]},"up":{"uv":[4,1,3,0]},"down":{"uv":[4,1,3,0]}},"type":"cube","uuid":"833a9d77-1db6-01cb-aa07-2a54da61d40f"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[3,7.499999999999996,-8],"to":[4,8.5,-7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[4,0,5,1]},"east":{"uv":[4,0,5,1]},"south":{"uv":[4,0,5,1]},"west":{"uv":[4,0,5,1]},"up":{"uv":[5,1,4,0]},"down":{"uv":[5,1,4,0]}},"type":"cube","uuid":"4bede9ff-90a7-20ce-6aed-e4fe9c1b344a"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[2,7.499999999999996,-8],"to":[3,8.5,-7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[5,0,6,1]},"east":{"uv":[5,0,6,1]},"south":{"uv":[5,0,6,1]},"west":{"uv":[5,0,6,1]},"up":{"uv":[6,1,5,0]},"down":{"uv":[6,1,5,0]}},"type":"cube","uuid":"d98b6957-7064-75eb-24e1-2282063a6f33"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[1,7.499999999999996,-8],"to":[2,8.5,-7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[6,0,7,1]},"east":{"uv":[6,0,7,1]},"south":{"uv":[6,0,7,1]},"west":{"uv":[6,0,7,1]},"up":{"uv":[7,1,6,0]},"down":{"uv":[7,1,6,0]}},"type":"cube","uuid":"45b64196-dcd9-fedf-7e38-231a97a42789"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[0,7.499999999999996,-8],"to":[1,8.5,-7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[7,0,8,1]},"east":{"uv":[7,0,8,1]},"south":{"uv":[7,0,8,1]},"west":{"uv":[7,0,8,1]},"up":{"uv":[8,1,7,0]},"down":{"uv":[8,1,7,0]}},"type":"cube","uuid":"235dfb35-f66c-14e7-fe1b-fe6d604aa237"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-1,7.499999999999996,-8],"to":[0,8.5,-7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[8,0,9,1]},"east":{"uv":[8,0,9,1]},"south":{"uv":[8,0,9,1]},"west":{"uv":[8,0,9,1]},"up":{"uv":[9,1,8,0]},"down":{"uv":[9,1,8,0]}},"type":"cube","uuid":"6af10128-a5da-ac26-58ee-1823223e9f77"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-2,7.499999999999996,-8],"to":[-1,8.5,-7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[9,0,10,1]},"east":{"uv":[9,0,10,1]},"south":{"uv":[9,0,10,1]},"west":{"uv":[9,0,10,1]},"up":{"uv":[10,1,9,0]},"down":{"uv":[10,1,9,0]}},"type":"cube","uuid":"3b0b4b20-7eb5-f9f6-12a9-346008c62393"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-3,7.499999999999996,-8],"to":[-2,8.5,-7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[10,0,11,1]},"east":{"uv":[10,0,11,1]},"south":{"uv":[10,0,11,1]},"west":{"uv":[10,0,11,1]},"up":{"uv":[11,1,10,0]},"down":{"uv":[11,1,10,0]}},"type":"cube","uuid":"e1000fbb-eb4b-1658-37ea-7e085f58f503"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-4,7.499999999999996,-8],"to":[-3,8.5,-7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[11,0,12,1]},"east":{"uv":[11,0,12,1]},"south":{"uv":[11,0,12,1]},"west":{"uv":[11,0,12,1]},"up":{"uv":[12,1,11,0]},"down":{"uv":[12,1,11,0]}},"type":"cube","uuid":"dd0209ed-5e28-4225-ffe1-864cb898429d"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-5,7.499999999999996,-8],"to":[-4,8.5,-7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[12,0,13,1]},"east":{"uv":[12,0,13,1]},"south":{"uv":[12,0,13,1]},"west":{"uv":[12,0,13,1]},"up":{"uv":[13,1,12,0]},"down":{"uv":[13,1,12,0]}},"type":"cube","uuid":"aa787dcb-c1c0-520c-d76c-01caca30bf47"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-6,7.499999999999996,-8],"to":[-5,8.5,-7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[13,0,14,1]},"east":{"uv":[13,0,14,1]},"south":{"uv":[13,0,14,1]},"west":{"uv":[13,0,14,1]},"up":{"uv":[14,1,13,0]},"down":{"uv":[14,1,13,0]}},"type":"cube","uuid":"e258d6e2-b0da-a36b-9a77-13157141cec5"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-7,7.499999999999996,-8],"to":[-6,8.5,-7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[14,0,15,1]},"east":{"uv":[14,0,15,1]},"south":{"uv":[14,0,15,1]},"west":{"uv":[14,0,15,1]},"up":{"uv":[15,1,14,0]},"down":{"uv":[15,1,14,0]}},"type":"cube","uuid":"4ab7fba5-5bf6-48b5-5dc5-b7da67df76cd"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-8,7.499999999999996,-8],"to":[-7,8.5,-7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[15,0,16,1]},"east":{"uv":[15,0,16,1]},"south":{"uv":[15,0,16,1]},"west":{"uv":[15,0,16,1]},"up":{"uv":[16,1,15,0]},"down":{"uv":[16,1,15,0]}},"type":"cube","uuid":"5c4fca56-b4de-758c-d5bf-ebe865c7b84a"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,7.499999999999996,-7],"to":[8,8.5,-6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[0,1,1,2]},"east":{"uv":[0,1,1,2]},"south":{"uv":[0,1,1,2]},"west":{"uv":[0,1,1,2]},"up":{"uv":[1,2,0,1]},"down":{"uv":[1,2,0,1]}},"type":"cube","uuid":"9bb45744-bf7c-f6f3-ccef-d14e751c538a"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,7.499999999999996,-7],"to":[7,8.5,-6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[1,1,2,2]},"east":{"uv":[1,1,2,2]},"south":{"uv":[1,1,2,2]},"west":{"uv":[1,1,2,2]},"up":{"uv":[2,2,1,1]},"down":{"uv":[2,2,1,1]}},"type":"cube","uuid":"ca2b6072-a24f-54e7-bf7a-a9c4770c3a46"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[5,7.499999999999996,-7],"to":[6,8.5,-6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[2,1,3,2]},"east":{"uv":[2,1,3,2]},"south":{"uv":[2,1,3,2]},"west":{"uv":[2,1,3,2]},"up":{"uv":[3,2,2,1]},"down":{"uv":[3,2,2,1]}},"type":"cube","uuid":"fadd8eaf-080d-82a2-01db-18f2317c7699"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[4,7.499999999999996,-7],"to":[5,8.5,-6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[3,1,4,2]},"east":{"uv":[3,1,4,2]},"south":{"uv":[3,1,4,2]},"west":{"uv":[3,1,4,2]},"up":{"uv":[4,2,3,1]},"down":{"uv":[4,2,3,1]}},"type":"cube","uuid":"493d8945-4bb0-922e-e5e9-087ee8e4a6cd"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[3,7.499999999999996,-7],"to":[4,8.5,-6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[4,1,5,2]},"east":{"uv":[4,1,5,2]},"south":{"uv":[4,1,5,2]},"west":{"uv":[4,1,5,2]},"up":{"uv":[5,2,4,1]},"down":{"uv":[5,2,4,1]}},"type":"cube","uuid":"c95430a1-5606-c74b-5b01-e0c62f5137a6"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[2,7.499999999999996,-7],"to":[3,8.5,-6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[5,1,6,2]},"east":{"uv":[5,1,6,2]},"south":{"uv":[5,1,6,2]},"west":{"uv":[5,1,6,2]},"up":{"uv":[6,2,5,1]},"down":{"uv":[6,2,5,1]}},"type":"cube","uuid":"4c65fd4e-599b-efd2-b6b3-f3ae6e315214"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[1,7.499999999999996,-7],"to":[2,8.5,-6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[6,1,7,2]},"east":{"uv":[6,1,7,2]},"south":{"uv":[6,1,7,2]},"west":{"uv":[6,1,7,2]},"up":{"uv":[7,2,6,1]},"down":{"uv":[7,2,6,1]}},"type":"cube","uuid":"db18733f-9a1c-9380-08f9-8671e1583e3b"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[0,7.499999999999996,-7],"to":[1,8.5,-6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[7,1,8,2]},"east":{"uv":[7,1,8,2]},"south":{"uv":[7,1,8,2]},"west":{"uv":[7,1,8,2]},"up":{"uv":[8,2,7,1]},"down":{"uv":[8,2,7,1]}},"type":"cube","uuid":"afc8444d-36d4-5538-da01-b122768f9ca9"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-1,7.499999999999996,-7],"to":[0,8.5,-6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[8,1,9,2]},"east":{"uv":[8,1,9,2]},"south":{"uv":[8,1,9,2]},"west":{"uv":[8,1,9,2]},"up":{"uv":[9,2,8,1]},"down":{"uv":[9,2,8,1]}},"type":"cube","uuid":"2f3a5e92-fb9e-8a83-40e7-3027f337a42b"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-2,7.499999999999996,-7],"to":[-1,8.5,-6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[9,1,10,2]},"east":{"uv":[9,1,10,2]},"south":{"uv":[9,1,10,2]},"west":{"uv":[9,1,10,2]},"up":{"uv":[10,2,9,1]},"down":{"uv":[10,2,9,1]}},"type":"cube","uuid":"553a6e96-0973-4166-ccc5-ac871d6fd222"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-3,7.499999999999996,-7],"to":[-2,8.5,-6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[10,1,11,2]},"east":{"uv":[10,1,11,2]},"south":{"uv":[10,1,11,2]},"west":{"uv":[10,1,11,2]},"up":{"uv":[11,2,10,1]},"down":{"uv":[11,2,10,1]}},"type":"cube","uuid":"83375f9f-bb3f-a378-15ac-296437c727d0"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-4,7.499999999999996,-7],"to":[-3,8.5,-6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[11,1,12,2]},"east":{"uv":[11,1,12,2]},"south":{"uv":[11,1,12,2]},"west":{"uv":[11,1,12,2]},"up":{"uv":[12,2,11,1]},"down":{"uv":[12,2,11,1]}},"type":"cube","uuid":"544dd0c6-2fe8-d5a2-7482-bd6b5f3a3e9c"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-5,7.499999999999996,-7],"to":[-4,8.5,-6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[12,1,13,2]},"east":{"uv":[12,1,13,2]},"south":{"uv":[12,1,13,2]},"west":{"uv":[12,1,13,2]},"up":{"uv":[13,2,12,1]},"down":{"uv":[13,2,12,1]}},"type":"cube","uuid":"edd5a44b-9965-4879-cc5e-8f954108eed1"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-6,7.499999999999996,-7],"to":[-5,8.5,-6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[13,1,14,2]},"east":{"uv":[13,1,14,2]},"south":{"uv":[13,1,14,2]},"west":{"uv":[13,1,14,2]},"up":{"uv":[14,2,13,1]},"down":{"uv":[14,2,13,1]}},"type":"cube","uuid":"9b6d8e02-5a21-fbad-25d3-648b7ea6d0d3"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-7,7.499999999999996,-7],"to":[-6,8.5,-6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[14,1,15,2]},"east":{"uv":[14,1,15,2]},"south":{"uv":[14,1,15,2]},"west":{"uv":[14,1,15,2]},"up":{"uv":[15,2,14,1]},"down":{"uv":[15,2,14,1]}},"type":"cube","uuid":"f19bdd0a-5aa5-2fbf-111d-7b5e191bd02a"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-8,7.499999999999996,-7],"to":[-7,8.5,-6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[15,1,16,2]},"east":{"uv":[15,1,16,2]},"south":{"uv":[15,1,16,2]},"west":{"uv":[15,1,16,2]},"up":{"uv":[16,2,15,1]},"down":{"uv":[16,2,15,1]}},"type":"cube","uuid":"5376060b-0552-c9d4-727e-26062a5001ce"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,7.499999999999996,-6],"to":[8,8.5,-5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[0,2,1,3]},"east":{"uv":[0,2,1,3]},"south":{"uv":[0,2,1,3]},"west":{"uv":[0,2,1,3]},"up":{"uv":[1,3,0,2]},"down":{"uv":[1,3,0,2]}},"type":"cube","uuid":"1bbad682-d214-9147-d8c6-2fd97475e0e0"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,7.499999999999996,-6],"to":[7,8.5,-5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[1,2,2,3]},"east":{"uv":[1,2,2,3]},"south":{"uv":[1,2,2,3]},"west":{"uv":[1,2,2,3]},"up":{"uv":[2,3,1,2]},"down":{"uv":[2,3,1,2]}},"type":"cube","uuid":"92ee46bf-d021-396a-4961-d8acc90b8b7e"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[5,7.499999999999996,-6],"to":[6,8.5,-5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[2,2,3,3]},"east":{"uv":[2,2,3,3]},"south":{"uv":[2,2,3,3]},"west":{"uv":[2,2,3,3]},"up":{"uv":[3,3,2,2]},"down":{"uv":[3,3,2,2]}},"type":"cube","uuid":"fd8eb484-2c05-f14a-6a1d-a8848b7cfe51"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[4,7.499999999999996,-6],"to":[5,8.5,-5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[3,2,4,3]},"east":{"uv":[3,2,4,3]},"south":{"uv":[3,2,4,3]},"west":{"uv":[3,2,4,3]},"up":{"uv":[4,3,3,2]},"down":{"uv":[4,3,3,2]}},"type":"cube","uuid":"d14fa986-680f-9559-27c1-2f124d9915bf"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[3,7.499999999999996,-6],"to":[4,8.5,-5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[4,2,5,3]},"east":{"uv":[4,2,5,3]},"south":{"uv":[4,2,5,3]},"west":{"uv":[4,2,5,3]},"up":{"uv":[5,3,4,2]},"down":{"uv":[5,3,4,2]}},"type":"cube","uuid":"f4712d00-c844-ab19-6b46-e524588b0a11"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[2,7.499999999999996,-6],"to":[3,8.5,-5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[5,2,6,3]},"east":{"uv":[5,2,6,3]},"south":{"uv":[5,2,6,3]},"west":{"uv":[5,2,6,3]},"up":{"uv":[6,3,5,2]},"down":{"uv":[6,3,5,2]}},"type":"cube","uuid":"0d4ca06d-8b3c-9197-6bca-a78f995ca931"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[1,7.499999999999996,-6],"to":[2,8.5,-5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[6,2,7,3]},"east":{"uv":[6,2,7,3]},"south":{"uv":[6,2,7,3]},"west":{"uv":[6,2,7,3]},"up":{"uv":[7,3,6,2]},"down":{"uv":[7,3,6,2]}},"type":"cube","uuid":"744d1ab8-81e3-c978-9d38-2d1280ae0f49"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[0,7.499999999999996,-6],"to":[1,8.5,-5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[7,2,8,3]},"east":{"uv":[7,2,8,3]},"south":{"uv":[7,2,8,3]},"west":{"uv":[7,2,8,3]},"up":{"uv":[8,3,7,2]},"down":{"uv":[8,3,7,2]}},"type":"cube","uuid":"86562656-45a1-d85b-315c-28e47c9b9813"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-1,7.499999999999996,-6],"to":[0,8.5,-5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[8,2,9,3]},"east":{"uv":[8,2,9,3]},"south":{"uv":[8,2,9,3]},"west":{"uv":[8,2,9,3]},"up":{"uv":[9,3,8,2]},"down":{"uv":[9,3,8,2]}},"type":"cube","uuid":"3c0a49cd-ff1f-6175-52fb-e51d57c837a7"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-2,7.499999999999996,-6],"to":[-1,8.5,-5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[9,2,10,3]},"east":{"uv":[9,2,10,3]},"south":{"uv":[9,2,10,3]},"west":{"uv":[9,2,10,3]},"up":{"uv":[10,3,9,2]},"down":{"uv":[10,3,9,2]}},"type":"cube","uuid":"d683d698-20ed-9c34-2de5-7d1500104334"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-3,7.499999999999996,-6],"to":[-2,8.5,-5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[10,2,11,3]},"east":{"uv":[10,2,11,3]},"south":{"uv":[10,2,11,3]},"west":{"uv":[10,2,11,3]},"up":{"uv":[11,3,10,2]},"down":{"uv":[11,3,10,2]}},"type":"cube","uuid":"a298448c-40f0-6943-eed4-6a74d3f530dc"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-4,7.499999999999996,-6],"to":[-3,8.5,-5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[11,2,12,3]},"east":{"uv":[11,2,12,3]},"south":{"uv":[11,2,12,3]},"west":{"uv":[11,2,12,3]},"up":{"uv":[12,3,11,2]},"down":{"uv":[12,3,11,2]}},"type":"cube","uuid":"e406dbea-f69a-c9c6-c0ca-b0f046dde8b3"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-5,7.499999999999996,-6],"to":[-4,8.5,-5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[12,2,13,3]},"east":{"uv":[12,2,13,3]},"south":{"uv":[12,2,13,3]},"west":{"uv":[12,2,13,3]},"up":{"uv":[13,3,12,2]},"down":{"uv":[13,3,12,2]}},"type":"cube","uuid":"4f7e3526-27ac-fbad-5fa8-0bf1efe15bd6"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-6,7.499999999999996,-6],"to":[-5,8.5,-5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[13,2,14,3]},"east":{"uv":[13,2,14,3]},"south":{"uv":[13,2,14,3]},"west":{"uv":[13,2,14,3]},"up":{"uv":[14,3,13,2]},"down":{"uv":[14,3,13,2]}},"type":"cube","uuid":"612547ab-bd82-4759-2eb7-777303c5af36"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-7,7.499999999999996,-6],"to":[-6,8.5,-5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[14,2,15,3]},"east":{"uv":[14,2,15,3]},"south":{"uv":[14,2,15,3]},"west":{"uv":[14,2,15,3]},"up":{"uv":[15,3,14,2]},"down":{"uv":[15,3,14,2]}},"type":"cube","uuid":"15031b6f-dcb3-e2c2-3674-7c56d7a4db80"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-8,7.499999999999996,-6],"to":[-7,8.5,-5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[15,2,16,3]},"east":{"uv":[15,2,16,3]},"south":{"uv":[15,2,16,3]},"west":{"uv":[15,2,16,3]},"up":{"uv":[16,3,15,2]},"down":{"uv":[16,3,15,2]}},"type":"cube","uuid":"dec9fc46-795e-ff33-aa4f-5a5383240992"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,7.499999999999996,-5],"to":[8,8.5,-4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[0,3,1,4]},"east":{"uv":[0,3,1,4]},"south":{"uv":[0,3,1,4]},"west":{"uv":[0,3,1,4]},"up":{"uv":[1,4,0,3]},"down":{"uv":[1,4,0,3]}},"type":"cube","uuid":"4a6d5c92-7c48-08ee-4203-1e9315391bf5"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,7.499999999999996,-5],"to":[7,8.5,-4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[1,3,2,4]},"east":{"uv":[1,3,2,4]},"south":{"uv":[1,3,2,4]},"west":{"uv":[1,3,2,4]},"up":{"uv":[2,4,1,3]},"down":{"uv":[2,4,1,3]}},"type":"cube","uuid":"c72829c1-c15c-586e-8595-11ffe1cc5aaf"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[5,7.499999999999996,-5],"to":[6,8.5,-4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[2,3,3,4]},"east":{"uv":[2,3,3,4]},"south":{"uv":[2,3,3,4]},"west":{"uv":[2,3,3,4]},"up":{"uv":[3,4,2,3]},"down":{"uv":[3,4,2,3]}},"type":"cube","uuid":"1867ba53-eaee-ff3a-ed45-32424da5c677"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[4,7.499999999999996,-5],"to":[5,8.5,-4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[3,3,4,4]},"east":{"uv":[3,3,4,4]},"south":{"uv":[3,3,4,4]},"west":{"uv":[3,3,4,4]},"up":{"uv":[4,4,3,3]},"down":{"uv":[4,4,3,3]}},"type":"cube","uuid":"1226c4fc-11c4-d692-ef9f-7f00f430a71c"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[3,7.499999999999996,-5],"to":[4,8.5,-4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[4,3,5,4]},"east":{"uv":[4,3,5,4]},"south":{"uv":[4,3,5,4]},"west":{"uv":[4,3,5,4]},"up":{"uv":[5,4,4,3]},"down":{"uv":[5,4,4,3]}},"type":"cube","uuid":"e8821c17-70ac-e078-ddbb-84ff4ab3a70c"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[2,7.499999999999996,-5],"to":[3,8.5,-4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[5,3,6,4]},"east":{"uv":[5,3,6,4]},"south":{"uv":[5,3,6,4]},"west":{"uv":[5,3,6,4]},"up":{"uv":[6,4,5,3]},"down":{"uv":[6,4,5,3]}},"type":"cube","uuid":"3cb5ca3a-d203-65b7-b951-bdb03721f92e"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[1,7.499999999999996,-5],"to":[2,8.5,-4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[6,3,7,4]},"east":{"uv":[6,3,7,4]},"south":{"uv":[6,3,7,4]},"west":{"uv":[6,3,7,4]},"up":{"uv":[7,4,6,3]},"down":{"uv":[7,4,6,3]}},"type":"cube","uuid":"c51214c8-d7fb-7860-1977-8d1c155e8514"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[0,7.499999999999996,-5],"to":[1,8.5,-4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[7,3,8,4]},"east":{"uv":[7,3,8,4]},"south":{"uv":[7,3,8,4]},"west":{"uv":[7,3,8,4]},"up":{"uv":[8,4,7,3]},"down":{"uv":[8,4,7,3]}},"type":"cube","uuid":"13a3cbb5-c88f-5424-03ef-85da5c729766"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-1,7.499999999999996,-5],"to":[0,8.5,-4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[8,3,9,4]},"east":{"uv":[8,3,9,4]},"south":{"uv":[8,3,9,4]},"west":{"uv":[8,3,9,4]},"up":{"uv":[9,4,8,3]},"down":{"uv":[9,4,8,3]}},"type":"cube","uuid":"b06a7327-6db6-d1f9-5368-c86a52144f58"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-2,7.499999999999996,-5],"to":[-1,8.5,-4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[9,3,10,4]},"east":{"uv":[9,3,10,4]},"south":{"uv":[9,3,10,4]},"west":{"uv":[9,3,10,4]},"up":{"uv":[10,4,9,3]},"down":{"uv":[10,4,9,3]}},"type":"cube","uuid":"c3f74058-438b-c2bc-bbe0-3103c887bf9c"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-3,7.499999999999996,-5],"to":[-2,8.5,-4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[10,3,11,4]},"east":{"uv":[10,3,11,4]},"south":{"uv":[10,3,11,4]},"west":{"uv":[10,3,11,4]},"up":{"uv":[11,4,10,3]},"down":{"uv":[11,4,10,3]}},"type":"cube","uuid":"9bc7f637-a1ac-6f7c-b62d-a5203a75b80b"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-4,7.499999999999996,-5],"to":[-3,8.5,-4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[11,3,12,4]},"east":{"uv":[11,3,12,4]},"south":{"uv":[11,3,12,4]},"west":{"uv":[11,3,12,4]},"up":{"uv":[12,4,11,3]},"down":{"uv":[12,4,11,3]}},"type":"cube","uuid":"70f006c1-ba82-0c0a-d0a4-bd7599a48852"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-5,7.499999999999996,-5],"to":[-4,8.5,-4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[12,3,13,4]},"east":{"uv":[12,3,13,4]},"south":{"uv":[12,3,13,4]},"west":{"uv":[12,3,13,4]},"up":{"uv":[13,4,12,3]},"down":{"uv":[13,4,12,3]}},"type":"cube","uuid":"74ad2ca7-be87-8a85-6b3b-2e5bedbf7370"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-6,7.499999999999996,-5],"to":[-5,8.5,-4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[13,3,14,4]},"east":{"uv":[13,3,14,4]},"south":{"uv":[13,3,14,4]},"west":{"uv":[13,3,14,4]},"up":{"uv":[14,4,13,3]},"down":{"uv":[14,4,13,3]}},"type":"cube","uuid":"6dce1ee5-9355-bba4-c863-8432540563f8"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-7,7.499999999999996,-5],"to":[-6,8.5,-4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[14,3,15,4]},"east":{"uv":[14,3,15,4]},"south":{"uv":[14,3,15,4]},"west":{"uv":[14,3,15,4]},"up":{"uv":[15,4,14,3]},"down":{"uv":[15,4,14,3]}},"type":"cube","uuid":"2d21d1b3-6f27-1f73-817a-466af75c3591"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-8,7.499999999999996,-5],"to":[-7,8.5,-4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[15,3,16,4]},"east":{"uv":[15,3,16,4]},"south":{"uv":[15,3,16,4]},"west":{"uv":[15,3,16,4]},"up":{"uv":[16,4,15,3]},"down":{"uv":[16,4,15,3]}},"type":"cube","uuid":"2375570a-8605-33ce-93a9-cfb9bf801a7f"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,7.499999999999996,-4],"to":[8,8.5,-3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[0,4,1,5]},"east":{"uv":[0,4,1,5]},"south":{"uv":[0,4,1,5]},"west":{"uv":[0,4,1,5]},"up":{"uv":[1,5,0,4]},"down":{"uv":[1,5,0,4]}},"type":"cube","uuid":"0c611422-b3b2-6053-b758-751a6108bb23"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,7.499999999999996,-4],"to":[7,8.5,-3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[1,4,2,5]},"east":{"uv":[1,4,2,5]},"south":{"uv":[1,4,2,5]},"west":{"uv":[1,4,2,5]},"up":{"uv":[2,5,1,4]},"down":{"uv":[2,5,1,4]}},"type":"cube","uuid":"c62ba344-fd69-ec0c-e9a2-05c409e1e49f"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[5,7.499999999999996,-4],"to":[6,8.5,-3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[2,4,3,5]},"east":{"uv":[2,4,3,5]},"south":{"uv":[2,4,3,5]},"west":{"uv":[2,4,3,5]},"up":{"uv":[3,5,2,4]},"down":{"uv":[3,5,2,4]}},"type":"cube","uuid":"40a63562-3a1a-cfbd-af74-1021fb7ebe82"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[4,7.499999999999996,-4],"to":[5,8.5,-3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[3,4,4,5]},"east":{"uv":[3,4,4,5]},"south":{"uv":[3,4,4,5]},"west":{"uv":[3,4,4,5]},"up":{"uv":[4,5,3,4]},"down":{"uv":[4,5,3,4]}},"type":"cube","uuid":"b1ab6180-354d-3db8-5a60-344d026cc070"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[3,7.499999999999996,-4],"to":[4,8.5,-3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[4,4,5,5]},"east":{"uv":[4,4,5,5]},"south":{"uv":[4,4,5,5]},"west":{"uv":[4,4,5,5]},"up":{"uv":[5,5,4,4]},"down":{"uv":[5,5,4,4]}},"type":"cube","uuid":"768a57a8-7f8a-2f6e-0b89-6ceab1205708"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[2,7.499999999999996,-4],"to":[3,8.5,-3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[5,4,6,5]},"east":{"uv":[5,4,6,5]},"south":{"uv":[5,4,6,5]},"west":{"uv":[5,4,6,5]},"up":{"uv":[6,5,5,4]},"down":{"uv":[6,5,5,4]}},"type":"cube","uuid":"8675c900-075e-b615-bf9a-69dba6607a83"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[1,7.499999999999996,-4],"to":[2,8.5,-3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[6,4,7,5]},"east":{"uv":[6,4,7,5]},"south":{"uv":[6,4,7,5]},"west":{"uv":[6,4,7,5]},"up":{"uv":[7,5,6,4]},"down":{"uv":[7,5,6,4]}},"type":"cube","uuid":"e6a38e54-bf72-675b-59db-abc12a6581f1"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[0,7.499999999999996,-4],"to":[1,8.5,-3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[7,4,8,5]},"east":{"uv":[7,4,8,5]},"south":{"uv":[7,4,8,5]},"west":{"uv":[7,4,8,5]},"up":{"uv":[8,5,7,4]},"down":{"uv":[8,5,7,4]}},"type":"cube","uuid":"0f7345b7-226c-576a-20c1-2740bd75ed19"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-1,7.499999999999996,-4],"to":[0,8.5,-3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[8,4,9,5]},"east":{"uv":[8,4,9,5]},"south":{"uv":[8,4,9,5]},"west":{"uv":[8,4,9,5]},"up":{"uv":[9,5,8,4]},"down":{"uv":[9,5,8,4]}},"type":"cube","uuid":"4cd272fd-353b-805d-e243-7e8b7abb627a"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-2,7.499999999999996,-4],"to":[-1,8.5,-3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[9,4,10,5]},"east":{"uv":[9,4,10,5]},"south":{"uv":[9,4,10,5]},"west":{"uv":[9,4,10,5]},"up":{"uv":[10,5,9,4]},"down":{"uv":[10,5,9,4]}},"type":"cube","uuid":"9e742857-dd1c-e195-b919-6b0c14023fae"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-3,7.499999999999996,-4],"to":[-2,8.5,-3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[10,4,11,5]},"east":{"uv":[10,4,11,5]},"south":{"uv":[10,4,11,5]},"west":{"uv":[10,4,11,5]},"up":{"uv":[11,5,10,4]},"down":{"uv":[11,5,10,4]}},"type":"cube","uuid":"de72c18e-5466-3be3-adc6-1c0bc3faf739"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-4,7.499999999999996,-4],"to":[-3,8.5,-3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[11,4,12,5]},"east":{"uv":[11,4,12,5]},"south":{"uv":[11,4,12,5]},"west":{"uv":[11,4,12,5]},"up":{"uv":[12,5,11,4]},"down":{"uv":[12,5,11,4]}},"type":"cube","uuid":"34075079-0973-5227-2afb-ad8eb691ff18"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-5,7.499999999999996,-4],"to":[-4,8.5,-3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[12,4,13,5]},"east":{"uv":[12,4,13,5]},"south":{"uv":[12,4,13,5]},"west":{"uv":[12,4,13,5]},"up":{"uv":[13,5,12,4]},"down":{"uv":[13,5,12,4]}},"type":"cube","uuid":"2d12a42a-90a7-f87f-1dc8-a518dbc999ba"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-6,7.499999999999996,-4],"to":[-5,8.5,-3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[13,4,14,5]},"east":{"uv":[13,4,14,5]},"south":{"uv":[13,4,14,5]},"west":{"uv":[13,4,14,5]},"up":{"uv":[14,5,13,4]},"down":{"uv":[14,5,13,4]}},"type":"cube","uuid":"941d9cb2-9874-b7ee-5194-7e1a5aca7bd2"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-7,7.499999999999996,-4],"to":[-6,8.5,-3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[14,4,15,5]},"east":{"uv":[14,4,15,5]},"south":{"uv":[14,4,15,5]},"west":{"uv":[14,4,15,5]},"up":{"uv":[15,5,14,4]},"down":{"uv":[15,5,14,4]}},"type":"cube","uuid":"2460ac8a-418b-4115-63c0-2b83e4e6f0e3"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-8,7.499999999999996,-4],"to":[-7,8.5,-3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[15,4,16,5]},"east":{"uv":[15,4,16,5]},"south":{"uv":[15,4,16,5]},"west":{"uv":[15,4,16,5]},"up":{"uv":[16,5,15,4]},"down":{"uv":[16,5,15,4]}},"type":"cube","uuid":"3f56a4e4-1007-935b-e50b-2effd66e4287"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,7.499999999999996,-3],"to":[8,8.5,-2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[0,5,1,6]},"east":{"uv":[0,5,1,6]},"south":{"uv":[0,5,1,6]},"west":{"uv":[0,5,1,6]},"up":{"uv":[1,6,0,5]},"down":{"uv":[1,6,0,5]}},"type":"cube","uuid":"0b3893ef-30cf-e23a-5691-5417e73c5c27"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,7.499999999999996,-3],"to":[7,8.5,-2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[1,5,2,6]},"east":{"uv":[1,5,2,6]},"south":{"uv":[1,5,2,6]},"west":{"uv":[1,5,2,6]},"up":{"uv":[2,6,1,5]},"down":{"uv":[2,6,1,5]}},"type":"cube","uuid":"351df60a-6a2c-9f59-cfd7-db9c2120ddab"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[5,7.499999999999996,-3],"to":[6,8.5,-2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[2,5,3,6]},"east":{"uv":[2,5,3,6]},"south":{"uv":[2,5,3,6]},"west":{"uv":[2,5,3,6]},"up":{"uv":[3,6,2,5]},"down":{"uv":[3,6,2,5]}},"type":"cube","uuid":"f2c3b949-7bbd-fa88-f0be-78100d665527"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[4,7.499999999999996,-3],"to":[5,8.5,-2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[3,5,4,6]},"east":{"uv":[3,5,4,6]},"south":{"uv":[3,5,4,6]},"west":{"uv":[3,5,4,6]},"up":{"uv":[4,6,3,5]},"down":{"uv":[4,6,3,5]}},"type":"cube","uuid":"d5b7f13a-4723-5dcf-46bc-be076e9c15e2"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[3,7.499999999999996,-3],"to":[4,8.5,-2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[4,5,5,6]},"east":{"uv":[4,5,5,6]},"south":{"uv":[4,5,5,6]},"west":{"uv":[4,5,5,6]},"up":{"uv":[5,6,4,5]},"down":{"uv":[5,6,4,5]}},"type":"cube","uuid":"03953d31-2448-ddcb-279c-b1a056f98e64"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[2,7.499999999999996,-3],"to":[3,8.5,-2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[5,5,6,6]},"east":{"uv":[5,5,6,6]},"south":{"uv":[5,5,6,6]},"west":{"uv":[5,5,6,6]},"up":{"uv":[6,6,5,5]},"down":{"uv":[6,6,5,5]}},"type":"cube","uuid":"3dd746ac-647d-a53d-6a00-f94a2e4650f7"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[1,7.499999999999996,-3],"to":[2,8.5,-2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[6,5,7,6]},"east":{"uv":[6,5,7,6]},"south":{"uv":[6,5,7,6]},"west":{"uv":[6,5,7,6]},"up":{"uv":[7,6,6,5]},"down":{"uv":[7,6,6,5]}},"type":"cube","uuid":"dd8f9e76-fcbd-be13-a067-ea80fe55f059"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[0,7.499999999999996,-3],"to":[1,8.5,-2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[7,5,8,6]},"east":{"uv":[7,5,8,6]},"south":{"uv":[7,5,8,6]},"west":{"uv":[7,5,8,6]},"up":{"uv":[8,6,7,5]},"down":{"uv":[8,6,7,5]}},"type":"cube","uuid":"34fa5b81-c7d2-9039-b861-da8ae2e23ecf"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-1,7.499999999999996,-3],"to":[0,8.5,-2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[8,5,9,6]},"east":{"uv":[8,5,9,6]},"south":{"uv":[8,5,9,6]},"west":{"uv":[8,5,9,6]},"up":{"uv":[9,6,8,5]},"down":{"uv":[9,6,8,5]}},"type":"cube","uuid":"c0cb63d7-aca6-62dc-613d-f3bdc333f135"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-2,7.499999999999996,-3],"to":[-1,8.5,-2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[9,5,10,6]},"east":{"uv":[9,5,10,6]},"south":{"uv":[9,5,10,6]},"west":{"uv":[9,5,10,6]},"up":{"uv":[10,6,9,5]},"down":{"uv":[10,6,9,5]}},"type":"cube","uuid":"2adcc0de-542f-b0a4-bb26-cee7120afe04"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-3,7.499999999999996,-3],"to":[-2,8.5,-2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[10,5,11,6]},"east":{"uv":[10,5,11,6]},"south":{"uv":[10,5,11,6]},"west":{"uv":[10,5,11,6]},"up":{"uv":[11,6,10,5]},"down":{"uv":[11,6,10,5]}},"type":"cube","uuid":"6eb39984-7f9d-bddb-45a9-e4e251b03726"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-4,7.499999999999996,-3],"to":[-3,8.5,-2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[11,5,12,6]},"east":{"uv":[11,5,12,6]},"south":{"uv":[11,5,12,6]},"west":{"uv":[11,5,12,6]},"up":{"uv":[12,6,11,5]},"down":{"uv":[12,6,11,5]}},"type":"cube","uuid":"f45970db-398b-ca07-8187-77fedde892fb"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-5,7.499999999999996,-3],"to":[-4,8.5,-2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[12,5,13,6]},"east":{"uv":[12,5,13,6]},"south":{"uv":[12,5,13,6]},"west":{"uv":[12,5,13,6]},"up":{"uv":[13,6,12,5]},"down":{"uv":[13,6,12,5]}},"type":"cube","uuid":"6c4a97d5-101b-59a5-9500-2566669c8e66"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-6,7.499999999999996,-3],"to":[-5,8.5,-2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[13,5,14,6]},"east":{"uv":[13,5,14,6]},"south":{"uv":[13,5,14,6]},"west":{"uv":[13,5,14,6]},"up":{"uv":[14,6,13,5]},"down":{"uv":[14,6,13,5]}},"type":"cube","uuid":"27ef59f4-23b6-8246-5c45-0be7ac09a825"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-7,7.499999999999996,-3],"to":[-6,8.5,-2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[14,5,15,6]},"east":{"uv":[14,5,15,6]},"south":{"uv":[14,5,15,6]},"west":{"uv":[14,5,15,6]},"up":{"uv":[15,6,14,5]},"down":{"uv":[15,6,14,5]}},"type":"cube","uuid":"e4b3929e-b418-9d0a-4279-ae90cccb5f3d"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-8,7.499999999999996,-3],"to":[-7,8.5,-2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[15,5,16,6]},"east":{"uv":[15,5,16,6]},"south":{"uv":[15,5,16,6]},"west":{"uv":[15,5,16,6]},"up":{"uv":[16,6,15,5]},"down":{"uv":[16,6,15,5]}},"type":"cube","uuid":"3c1f0536-143e-91af-a4d3-7d0a6ae31240"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,7.499999999999996,-2],"to":[8,8.5,-1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[0,6,1,7]},"east":{"uv":[0,6,1,7]},"south":{"uv":[0,6,1,7]},"west":{"uv":[0,6,1,7]},"up":{"uv":[1,7,0,6]},"down":{"uv":[1,7,0,6]}},"type":"cube","uuid":"a8d69535-ba54-0377-737e-9b2c14a152fc"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,7.499999999999996,-2],"to":[7,8.5,-1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[1,6,2,7]},"east":{"uv":[1,6,2,7]},"south":{"uv":[1,6,2,7]},"west":{"uv":[1,6,2,7]},"up":{"uv":[2,7,1,6]},"down":{"uv":[2,7,1,6]}},"type":"cube","uuid":"1e3f7389-1d2a-a573-c995-00ce32ca81a8"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[5,7.499999999999996,-2],"to":[6,8.5,-1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[2,6,3,7]},"east":{"uv":[2,6,3,7]},"south":{"uv":[2,6,3,7]},"west":{"uv":[2,6,3,7]},"up":{"uv":[3,7,2,6]},"down":{"uv":[3,7,2,6]}},"type":"cube","uuid":"ac07c914-78b3-458e-613e-f1861bee4733"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[4,7.499999999999996,-2],"to":[5,8.5,-1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[3,6,4,7]},"east":{"uv":[3,6,4,7]},"south":{"uv":[3,6,4,7]},"west":{"uv":[3,6,4,7]},"up":{"uv":[4,7,3,6]},"down":{"uv":[4,7,3,6]}},"type":"cube","uuid":"2ee0aa99-697a-893d-4422-40e4c7401b66"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[3,7.499999999999996,-2],"to":[4,8.5,-1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[4,6,5,7]},"east":{"uv":[4,6,5,7]},"south":{"uv":[4,6,5,7]},"west":{"uv":[4,6,5,7]},"up":{"uv":[5,7,4,6]},"down":{"uv":[5,7,4,6]}},"type":"cube","uuid":"362979e0-dbb2-5ed5-a89b-0c01fffa53b7"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[2,7.499999999999996,-2],"to":[3,8.5,-1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[5,6,6,7]},"east":{"uv":[5,6,6,7]},"south":{"uv":[5,6,6,7]},"west":{"uv":[5,6,6,7]},"up":{"uv":[6,7,5,6]},"down":{"uv":[6,7,5,6]}},"type":"cube","uuid":"cb85ee1f-9481-f488-7b64-9d9fb69d0e5e"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[1,7.499999999999996,-2],"to":[2,8.5,-1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[6,6,7,7]},"east":{"uv":[6,6,7,7]},"south":{"uv":[6,6,7,7]},"west":{"uv":[6,6,7,7]},"up":{"uv":[7,7,6,6]},"down":{"uv":[7,7,6,6]}},"type":"cube","uuid":"957d4dd1-395b-c1cb-7ba2-1657c24c03fb"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[0,7.499999999999996,-2],"to":[1,8.5,-1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[7,6,8,7]},"east":{"uv":[7,6,8,7]},"south":{"uv":[7,6,8,7]},"west":{"uv":[7,6,8,7]},"up":{"uv":[8,7,7,6]},"down":{"uv":[8,7,7,6]}},"type":"cube","uuid":"72feedf9-f400-1da6-8a1c-8aea7f30574b"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-1,7.499999999999996,-2],"to":[0,8.5,-1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[8,6,9,7]},"east":{"uv":[8,6,9,7]},"south":{"uv":[8,6,9,7]},"west":{"uv":[8,6,9,7]},"up":{"uv":[9,7,8,6]},"down":{"uv":[9,7,8,6]}},"type":"cube","uuid":"a71fe557-6967-fa0e-8393-dff59664b449"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-2,7.499999999999996,-2],"to":[-1,8.5,-1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[9,6,10,7]},"east":{"uv":[9,6,10,7]},"south":{"uv":[9,6,10,7]},"west":{"uv":[9,6,10,7]},"up":{"uv":[10,7,9,6]},"down":{"uv":[10,7,9,6]}},"type":"cube","uuid":"207902b2-c4d5-85df-38fb-8aa2aa0bb3a8"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-3,7.499999999999996,-2],"to":[-2,8.5,-1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[10,6,11,7]},"east":{"uv":[10,6,11,7]},"south":{"uv":[10,6,11,7]},"west":{"uv":[10,6,11,7]},"up":{"uv":[11,7,10,6]},"down":{"uv":[11,7,10,6]}},"type":"cube","uuid":"6a75f72b-3b9e-1824-a19a-41ceec757bd0"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-4,7.499999999999996,-2],"to":[-3,8.5,-1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[11,6,12,7]},"east":{"uv":[11,6,12,7]},"south":{"uv":[11,6,12,7]},"west":{"uv":[11,6,12,7]},"up":{"uv":[12,7,11,6]},"down":{"uv":[12,7,11,6]}},"type":"cube","uuid":"2dc5dcb6-e51b-6f92-10e8-d1d7b45d3dee"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-5,7.499999999999996,-2],"to":[-4,8.5,-1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[12,6,13,7]},"east":{"uv":[12,6,13,7]},"south":{"uv":[12,6,13,7]},"west":{"uv":[12,6,13,7]},"up":{"uv":[13,7,12,6]},"down":{"uv":[13,7,12,6]}},"type":"cube","uuid":"379d09ea-8fe9-6efe-a1ee-d1dff32e7171"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-6,7.499999999999996,-2],"to":[-5,8.5,-1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[13,6,14,7]},"east":{"uv":[13,6,14,7]},"south":{"uv":[13,6,14,7]},"west":{"uv":[13,6,14,7]},"up":{"uv":[14,7,13,6]},"down":{"uv":[14,7,13,6]}},"type":"cube","uuid":"76234f5e-255a-3cd5-11c5-15d24cecfa44"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-7,7.499999999999996,-2],"to":[-6,8.5,-1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[14,6,15,7]},"east":{"uv":[14,6,15,7]},"south":{"uv":[14,6,15,7]},"west":{"uv":[14,6,15,7]},"up":{"uv":[15,7,14,6]},"down":{"uv":[15,7,14,6]}},"type":"cube","uuid":"98446dbf-9adf-59a2-6174-93653c9e5d38"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-8,7.499999999999996,-2],"to":[-7,8.5,-1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[15,6,16,7]},"east":{"uv":[15,6,16,7]},"south":{"uv":[15,6,16,7]},"west":{"uv":[15,6,16,7]},"up":{"uv":[16,7,15,6]},"down":{"uv":[16,7,15,6]}},"type":"cube","uuid":"beca3c98-1c87-4750-d453-dafd488f19bc"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,7.499999999999996,-1],"to":[8,8.5,0],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[0,7,1,8]},"east":{"uv":[0,7,1,8]},"south":{"uv":[0,7,1,8]},"west":{"uv":[0,7,1,8]},"up":{"uv":[1,8,0,7]},"down":{"uv":[1,8,0,7]}},"type":"cube","uuid":"45a3d4d8-d328-9e47-4721-cf2df86e6bda"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,7.499999999999996,-1],"to":[7,8.5,0],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[1,7,2,8]},"east":{"uv":[1,7,2,8]},"south":{"uv":[1,7,2,8]},"west":{"uv":[1,7,2,8]},"up":{"uv":[2,8,1,7]},"down":{"uv":[2,8,1,7]}},"type":"cube","uuid":"ebcc19bc-6cdf-1327-d8dc-ac05b86d1b4f"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[5,7.499999999999996,-1],"to":[6,8.5,0],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[2,7,3,8]},"east":{"uv":[2,7,3,8]},"south":{"uv":[2,7,3,8]},"west":{"uv":[2,7,3,8]},"up":{"uv":[3,8,2,7]},"down":{"uv":[3,8,2,7]}},"type":"cube","uuid":"0270f2d0-8c8f-cb35-0441-d8314a9a7204"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[4,7.499999999999996,-1],"to":[5,8.5,0],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[3,7,4,8]},"east":{"uv":[3,7,4,8]},"south":{"uv":[3,7,4,8]},"west":{"uv":[3,7,4,8]},"up":{"uv":[4,8,3,7]},"down":{"uv":[4,8,3,7]}},"type":"cube","uuid":"328b34dd-1749-5ca2-fa5b-97f7fd88d2eb"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[3,7.499999999999996,-1],"to":[4,8.5,0],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[4,7,5,8]},"east":{"uv":[4,7,5,8]},"south":{"uv":[4,7,5,8]},"west":{"uv":[4,7,5,8]},"up":{"uv":[5,8,4,7]},"down":{"uv":[5,8,4,7]}},"type":"cube","uuid":"9a75fba5-b8ec-59b9-9c5b-632811517724"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[2,7.499999999999996,-1],"to":[3,8.5,0],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[5,7,6,8]},"east":{"uv":[5,7,6,8]},"south":{"uv":[5,7,6,8]},"west":{"uv":[5,7,6,8]},"up":{"uv":[6,8,5,7]},"down":{"uv":[6,8,5,7]}},"type":"cube","uuid":"593e9013-1f16-b09c-ed07-ee6167bd7076"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[1,7.499999999999996,-1],"to":[2,8.5,0],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[6,7,7,8]},"east":{"uv":[6,7,7,8]},"south":{"uv":[6,7,7,8]},"west":{"uv":[6,7,7,8]},"up":{"uv":[7,8,6,7]},"down":{"uv":[7,8,6,7]}},"type":"cube","uuid":"8ec5fde7-3f09-6c5d-bc5b-e23410a805ff"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[0,7.499999999999996,-1],"to":[1,8.5,0],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[7,7,8,8]},"east":{"uv":[7,7,8,8]},"south":{"uv":[7,7,8,8]},"west":{"uv":[7,7,8,8]},"up":{"uv":[8,8,7,7]},"down":{"uv":[8,8,7,7]}},"type":"cube","uuid":"ba9a812b-ed54-0ff0-d717-90bc5721c7e9"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-1,7.499999999999996,-1],"to":[0,8.5,0],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[8,7,9,8]},"east":{"uv":[8,7,9,8]},"south":{"uv":[8,7,9,8]},"west":{"uv":[8,7,9,8]},"up":{"uv":[9,8,8,7]},"down":{"uv":[9,8,8,7]}},"type":"cube","uuid":"d4d49ae1-6eea-fd40-5ec5-be5db8e33ccd"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-2,7.499999999999996,-1],"to":[-1,8.5,0],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[9,7,10,8]},"east":{"uv":[9,7,10,8]},"south":{"uv":[9,7,10,8]},"west":{"uv":[9,7,10,8]},"up":{"uv":[10,8,9,7]},"down":{"uv":[10,8,9,7]}},"type":"cube","uuid":"cb0fe6cd-e67b-6976-0124-22b27fb79a59"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-3,7.499999999999996,-1],"to":[-2,8.5,0],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[10,7,11,8]},"east":{"uv":[10,7,11,8]},"south":{"uv":[10,7,11,8]},"west":{"uv":[10,7,11,8]},"up":{"uv":[11,8,10,7]},"down":{"uv":[11,8,10,7]}},"type":"cube","uuid":"cadb9571-8b0c-a225-cb09-6321e82c447f"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-4,7.499999999999996,-1],"to":[-3,8.5,0],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[11,7,12,8]},"east":{"uv":[11,7,12,8]},"south":{"uv":[11,7,12,8]},"west":{"uv":[11,7,12,8]},"up":{"uv":[12,8,11,7]},"down":{"uv":[12,8,11,7]}},"type":"cube","uuid":"5bb9245f-b176-2525-3777-f2c796474478"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-5,7.499999999999996,-1],"to":[-4,8.5,0],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[12,7,13,8]},"east":{"uv":[12,7,13,8]},"south":{"uv":[12,7,13,8]},"west":{"uv":[12,7,13,8]},"up":{"uv":[13,8,12,7]},"down":{"uv":[13,8,12,7]}},"type":"cube","uuid":"f79433a5-2908-a3a2-90b0-c6974e3e051e"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-6,7.499999999999996,-1],"to":[-5,8.5,0],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[13,7,14,8]},"east":{"uv":[13,7,14,8]},"south":{"uv":[13,7,14,8]},"west":{"uv":[13,7,14,8]},"up":{"uv":[14,8,13,7]},"down":{"uv":[14,8,13,7]}},"type":"cube","uuid":"72e9fa9b-81fc-92b4-b90b-2811925304c2"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-7,7.499999999999996,-1],"to":[-6,8.5,0],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[14,7,15,8]},"east":{"uv":[14,7,15,8]},"south":{"uv":[14,7,15,8]},"west":{"uv":[14,7,15,8]},"up":{"uv":[15,8,14,7]},"down":{"uv":[15,8,14,7]}},"type":"cube","uuid":"75693ad5-c525-ae50-0e13-c84dc3007876"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-8,7.499999999999996,-1],"to":[-7,8.5,0],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[15,7,16,8]},"east":{"uv":[15,7,16,8]},"south":{"uv":[15,7,16,8]},"west":{"uv":[15,7,16,8]},"up":{"uv":[16,8,15,7]},"down":{"uv":[16,8,15,7]}},"type":"cube","uuid":"3fac3901-1fab-b9b5-322b-0d1d1ef51595"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,7.499999999999996,0],"to":[8,8.5,1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[0,8,1,9]},"east":{"uv":[0,8,1,9]},"south":{"uv":[0,8,1,9]},"west":{"uv":[0,8,1,9]},"up":{"uv":[1,9,0,8]},"down":{"uv":[1,9,0,8]}},"type":"cube","uuid":"d2f3200a-d792-8e2b-bea2-ddf710ed369e"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,7.499999999999996,0],"to":[7,8.5,1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[1,8,2,9]},"east":{"uv":[1,8,2,9]},"south":{"uv":[1,8,2,9]},"west":{"uv":[1,8,2,9]},"up":{"uv":[2,9,1,8]},"down":{"uv":[2,9,1,8]}},"type":"cube","uuid":"d0d0210e-58fa-08f1-1c2d-a97ffd8c4243"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[5,7.499999999999996,0],"to":[6,8.5,1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[2,8,3,9]},"east":{"uv":[2,8,3,9]},"south":{"uv":[2,8,3,9]},"west":{"uv":[2,8,3,9]},"up":{"uv":[3,9,2,8]},"down":{"uv":[3,9,2,8]}},"type":"cube","uuid":"dedb6a10-013d-7ffe-96b0-5f4a29f72fe4"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[4,7.499999999999996,0],"to":[5,8.5,1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[3,8,4,9]},"east":{"uv":[3,8,4,9]},"south":{"uv":[3,8,4,9]},"west":{"uv":[3,8,4,9]},"up":{"uv":[4,9,3,8]},"down":{"uv":[4,9,3,8]}},"type":"cube","uuid":"c001bdce-f705-b31d-caf4-88a1d36f8fd3"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[3,7.499999999999996,0],"to":[4,8.5,1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[4,8,5,9]},"east":{"uv":[4,8,5,9]},"south":{"uv":[4,8,5,9]},"west":{"uv":[4,8,5,9]},"up":{"uv":[5,9,4,8]},"down":{"uv":[5,9,4,8]}},"type":"cube","uuid":"8d1e09d9-988b-64a9-c1f2-4422421c044f"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[2,7.499999999999996,0],"to":[3,8.5,1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[5,8,6,9]},"east":{"uv":[5,8,6,9]},"south":{"uv":[5,8,6,9]},"west":{"uv":[5,8,6,9]},"up":{"uv":[6,9,5,8]},"down":{"uv":[6,9,5,8]}},"type":"cube","uuid":"18dd114c-d002-bee6-343a-cda1ee6e56fd"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[1,7.499999999999996,0],"to":[2,8.5,1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[6,8,7,9]},"east":{"uv":[6,8,7,9]},"south":{"uv":[6,8,7,9]},"west":{"uv":[6,8,7,9]},"up":{"uv":[7,9,6,8]},"down":{"uv":[7,9,6,8]}},"type":"cube","uuid":"ddf2b459-5ed6-26ac-4e2c-506455d97be3"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[0,7.499999999999996,0],"to":[1,8.5,1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[7,8,8,9]},"east":{"uv":[7,8,8,9]},"south":{"uv":[7,8,8,9]},"west":{"uv":[7,8,8,9]},"up":{"uv":[8,9,7,8]},"down":{"uv":[8,9,7,8]}},"type":"cube","uuid":"6f13d7f2-2fd4-7d64-bcc4-74a983522c99"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-1,7.499999999999996,0],"to":[0,8.5,1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[8,8,9,9]},"east":{"uv":[8,8,9,9]},"south":{"uv":[8,8,9,9]},"west":{"uv":[8,8,9,9]},"up":{"uv":[9,9,8,8]},"down":{"uv":[9,9,8,8]}},"type":"cube","uuid":"554cce53-e95a-59fe-0079-f6276010ff81"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-2,7.499999999999996,0],"to":[-1,8.5,1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[9,8,10,9]},"east":{"uv":[9,8,10,9]},"south":{"uv":[9,8,10,9]},"west":{"uv":[9,8,10,9]},"up":{"uv":[10,9,9,8]},"down":{"uv":[10,9,9,8]}},"type":"cube","uuid":"8c2e99d6-88a7-0fda-8e40-2c2d6a343571"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-3,7.499999999999996,0],"to":[-2,8.5,1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[10,8,11,9]},"east":{"uv":[10,8,11,9]},"south":{"uv":[10,8,11,9]},"west":{"uv":[10,8,11,9]},"up":{"uv":[11,9,10,8]},"down":{"uv":[11,9,10,8]}},"type":"cube","uuid":"b84cf1d6-7f9c-2530-e4b5-a13163ae0921"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-4,7.499999999999996,0],"to":[-3,8.5,1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[11,8,12,9]},"east":{"uv":[11,8,12,9]},"south":{"uv":[11,8,12,9]},"west":{"uv":[11,8,12,9]},"up":{"uv":[12,9,11,8]},"down":{"uv":[12,9,11,8]}},"type":"cube","uuid":"e95f1950-9774-831c-005a-524789d4ba9d"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-5,7.499999999999996,0],"to":[-4,8.5,1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[12,8,13,9]},"east":{"uv":[12,8,13,9]},"south":{"uv":[12,8,13,9]},"west":{"uv":[12,8,13,9]},"up":{"uv":[13,9,12,8]},"down":{"uv":[13,9,12,8]}},"type":"cube","uuid":"5a4970fc-8d5f-c080-6cdb-82a19594763d"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-6,7.499999999999996,0],"to":[-5,8.5,1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[13,8,14,9]},"east":{"uv":[13,8,14,9]},"south":{"uv":[13,8,14,9]},"west":{"uv":[13,8,14,9]},"up":{"uv":[14,9,13,8]},"down":{"uv":[14,9,13,8]}},"type":"cube","uuid":"88e37340-f57b-2d4a-58a1-4523f7ab9410"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-7,7.499999999999996,0],"to":[-6,8.5,1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[14,8,15,9]},"east":{"uv":[14,8,15,9]},"south":{"uv":[14,8,15,9]},"west":{"uv":[14,8,15,9]},"up":{"uv":[15,9,14,8]},"down":{"uv":[15,9,14,8]}},"type":"cube","uuid":"46365158-2cd9-dbe4-2e9f-f93fdf308abd"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-8,7.499999999999996,0],"to":[-7,8.5,1],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[15,8,16,9]},"east":{"uv":[15,8,16,9]},"south":{"uv":[15,8,16,9]},"west":{"uv":[15,8,16,9]},"up":{"uv":[16,9,15,8]},"down":{"uv":[16,9,15,8]}},"type":"cube","uuid":"d260532c-1a34-1a09-e2b1-f0629cd923c6"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,7.499999999999996,1],"to":[8,8.5,2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[0,9,1,10]},"east":{"uv":[0,9,1,10]},"south":{"uv":[0,9,1,10]},"west":{"uv":[0,9,1,10]},"up":{"uv":[1,10,0,9]},"down":{"uv":[1,10,0,9]}},"type":"cube","uuid":"2444e5ce-eded-307f-443c-1f643bbee336"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,7.499999999999996,1],"to":[7,8.5,2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[1,9,2,10]},"east":{"uv":[1,9,2,10]},"south":{"uv":[1,9,2,10]},"west":{"uv":[1,9,2,10]},"up":{"uv":[2,10,1,9]},"down":{"uv":[2,10,1,9]}},"type":"cube","uuid":"fea2a5af-eb8d-82bd-5ed4-f6be556bd1d2"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[5,7.499999999999996,1],"to":[6,8.5,2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[2,9,3,10]},"east":{"uv":[2,9,3,10]},"south":{"uv":[2,9,3,10]},"west":{"uv":[2,9,3,10]},"up":{"uv":[3,10,2,9]},"down":{"uv":[3,10,2,9]}},"type":"cube","uuid":"350b94cf-70c3-6567-4dd5-47d7be9c5949"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[4,7.499999999999996,1],"to":[5,8.5,2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[3,9,4,10]},"east":{"uv":[3,9,4,10]},"south":{"uv":[3,9,4,10]},"west":{"uv":[3,9,4,10]},"up":{"uv":[4,10,3,9]},"down":{"uv":[4,10,3,9]}},"type":"cube","uuid":"0f01c6ca-57b0-ae4e-f71f-e2355de6e224"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[3,7.499999999999996,1],"to":[4,8.5,2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[4,9,5,10]},"east":{"uv":[4,9,5,10]},"south":{"uv":[4,9,5,10]},"west":{"uv":[4,9,5,10]},"up":{"uv":[5,10,4,9]},"down":{"uv":[5,10,4,9]}},"type":"cube","uuid":"5712b375-2958-be5c-f873-0124886d52c1"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[2,7.499999999999996,1],"to":[3,8.5,2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[5,9,6,10]},"east":{"uv":[5,9,6,10]},"south":{"uv":[5,9,6,10]},"west":{"uv":[5,9,6,10]},"up":{"uv":[6,10,5,9]},"down":{"uv":[6,10,5,9]}},"type":"cube","uuid":"10bbbeb5-df8b-f838-053c-80178b6ffd61"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[1,7.499999999999996,1],"to":[2,8.5,2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[6,9,7,10]},"east":{"uv":[6,9,7,10]},"south":{"uv":[6,9,7,10]},"west":{"uv":[6,9,7,10]},"up":{"uv":[7,10,6,9]},"down":{"uv":[7,10,6,9]}},"type":"cube","uuid":"e435e82b-8845-1786-1998-e94675fa86e4"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[0,7.499999999999996,1],"to":[1,8.5,2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[7,9,8,10]},"east":{"uv":[7,9,8,10]},"south":{"uv":[7,9,8,10]},"west":{"uv":[7,9,8,10]},"up":{"uv":[8,10,7,9]},"down":{"uv":[8,10,7,9]}},"type":"cube","uuid":"d862d780-2243-b82f-cb7a-79f3374a4a0f"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-1,7.499999999999996,1],"to":[0,8.5,2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[8,9,9,10]},"east":{"uv":[8,9,9,10]},"south":{"uv":[8,9,9,10]},"west":{"uv":[8,9,9,10]},"up":{"uv":[9,10,8,9]},"down":{"uv":[9,10,8,9]}},"type":"cube","uuid":"22db6109-6073-0acd-5269-84aa012ed0b3"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-2,7.499999999999996,1],"to":[-1,8.5,2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[9,9,10,10]},"east":{"uv":[9,9,10,10]},"south":{"uv":[9,9,10,10]},"west":{"uv":[9,9,10,10]},"up":{"uv":[10,10,9,9]},"down":{"uv":[10,10,9,9]}},"type":"cube","uuid":"e0b2f1d7-6c84-70d9-344d-02300b56b439"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-3,7.499999999999996,1],"to":[-2,8.5,2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[10,9,11,10]},"east":{"uv":[10,9,11,10]},"south":{"uv":[10,9,11,10]},"west":{"uv":[10,9,11,10]},"up":{"uv":[11,10,10,9]},"down":{"uv":[11,10,10,9]}},"type":"cube","uuid":"c9a4cfac-683b-a84a-76d3-85ede3bade9e"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-4,7.499999999999996,1],"to":[-3,8.5,2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[11,9,12,10]},"east":{"uv":[11,9,12,10]},"south":{"uv":[11,9,12,10]},"west":{"uv":[11,9,12,10]},"up":{"uv":[12,10,11,9]},"down":{"uv":[12,10,11,9]}},"type":"cube","uuid":"1df7fd96-346b-9a6e-6394-66755057322d"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-5,7.499999999999996,1],"to":[-4,8.5,2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[12,9,13,10]},"east":{"uv":[12,9,13,10]},"south":{"uv":[12,9,13,10]},"west":{"uv":[12,9,13,10]},"up":{"uv":[13,10,12,9]},"down":{"uv":[13,10,12,9]}},"type":"cube","uuid":"3a243dd9-b055-c83d-0d62-b46cff964838"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-6,7.499999999999996,1],"to":[-5,8.5,2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[13,9,14,10]},"east":{"uv":[13,9,14,10]},"south":{"uv":[13,9,14,10]},"west":{"uv":[13,9,14,10]},"up":{"uv":[14,10,13,9]},"down":{"uv":[14,10,13,9]}},"type":"cube","uuid":"a00d30b2-f3d1-f8c6-6844-72c8c83b3325"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-7,7.499999999999996,1],"to":[-6,8.5,2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[14,9,15,10]},"east":{"uv":[14,9,15,10]},"south":{"uv":[14,9,15,10]},"west":{"uv":[14,9,15,10]},"up":{"uv":[15,10,14,9]},"down":{"uv":[15,10,14,9]}},"type":"cube","uuid":"cdd9566f-33b9-0283-3607-24c59a69fe04"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-8,7.499999999999996,1],"to":[-7,8.5,2],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[15,9,16,10]},"east":{"uv":[15,9,16,10]},"south":{"uv":[15,9,16,10]},"west":{"uv":[15,9,16,10]},"up":{"uv":[16,10,15,9]},"down":{"uv":[16,10,15,9]}},"type":"cube","uuid":"faf54ddd-e75c-7bcf-1cdb-e46a9e44f8be"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,7.499999999999996,2],"to":[8,8.5,3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[0,10,1,11]},"east":{"uv":[0,10,1,11]},"south":{"uv":[0,10,1,11]},"west":{"uv":[0,10,1,11]},"up":{"uv":[1,11,0,10]},"down":{"uv":[1,11,0,10]}},"type":"cube","uuid":"c36d1a87-48b3-2654-97d9-ab412e2b5f65"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,7.499999999999996,2],"to":[7,8.5,3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[1,10,2,11]},"east":{"uv":[1,10,2,11]},"south":{"uv":[1,10,2,11]},"west":{"uv":[1,10,2,11]},"up":{"uv":[2,11,1,10]},"down":{"uv":[2,11,1,10]}},"type":"cube","uuid":"16c91063-d59f-b220-c8e1-9f35b0cbbab5"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[5,7.499999999999996,2],"to":[6,8.5,3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[2,10,3,11]},"east":{"uv":[2,10,3,11]},"south":{"uv":[2,10,3,11]},"west":{"uv":[2,10,3,11]},"up":{"uv":[3,11,2,10]},"down":{"uv":[3,11,2,10]}},"type":"cube","uuid":"725d06ed-03ac-427c-2af1-a84c0ad53ed4"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[4,7.499999999999996,2],"to":[5,8.5,3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[3,10,4,11]},"east":{"uv":[3,10,4,11]},"south":{"uv":[3,10,4,11]},"west":{"uv":[3,10,4,11]},"up":{"uv":[4,11,3,10]},"down":{"uv":[4,11,3,10]}},"type":"cube","uuid":"355143cd-fb90-dbf0-d7ec-3f3242a8b148"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[3,7.499999999999996,2],"to":[4,8.5,3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[4,10,5,11]},"east":{"uv":[4,10,5,11]},"south":{"uv":[4,10,5,11]},"west":{"uv":[4,10,5,11]},"up":{"uv":[5,11,4,10]},"down":{"uv":[5,11,4,10]}},"type":"cube","uuid":"aa2f64a4-d66e-1586-b334-d240ff8f1fbc"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[2,7.499999999999996,2],"to":[3,8.5,3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[5,10,6,11]},"east":{"uv":[5,10,6,11]},"south":{"uv":[5,10,6,11]},"west":{"uv":[5,10,6,11]},"up":{"uv":[6,11,5,10]},"down":{"uv":[6,11,5,10]}},"type":"cube","uuid":"66c290b3-8bae-2972-e75c-08ea910bbbfc"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[1,7.499999999999996,2],"to":[2,8.5,3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[6,10,7,11]},"east":{"uv":[6,10,7,11]},"south":{"uv":[6,10,7,11]},"west":{"uv":[6,10,7,11]},"up":{"uv":[7,11,6,10]},"down":{"uv":[7,11,6,10]}},"type":"cube","uuid":"ddc56a24-182e-7f76-73ef-7eb89dad259f"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[0,7.499999999999996,2],"to":[1,8.5,3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[7,10,8,11]},"east":{"uv":[7,10,8,11]},"south":{"uv":[7,10,8,11]},"west":{"uv":[7,10,8,11]},"up":{"uv":[8,11,7,10]},"down":{"uv":[8,11,7,10]}},"type":"cube","uuid":"0ff2dfa3-da38-0dde-7d99-92aceea860be"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-1,7.499999999999996,2],"to":[0,8.5,3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[8,10,9,11]},"east":{"uv":[8,10,9,11]},"south":{"uv":[8,10,9,11]},"west":{"uv":[8,10,9,11]},"up":{"uv":[9,11,8,10]},"down":{"uv":[9,11,8,10]}},"type":"cube","uuid":"48601073-1c5e-3606-8e08-933ee60074b8"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-2,7.499999999999996,2],"to":[-1,8.5,3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[9,10,10,11]},"east":{"uv":[9,10,10,11]},"south":{"uv":[9,10,10,11]},"west":{"uv":[9,10,10,11]},"up":{"uv":[10,11,9,10]},"down":{"uv":[10,11,9,10]}},"type":"cube","uuid":"e59b20db-7f7b-153c-6c28-61a1457f17e6"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-3,7.499999999999996,2],"to":[-2,8.5,3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[10,10,11,11]},"east":{"uv":[10,10,11,11]},"south":{"uv":[10,10,11,11]},"west":{"uv":[10,10,11,11]},"up":{"uv":[11,11,10,10]},"down":{"uv":[11,11,10,10]}},"type":"cube","uuid":"30a9f027-b7d8-57ed-30e0-8dc43a3c5222"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-4,7.499999999999996,2],"to":[-3,8.5,3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[11,10,12,11]},"east":{"uv":[11,10,12,11]},"south":{"uv":[11,10,12,11]},"west":{"uv":[11,10,12,11]},"up":{"uv":[12,11,11,10]},"down":{"uv":[12,11,11,10]}},"type":"cube","uuid":"d486a95a-e9af-de72-f979-b2f789ba87f1"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-5,7.499999999999996,2],"to":[-4,8.5,3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[12,10,13,11]},"east":{"uv":[12,10,13,11]},"south":{"uv":[12,10,13,11]},"west":{"uv":[12,10,13,11]},"up":{"uv":[13,11,12,10]},"down":{"uv":[13,11,12,10]}},"type":"cube","uuid":"6050d4f6-0f26-3f09-14d8-1a83ff609927"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-6,7.499999999999996,2],"to":[-5,8.5,3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[13,10,14,11]},"east":{"uv":[13,10,14,11]},"south":{"uv":[13,10,14,11]},"west":{"uv":[13,10,14,11]},"up":{"uv":[14,11,13,10]},"down":{"uv":[14,11,13,10]}},"type":"cube","uuid":"8def38a3-6f25-ebf5-a8b4-087f248083cf"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-7,7.499999999999996,2],"to":[-6,8.5,3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[14,10,15,11]},"east":{"uv":[14,10,15,11]},"south":{"uv":[14,10,15,11]},"west":{"uv":[14,10,15,11]},"up":{"uv":[15,11,14,10]},"down":{"uv":[15,11,14,10]}},"type":"cube","uuid":"1ab2dd39-cfdd-f68f-59dc-ffcfc41742e8"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-8,7.499999999999996,2],"to":[-7,8.5,3],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[15,10,16,11]},"east":{"uv":[15,10,16,11]},"south":{"uv":[15,10,16,11]},"west":{"uv":[15,10,16,11]},"up":{"uv":[16,11,15,10]},"down":{"uv":[16,11,15,10]}},"type":"cube","uuid":"c990b58c-9171-8f4d-25a2-3de7039420aa"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,7.499999999999996,3],"to":[8,8.5,4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[0,11,1,12]},"east":{"uv":[0,11,1,12]},"south":{"uv":[0,11,1,12]},"west":{"uv":[0,11,1,12]},"up":{"uv":[1,12,0,11]},"down":{"uv":[1,12,0,11]}},"type":"cube","uuid":"b7c0f960-e532-ab26-08a6-468474cb7c68"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,7.499999999999996,3],"to":[7,8.5,4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[1,11,2,12]},"east":{"uv":[1,11,2,12]},"south":{"uv":[1,11,2,12]},"west":{"uv":[1,11,2,12]},"up":{"uv":[2,12,1,11]},"down":{"uv":[2,12,1,11]}},"type":"cube","uuid":"f4c9211c-14ba-6ab0-9235-6fe478f9677b"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[5,7.499999999999996,3],"to":[6,8.5,4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[2,11,3,12]},"east":{"uv":[2,11,3,12]},"south":{"uv":[2,11,3,12]},"west":{"uv":[2,11,3,12]},"up":{"uv":[3,12,2,11]},"down":{"uv":[3,12,2,11]}},"type":"cube","uuid":"75fc3f6f-e082-915f-c726-ba8d6cc6cc8b"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[4,7.499999999999996,3],"to":[5,8.5,4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[3,11,4,12]},"east":{"uv":[3,11,4,12]},"south":{"uv":[3,11,4,12]},"west":{"uv":[3,11,4,12]},"up":{"uv":[4,12,3,11]},"down":{"uv":[4,12,3,11]}},"type":"cube","uuid":"10cf9b76-0260-020a-76e7-27bd5bc32009"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[3,7.499999999999996,3],"to":[4,8.5,4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[4,11,5,12]},"east":{"uv":[4,11,5,12]},"south":{"uv":[4,11,5,12]},"west":{"uv":[4,11,5,12]},"up":{"uv":[5,12,4,11]},"down":{"uv":[5,12,4,11]}},"type":"cube","uuid":"4ea662db-ca14-363b-592f-1eb49dfb3f73"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[2,7.499999999999996,3],"to":[3,8.5,4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[5,11,6,12]},"east":{"uv":[5,11,6,12]},"south":{"uv":[5,11,6,12]},"west":{"uv":[5,11,6,12]},"up":{"uv":[6,12,5,11]},"down":{"uv":[6,12,5,11]}},"type":"cube","uuid":"b00e2f7c-ef86-791b-6806-d0d015ec702e"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[1,7.499999999999996,3],"to":[2,8.5,4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[6,11,7,12]},"east":{"uv":[6,11,7,12]},"south":{"uv":[6,11,7,12]},"west":{"uv":[6,11,7,12]},"up":{"uv":[7,12,6,11]},"down":{"uv":[7,12,6,11]}},"type":"cube","uuid":"5e7a2eb1-e7ca-9e79-efd9-0c3fa94d0518"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[0,7.499999999999996,3],"to":[1,8.5,4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[7,11,8,12]},"east":{"uv":[7,11,8,12]},"south":{"uv":[7,11,8,12]},"west":{"uv":[7,11,8,12]},"up":{"uv":[8,12,7,11]},"down":{"uv":[8,12,7,11]}},"type":"cube","uuid":"52c3109f-5313-42f8-5ac9-f75e7c22605d"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-1,7.499999999999996,3],"to":[0,8.5,4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[8,11,9,12]},"east":{"uv":[8,11,9,12]},"south":{"uv":[8,11,9,12]},"west":{"uv":[8,11,9,12]},"up":{"uv":[9,12,8,11]},"down":{"uv":[9,12,8,11]}},"type":"cube","uuid":"3bbfca42-50fe-3ed2-13b7-6fea065e7b60"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-2,7.499999999999996,3],"to":[-1,8.5,4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[9,11,10,12]},"east":{"uv":[9,11,10,12]},"south":{"uv":[9,11,10,12]},"west":{"uv":[9,11,10,12]},"up":{"uv":[10,12,9,11]},"down":{"uv":[10,12,9,11]}},"type":"cube","uuid":"27b2f56b-afb1-bdac-cb8d-416d06ea724e"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-3,7.499999999999996,3],"to":[-2,8.5,4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[10,11,11,12]},"east":{"uv":[10,11,11,12]},"south":{"uv":[10,11,11,12]},"west":{"uv":[10,11,11,12]},"up":{"uv":[11,12,10,11]},"down":{"uv":[11,12,10,11]}},"type":"cube","uuid":"f070da88-9df6-1876-100f-e46d30fe12e2"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-4,7.499999999999996,3],"to":[-3,8.5,4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[11,11,12,12]},"east":{"uv":[11,11,12,12]},"south":{"uv":[11,11,12,12]},"west":{"uv":[11,11,12,12]},"up":{"uv":[12,12,11,11]},"down":{"uv":[12,12,11,11]}},"type":"cube","uuid":"8f932ee3-1dbd-4c3a-a52b-e13da72b8607"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-5,7.499999999999996,3],"to":[-4,8.5,4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[12,11,13,12]},"east":{"uv":[12,11,13,12]},"south":{"uv":[12,11,13,12]},"west":{"uv":[12,11,13,12]},"up":{"uv":[13,12,12,11]},"down":{"uv":[13,12,12,11]}},"type":"cube","uuid":"b0249a1b-c6bd-b417-5040-b1426ee72742"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-6,7.499999999999996,3],"to":[-5,8.5,4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[13,11,14,12]},"east":{"uv":[13,11,14,12]},"south":{"uv":[13,11,14,12]},"west":{"uv":[13,11,14,12]},"up":{"uv":[14,12,13,11]},"down":{"uv":[14,12,13,11]}},"type":"cube","uuid":"b22beb5f-fdae-2f7e-1485-390e79474d2f"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-7,7.499999999999996,3],"to":[-6,8.5,4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[14,11,15,12]},"east":{"uv":[14,11,15,12]},"south":{"uv":[14,11,15,12]},"west":{"uv":[14,11,15,12]},"up":{"uv":[15,12,14,11]},"down":{"uv":[15,12,14,11]}},"type":"cube","uuid":"35c247a0-b871-47be-d759-70cb07daa078"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-8,7.499999999999996,3],"to":[-7,8.5,4],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[15,11,16,12]},"east":{"uv":[15,11,16,12]},"south":{"uv":[15,11,16,12]},"west":{"uv":[15,11,16,12]},"up":{"uv":[16,12,15,11]},"down":{"uv":[16,12,15,11]}},"type":"cube","uuid":"7ead2877-1446-0998-2139-d600449a5eab"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,7.499999999999996,4],"to":[8,8.5,5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[0,12,1,13]},"east":{"uv":[0,12,1,13]},"south":{"uv":[0,12,1,13]},"west":{"uv":[0,12,1,13]},"up":{"uv":[1,13,0,12]},"down":{"uv":[1,13,0,12]}},"type":"cube","uuid":"7e7eaed5-1f95-c14d-164a-3169b5bd5fe5"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,7.499999999999996,4],"to":[7,8.5,5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[1,12,2,13]},"east":{"uv":[1,12,2,13]},"south":{"uv":[1,12,2,13]},"west":{"uv":[1,12,2,13]},"up":{"uv":[2,13,1,12]},"down":{"uv":[2,13,1,12]}},"type":"cube","uuid":"c0212841-1293-da41-fcba-70ad9a7d809d"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[5,7.499999999999996,4],"to":[6,8.5,5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[2,12,3,13]},"east":{"uv":[2,12,3,13]},"south":{"uv":[2,12,3,13]},"west":{"uv":[2,12,3,13]},"up":{"uv":[3,13,2,12]},"down":{"uv":[3,13,2,12]}},"type":"cube","uuid":"8166478a-e26c-f6f7-05f5-c6a4329b1df0"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[4,7.499999999999996,4],"to":[5,8.5,5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[3,12,4,13]},"east":{"uv":[3,12,4,13]},"south":{"uv":[3,12,4,13]},"west":{"uv":[3,12,4,13]},"up":{"uv":[4,13,3,12]},"down":{"uv":[4,13,3,12]}},"type":"cube","uuid":"ed898736-365f-0237-f05e-1929605cfd62"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[3,7.499999999999996,4],"to":[4,8.5,5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[4,12,5,13]},"east":{"uv":[4,12,5,13]},"south":{"uv":[4,12,5,13]},"west":{"uv":[4,12,5,13]},"up":{"uv":[5,13,4,12]},"down":{"uv":[5,13,4,12]}},"type":"cube","uuid":"4c75603c-f98d-90dc-0190-b1cdf9cb8f10"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[2,7.499999999999996,4],"to":[3,8.5,5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[5,12,6,13]},"east":{"uv":[5,12,6,13]},"south":{"uv":[5,12,6,13]},"west":{"uv":[5,12,6,13]},"up":{"uv":[6,13,5,12]},"down":{"uv":[6,13,5,12]}},"type":"cube","uuid":"7026a21c-11a2-a14c-2be7-ce1a97f786b4"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[1,7.499999999999996,4],"to":[2,8.5,5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[6,12,7,13]},"east":{"uv":[6,12,7,13]},"south":{"uv":[6,12,7,13]},"west":{"uv":[6,12,7,13]},"up":{"uv":[7,13,6,12]},"down":{"uv":[7,13,6,12]}},"type":"cube","uuid":"61b611b7-c1be-ac1f-8ec0-f8f06e9d01b3"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[0,7.499999999999996,4],"to":[1,8.5,5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[7,12,8,13]},"east":{"uv":[7,12,8,13]},"south":{"uv":[7,12,8,13]},"west":{"uv":[7,12,8,13]},"up":{"uv":[8,13,7,12]},"down":{"uv":[8,13,7,12]}},"type":"cube","uuid":"c5b1309c-a9c6-4098-93ac-5d8e4dd8e5ac"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-1,7.499999999999996,4],"to":[0,8.5,5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[8,12,9,13]},"east":{"uv":[8,12,9,13]},"south":{"uv":[8,12,9,13]},"west":{"uv":[8,12,9,13]},"up":{"uv":[9,13,8,12]},"down":{"uv":[9,13,8,12]}},"type":"cube","uuid":"a1c6f8f0-b2f5-9078-7a4c-5cc4bdc77ac3"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-2,7.499999999999996,4],"to":[-1,8.5,5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[9,12,10,13]},"east":{"uv":[9,12,10,13]},"south":{"uv":[9,12,10,13]},"west":{"uv":[9,12,10,13]},"up":{"uv":[10,13,9,12]},"down":{"uv":[10,13,9,12]}},"type":"cube","uuid":"f3a4c155-b508-7efe-8c9b-8065e9e28804"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-3,7.499999999999996,4],"to":[-2,8.5,5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[10,12,11,13]},"east":{"uv":[10,12,11,13]},"south":{"uv":[10,12,11,13]},"west":{"uv":[10,12,11,13]},"up":{"uv":[11,13,10,12]},"down":{"uv":[11,13,10,12]}},"type":"cube","uuid":"1cef2c97-aa16-b8ab-3e14-81fec8914c25"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-4,7.499999999999996,4],"to":[-3,8.5,5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[11,12,12,13]},"east":{"uv":[11,12,12,13]},"south":{"uv":[11,12,12,13]},"west":{"uv":[11,12,12,13]},"up":{"uv":[12,13,11,12]},"down":{"uv":[12,13,11,12]}},"type":"cube","uuid":"2ae27928-e77d-1cba-8b1d-8b84869a264e"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-5,7.499999999999996,4],"to":[-4,8.5,5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[12,12,13,13]},"east":{"uv":[12,12,13,13]},"south":{"uv":[12,12,13,13]},"west":{"uv":[12,12,13,13]},"up":{"uv":[13,13,12,12]},"down":{"uv":[13,13,12,12]}},"type":"cube","uuid":"476df164-f3f2-98e0-a535-f51e0e2a712f"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-6,7.499999999999996,4],"to":[-5,8.5,5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[13,12,14,13]},"east":{"uv":[13,12,14,13]},"south":{"uv":[13,12,14,13]},"west":{"uv":[13,12,14,13]},"up":{"uv":[14,13,13,12]},"down":{"uv":[14,13,13,12]}},"type":"cube","uuid":"ae25a0b6-2159-20f1-2b0c-12be23854106"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-7,7.499999999999996,4],"to":[-6,8.5,5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[14,12,15,13]},"east":{"uv":[14,12,15,13]},"south":{"uv":[14,12,15,13]},"west":{"uv":[14,12,15,13]},"up":{"uv":[15,13,14,12]},"down":{"uv":[15,13,14,12]}},"type":"cube","uuid":"5ac3e103-e47f-cce8-c7aa-1a6b4fd7b169"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-8,7.499999999999996,4],"to":[-7,8.5,5],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[15,12,16,13]},"east":{"uv":[15,12,16,13]},"south":{"uv":[15,12,16,13]},"west":{"uv":[15,12,16,13]},"up":{"uv":[16,13,15,12]},"down":{"uv":[16,13,15,12]}},"type":"cube","uuid":"1c8f72a9-078c-cd97-9d0d-7c68ac648c5a"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,7.499999999999996,5],"to":[8,8.5,6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[0,13,1,14]},"east":{"uv":[0,13,1,14]},"south":{"uv":[0,13,1,14]},"west":{"uv":[0,13,1,14]},"up":{"uv":[1,14,0,13]},"down":{"uv":[1,14,0,13]}},"type":"cube","uuid":"b8384fd9-a88d-831a-05a4-ca35faaa7fc3"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,7.499999999999996,5],"to":[7,8.5,6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[1,13,2,14]},"east":{"uv":[1,13,2,14]},"south":{"uv":[1,13,2,14]},"west":{"uv":[1,13,2,14]},"up":{"uv":[2,14,1,13]},"down":{"uv":[2,14,1,13]}},"type":"cube","uuid":"0420cdf9-0b42-ce87-8075-193ae1ee02a8"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[5,7.499999999999996,5],"to":[6,8.5,6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[2,13,3,14]},"east":{"uv":[2,13,3,14]},"south":{"uv":[2,13,3,14]},"west":{"uv":[2,13,3,14]},"up":{"uv":[3,14,2,13]},"down":{"uv":[3,14,2,13]}},"type":"cube","uuid":"53f3fbf4-6e4e-e1b2-0ea4-79c787981e25"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[4,7.499999999999996,5],"to":[5,8.5,6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[3,13,4,14]},"east":{"uv":[3,13,4,14]},"south":{"uv":[3,13,4,14]},"west":{"uv":[3,13,4,14]},"up":{"uv":[4,14,3,13]},"down":{"uv":[4,14,3,13]}},"type":"cube","uuid":"f3a79a21-39d2-5e62-fd32-e1d9adacaadd"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[3,7.499999999999996,5],"to":[4,8.5,6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[4,13,5,14]},"east":{"uv":[4,13,5,14]},"south":{"uv":[4,13,5,14]},"west":{"uv":[4,13,5,14]},"up":{"uv":[5,14,4,13]},"down":{"uv":[5,14,4,13]}},"type":"cube","uuid":"7c2a5c7f-2476-7742-045f-8e6218755bc7"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[2,7.499999999999996,5],"to":[3,8.5,6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[5,13,6,14]},"east":{"uv":[5,13,6,14]},"south":{"uv":[5,13,6,14]},"west":{"uv":[5,13,6,14]},"up":{"uv":[6,14,5,13]},"down":{"uv":[6,14,5,13]}},"type":"cube","uuid":"78db0dd3-3fbf-0dad-230d-9a71d9b5e5f1"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[1,7.499999999999996,5],"to":[2,8.5,6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[6,13,7,14]},"east":{"uv":[6,13,7,14]},"south":{"uv":[6,13,7,14]},"west":{"uv":[6,13,7,14]},"up":{"uv":[7,14,6,13]},"down":{"uv":[7,14,6,13]}},"type":"cube","uuid":"deac3bde-0aa8-aa5d-6445-389cab5f171e"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[0,7.499999999999996,5],"to":[1,8.5,6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[7,13,8,14]},"east":{"uv":[7,13,8,14]},"south":{"uv":[7,13,8,14]},"west":{"uv":[7,13,8,14]},"up":{"uv":[8,14,7,13]},"down":{"uv":[8,14,7,13]}},"type":"cube","uuid":"4fa09be9-fab2-0225-b6de-51f848a1e26d"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-1,7.499999999999996,5],"to":[0,8.5,6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[8,13,9,14]},"east":{"uv":[8,13,9,14]},"south":{"uv":[8,13,9,14]},"west":{"uv":[8,13,9,14]},"up":{"uv":[9,14,8,13]},"down":{"uv":[9,14,8,13]}},"type":"cube","uuid":"7a28c626-31e5-ec0a-da6f-91a06331244c"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-2,7.499999999999996,5],"to":[-1,8.5,6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[9,13,10,14]},"east":{"uv":[9,13,10,14]},"south":{"uv":[9,13,10,14]},"west":{"uv":[9,13,10,14]},"up":{"uv":[10,14,9,13]},"down":{"uv":[10,14,9,13]}},"type":"cube","uuid":"823de00d-f7e9-336c-db3f-40d8a5fc0121"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-3,7.499999999999996,5],"to":[-2,8.5,6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[10,13,11,14]},"east":{"uv":[10,13,11,14]},"south":{"uv":[10,13,11,14]},"west":{"uv":[10,13,11,14]},"up":{"uv":[11,14,10,13]},"down":{"uv":[11,14,10,13]}},"type":"cube","uuid":"6a60b3a2-b69e-7fea-6fa8-cd5937d387f9"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-4,7.499999999999996,5],"to":[-3,8.5,6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[11,13,12,14]},"east":{"uv":[11,13,12,14]},"south":{"uv":[11,13,12,14]},"west":{"uv":[11,13,12,14]},"up":{"uv":[12,14,11,13]},"down":{"uv":[12,14,11,13]}},"type":"cube","uuid":"e555e9fd-5d07-c57b-9b21-df60d94d6d68"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-5,7.499999999999996,5],"to":[-4,8.5,6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[12,13,13,14]},"east":{"uv":[12,13,13,14]},"south":{"uv":[12,13,13,14]},"west":{"uv":[12,13,13,14]},"up":{"uv":[13,14,12,13]},"down":{"uv":[13,14,12,13]}},"type":"cube","uuid":"3336627a-b4a6-6dc6-3088-acf3a071c190"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-6,7.499999999999996,5],"to":[-5,8.5,6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[13,13,14,14]},"east":{"uv":[13,13,14,14]},"south":{"uv":[13,13,14,14]},"west":{"uv":[13,13,14,14]},"up":{"uv":[14,14,13,13]},"down":{"uv":[14,14,13,13]}},"type":"cube","uuid":"fc911cc5-5d9d-0bfd-e28f-c1e8894f64ae"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-7,7.499999999999996,5],"to":[-6,8.5,6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[14,13,15,14]},"east":{"uv":[14,13,15,14]},"south":{"uv":[14,13,15,14]},"west":{"uv":[14,13,15,14]},"up":{"uv":[15,14,14,13]},"down":{"uv":[15,14,14,13]}},"type":"cube","uuid":"381f7a3c-bc4d-32d3-4df5-e6723b92a953"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-8,7.499999999999996,5],"to":[-7,8.5,6],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[15,13,16,14]},"east":{"uv":[15,13,16,14]},"south":{"uv":[15,13,16,14]},"west":{"uv":[15,13,16,14]},"up":{"uv":[16,14,15,13]},"down":{"uv":[16,14,15,13]}},"type":"cube","uuid":"b8024ca2-926d-7b23-f1d2-293bb80c0b13"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,7.499999999999996,6],"to":[8,8.5,7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[0,14,1,15]},"east":{"uv":[0,14,1,15]},"south":{"uv":[0,14,1,15]},"west":{"uv":[0,14,1,15]},"up":{"uv":[1,15,0,14]},"down":{"uv":[1,15,0,14]}},"type":"cube","uuid":"0d7473e7-b958-333e-a24e-a3d412f224e8"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,7.499999999999996,6],"to":[7,8.5,7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[1,14,2,15]},"east":{"uv":[1,14,2,15]},"south":{"uv":[1,14,2,15]},"west":{"uv":[1,14,2,15]},"up":{"uv":[2,15,1,14]},"down":{"uv":[2,15,1,14]}},"type":"cube","uuid":"83107445-6d24-b292-2c17-c6f114a4f58b"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[5,7.499999999999996,6],"to":[6,8.5,7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[2,14,3,15]},"east":{"uv":[2,14,3,15]},"south":{"uv":[2,14,3,15]},"west":{"uv":[2,14,3,15]},"up":{"uv":[3,15,2,14]},"down":{"uv":[3,15,2,14]}},"type":"cube","uuid":"4ea43227-12df-02fe-3192-68bd02039c30"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[4,7.499999999999996,6],"to":[5,8.5,7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[3,14,4,15]},"east":{"uv":[3,14,4,15]},"south":{"uv":[3,14,4,15]},"west":{"uv":[3,14,4,15]},"up":{"uv":[4,15,3,14]},"down":{"uv":[4,15,3,14]}},"type":"cube","uuid":"122147ca-78f0-0804-4bac-d55d3fab9e6d"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[3,7.499999999999996,6],"to":[4,8.5,7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[4,14,5,15]},"east":{"uv":[4,14,5,15]},"south":{"uv":[4,14,5,15]},"west":{"uv":[4,14,5,15]},"up":{"uv":[5,15,4,14]},"down":{"uv":[5,15,4,14]}},"type":"cube","uuid":"b7c174b0-a147-0182-2139-f0aa8596905a"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[2,7.499999999999996,6],"to":[3,8.5,7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[5,14,6,15]},"east":{"uv":[5,14,6,15]},"south":{"uv":[5,14,6,15]},"west":{"uv":[5,14,6,15]},"up":{"uv":[6,15,5,14]},"down":{"uv":[6,15,5,14]}},"type":"cube","uuid":"cff0251e-91b0-3244-ae29-7965e6dd2566"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[1,7.499999999999996,6],"to":[2,8.5,7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[6,14,7,15]},"east":{"uv":[6,14,7,15]},"south":{"uv":[6,14,7,15]},"west":{"uv":[6,14,7,15]},"up":{"uv":[7,15,6,14]},"down":{"uv":[7,15,6,14]}},"type":"cube","uuid":"a27924b5-a04b-47ec-8c6c-9959af1fd3d8"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[0,7.499999999999996,6],"to":[1,8.5,7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[7,14,8,15]},"east":{"uv":[7,14,8,15]},"south":{"uv":[7,14,8,15]},"west":{"uv":[7,14,8,15]},"up":{"uv":[8,15,7,14]},"down":{"uv":[8,15,7,14]}},"type":"cube","uuid":"003e3339-9305-a079-3674-51e0e2731386"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-1,7.499999999999996,6],"to":[0,8.5,7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[8,14,9,15]},"east":{"uv":[8,14,9,15]},"south":{"uv":[8,14,9,15]},"west":{"uv":[8,14,9,15]},"up":{"uv":[9,15,8,14]},"down":{"uv":[9,15,8,14]}},"type":"cube","uuid":"35dfec57-29f6-6155-fa91-30ffe8542f09"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-2,7.499999999999996,6],"to":[-1,8.5,7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[9,14,10,15]},"east":{"uv":[9,14,10,15]},"south":{"uv":[9,14,10,15]},"west":{"uv":[9,14,10,15]},"up":{"uv":[10,15,9,14]},"down":{"uv":[10,15,9,14]}},"type":"cube","uuid":"503adcbb-613c-7338-84cb-ff9d392efb93"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-3,7.499999999999996,6],"to":[-2,8.5,7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[10,14,11,15]},"east":{"uv":[10,14,11,15]},"south":{"uv":[10,14,11,15]},"west":{"uv":[10,14,11,15]},"up":{"uv":[11,15,10,14]},"down":{"uv":[11,15,10,14]}},"type":"cube","uuid":"7cde4f23-0eec-76a4-2317-c92f01b94df8"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-4,7.499999999999996,6],"to":[-3,8.5,7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[11,14,12,15]},"east":{"uv":[11,14,12,15]},"south":{"uv":[11,14,12,15]},"west":{"uv":[11,14,12,15]},"up":{"uv":[12,15,11,14]},"down":{"uv":[12,15,11,14]}},"type":"cube","uuid":"ea547e4f-a731-9ec8-3f54-c7d74dc9ce97"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-5,7.499999999999996,6],"to":[-4,8.5,7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[12,14,13,15]},"east":{"uv":[12,14,13,15]},"south":{"uv":[12,14,13,15]},"west":{"uv":[12,14,13,15]},"up":{"uv":[13,15,12,14]},"down":{"uv":[13,15,12,14]}},"type":"cube","uuid":"36e0b1b3-4625-8627-ddd5-9efc5d0078de"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-6,7.499999999999996,6],"to":[-5,8.5,7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[13,14,14,15]},"east":{"uv":[13,14,14,15]},"south":{"uv":[13,14,14,15]},"west":{"uv":[13,14,14,15]},"up":{"uv":[14,15,13,14]},"down":{"uv":[14,15,13,14]}},"type":"cube","uuid":"7bc2251a-fd99-af10-b879-913b2ace2f1a"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-7,7.499999999999996,6],"to":[-6,8.5,7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[14,14,15,15]},"east":{"uv":[14,14,15,15]},"south":{"uv":[14,14,15,15]},"west":{"uv":[14,14,15,15]},"up":{"uv":[15,15,14,14]},"down":{"uv":[15,15,14,14]}},"type":"cube","uuid":"e656d7e8-860b-3bd8-3d67-579c38db6f17"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-8,7.499999999999996,6],"to":[-7,8.5,7],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[15,14,16,15]},"east":{"uv":[15,14,16,15]},"south":{"uv":[15,14,16,15]},"west":{"uv":[15,14,16,15]},"up":{"uv":[16,15,15,14]},"down":{"uv":[16,15,15,14]}},"type":"cube","uuid":"f55110a4-33bf-4f0d-2c64-9928c8f14c0e"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[7,7.499999999999996,7],"to":[8,8.5,8],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[0,15,1,16]},"east":{"uv":[0,15,1,16]},"south":{"uv":[0,15,1,16]},"west":{"uv":[0,15,1,16]},"up":{"uv":[1,16,0,15]},"down":{"uv":[1,16,0,15]}},"type":"cube","uuid":"0fca4b31-9390-d1cd-4fce-cb4060ac1658"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[6,7.499999999999996,7],"to":[7,8.5,8],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[1,15,2,16]},"east":{"uv":[1,15,2,16]},"south":{"uv":[1,15,2,16]},"west":{"uv":[1,15,2,16]},"up":{"uv":[2,16,1,15]},"down":{"uv":[2,16,1,15]}},"type":"cube","uuid":"722a9ae9-de1a-01d8-97fe-1ee3d540d456"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[5,7.499999999999996,7],"to":[6,8.5,8],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[2,15,3,16]},"east":{"uv":[2,15,3,16]},"south":{"uv":[2,15,3,16]},"west":{"uv":[2,15,3,16]},"up":{"uv":[3,16,2,15]},"down":{"uv":[3,16,2,15]}},"type":"cube","uuid":"32f3126e-6ac1-51d6-14aa-a5af6b3ea481"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[4,7.499999999999996,7],"to":[5,8.5,8],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[3,15,4,16]},"east":{"uv":[3,15,4,16]},"south":{"uv":[3,15,4,16]},"west":{"uv":[3,15,4,16]},"up":{"uv":[4,16,3,15]},"down":{"uv":[4,16,3,15]}},"type":"cube","uuid":"2a097e6a-3bd4-eab6-f094-6c0251dd9660"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[3,7.499999999999996,7],"to":[4,8.5,8],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[4,15,5,16]},"east":{"uv":[4,15,5,16]},"south":{"uv":[4,15,5,16]},"west":{"uv":[4,15,5,16]},"up":{"uv":[5,16,4,15]},"down":{"uv":[5,16,4,15]}},"type":"cube","uuid":"21ee7c5a-a576-9da3-a0fb-ed7c79d39d3b"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[2,7.499999999999996,7],"to":[3,8.5,8],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[5,15,6,16]},"east":{"uv":[5,15,6,16]},"south":{"uv":[5,15,6,16]},"west":{"uv":[5,15,6,16]},"up":{"uv":[6,16,5,15]},"down":{"uv":[6,16,5,15]}},"type":"cube","uuid":"73531e09-6229-1998-16cc-a141a8992764"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[1,7.499999999999996,7],"to":[2,8.5,8],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[6,15,7,16]},"east":{"uv":[6,15,7,16]},"south":{"uv":[6,15,7,16]},"west":{"uv":[6,15,7,16]},"up":{"uv":[7,16,6,15]},"down":{"uv":[7,16,6,15]}},"type":"cube","uuid":"1db3337c-be10-1d23-8000-39f3136a1fe6"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[0,7.499999999999996,7],"to":[1,8.5,8],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[7,15,8,16]},"east":{"uv":[7,15,8,16]},"south":{"uv":[7,15,8,16]},"west":{"uv":[7,15,8,16]},"up":{"uv":[8,16,7,15]},"down":{"uv":[8,16,7,15]}},"type":"cube","uuid":"aa3b30fd-6336-2c18-015c-6d71a108c0d3"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-1,7.499999999999996,7],"to":[0,8.5,8],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[8,15,9,16]},"east":{"uv":[8,15,9,16]},"south":{"uv":[8,15,9,16]},"west":{"uv":[8,15,9,16]},"up":{"uv":[9,16,8,15]},"down":{"uv":[9,16,8,15]}},"type":"cube","uuid":"19d6415c-ac47-0bb0-a8da-1d691e3542e3"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-2,7.499999999999996,7],"to":[-1,8.5,8],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[9,15,10,16]},"east":{"uv":[9,15,10,16]},"south":{"uv":[9,15,10,16]},"west":{"uv":[9,15,10,16]},"up":{"uv":[10,16,9,15]},"down":{"uv":[10,16,9,15]}},"type":"cube","uuid":"92405d6b-25d8-a3c6-9c22-af20360202ab"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-3,7.499999999999996,7],"to":[-2,8.5,8],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[10,15,11,16]},"east":{"uv":[10,15,11,16]},"south":{"uv":[10,15,11,16]},"west":{"uv":[10,15,11,16]},"up":{"uv":[11,16,10,15]},"down":{"uv":[11,16,10,15]}},"type":"cube","uuid":"fdfa00db-808a-b7ed-ae5b-a701576c3281"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-4,7.499999999999996,7],"to":[-3,8.5,8],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[11,15,12,16]},"east":{"uv":[11,15,12,16]},"south":{"uv":[11,15,12,16]},"west":{"uv":[11,15,12,16]},"up":{"uv":[12,16,11,15]},"down":{"uv":[12,16,11,15]}},"type":"cube","uuid":"79e45e9a-aa07-4aa6-a1cb-210b27a875e7"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-5,7.499999999999996,7],"to":[-4,8.5,8],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[12,15,13,16]},"east":{"uv":[12,15,13,16]},"south":{"uv":[12,15,13,16]},"west":{"uv":[12,15,13,16]},"up":{"uv":[13,16,12,15]},"down":{"uv":[13,16,12,15]}},"type":"cube","uuid":"68b33c9d-b4aa-8548-d9a2-b53b3c4b2409"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-6,7.499999999999996,7],"to":[-5,8.5,8],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[13,15,14,16]},"east":{"uv":[13,15,14,16]},"south":{"uv":[13,15,14,16]},"west":{"uv":[13,15,14,16]},"up":{"uv":[14,16,13,15]},"down":{"uv":[14,16,13,15]}},"type":"cube","uuid":"c5a101b9-367c-8c16-882d-379d6fd29618"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-7,7.499999999999996,7],"to":[-6,8.5,8],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[14,15,15,16]},"east":{"uv":[14,15,15,16]},"south":{"uv":[14,15,15,16]},"west":{"uv":[14,15,15,16]},"up":{"uv":[15,16,14,15]},"down":{"uv":[15,16,14,15]}},"type":"cube","uuid":"5df7f82d-b08d-8f87-b320-cfe8fcb73add"},{"name":"item","box_uv":false,"rescale":false,"locked":false,"light_emission":0,"render_order":"default","allow_mirror_modeling":true,"from":[-8,7.499999999999996,7],"to":[-7,8.5,8],"autouv":0,"color":1,"origin":[4,7.499999999999996,-4],"faces":{"north":{"uv":[15,15,16,16]},"east":{"uv":[15,15,16,16]},"south":{"uv":[15,15,16,16]},"west":{"uv":[15,15,16,16]},"up":{"uv":[16,16,15,15]},"down":{"uv":[16,16,15,15]}},"type":"cube","uuid":"2f854f7d-d9d6-8a6f-6ab3-8a30a531a0bd"}],"outliner":[{"name":"rightitem","origin":[0,0.5000000000000001,0],"color":0,"uuid":"abb2e54c-340b-39c5-5f8b-4a1f0d5f24bb","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"selected":false,"children":[{"name":"item","origin":[0,7.999999999999996,0],"rotation":[-90,0,0],"color":1,"uuid":"18750869-c3a9-9e9b-980d-76c92f7b8839","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"selected":false,"children":["2381b5dc-d42d-203f-6e29-428dcf54c7c9","bcf88427-6b41-4a23-63a0-8e126511351e","4d6ba7f8-99ce-0dec-c93a-8cf510c655e9","833a9d77-1db6-01cb-aa07-2a54da61d40f","4bede9ff-90a7-20ce-6aed-e4fe9c1b344a","d98b6957-7064-75eb-24e1-2282063a6f33","45b64196-dcd9-fedf-7e38-231a97a42789","235dfb35-f66c-14e7-fe1b-fe6d604aa237","6af10128-a5da-ac26-58ee-1823223e9f77","3b0b4b20-7eb5-f9f6-12a9-346008c62393","e1000fbb-eb4b-1658-37ea-7e085f58f503","dd0209ed-5e28-4225-ffe1-864cb898429d","aa787dcb-c1c0-520c-d76c-01caca30bf47","e258d6e2-b0da-a36b-9a77-13157141cec5","4ab7fba5-5bf6-48b5-5dc5-b7da67df76cd","5c4fca56-b4de-758c-d5bf-ebe865c7b84a","9bb45744-bf7c-f6f3-ccef-d14e751c538a","ca2b6072-a24f-54e7-bf7a-a9c4770c3a46","fadd8eaf-080d-82a2-01db-18f2317c7699","493d8945-4bb0-922e-e5e9-087ee8e4a6cd","c95430a1-5606-c74b-5b01-e0c62f5137a6","4c65fd4e-599b-efd2-b6b3-f3ae6e315214","db18733f-9a1c-9380-08f9-8671e1583e3b","afc8444d-36d4-5538-da01-b122768f9ca9","2f3a5e92-fb9e-8a83-40e7-3027f337a42b","553a6e96-0973-4166-ccc5-ac871d6fd222","83375f9f-bb3f-a378-15ac-296437c727d0","544dd0c6-2fe8-d5a2-7482-bd6b5f3a3e9c","edd5a44b-9965-4879-cc5e-8f954108eed1","9b6d8e02-5a21-fbad-25d3-648b7ea6d0d3","f19bdd0a-5aa5-2fbf-111d-7b5e191bd02a","5376060b-0552-c9d4-727e-26062a5001ce","1bbad682-d214-9147-d8c6-2fd97475e0e0","92ee46bf-d021-396a-4961-d8acc90b8b7e","fd8eb484-2c05-f14a-6a1d-a8848b7cfe51","d14fa986-680f-9559-27c1-2f124d9915bf","f4712d00-c844-ab19-6b46-e524588b0a11","0d4ca06d-8b3c-9197-6bca-a78f995ca931","744d1ab8-81e3-c978-9d38-2d1280ae0f49","86562656-45a1-d85b-315c-28e47c9b9813","3c0a49cd-ff1f-6175-52fb-e51d57c837a7","d683d698-20ed-9c34-2de5-7d1500104334","a298448c-40f0-6943-eed4-6a74d3f530dc","e406dbea-f69a-c9c6-c0ca-b0f046dde8b3","4f7e3526-27ac-fbad-5fa8-0bf1efe15bd6","612547ab-bd82-4759-2eb7-777303c5af36","15031b6f-dcb3-e2c2-3674-7c56d7a4db80","dec9fc46-795e-ff33-aa4f-5a5383240992","4a6d5c92-7c48-08ee-4203-1e9315391bf5","c72829c1-c15c-586e-8595-11ffe1cc5aaf","1867ba53-eaee-ff3a-ed45-32424da5c677","1226c4fc-11c4-d692-ef9f-7f00f430a71c","e8821c17-70ac-e078-ddbb-84ff4ab3a70c","3cb5ca3a-d203-65b7-b951-bdb03721f92e","c51214c8-d7fb-7860-1977-8d1c155e8514","13a3cbb5-c88f-5424-03ef-85da5c729766","b06a7327-6db6-d1f9-5368-c86a52144f58","c3f74058-438b-c2bc-bbe0-3103c887bf9c","9bc7f637-a1ac-6f7c-b62d-a5203a75b80b","70f006c1-ba82-0c0a-d0a4-bd7599a48852","74ad2ca7-be87-8a85-6b3b-2e5bedbf7370","6dce1ee5-9355-bba4-c863-8432540563f8","2d21d1b3-6f27-1f73-817a-466af75c3591","2375570a-8605-33ce-93a9-cfb9bf801a7f","0c611422-b3b2-6053-b758-751a6108bb23","c62ba344-fd69-ec0c-e9a2-05c409e1e49f","40a63562-3a1a-cfbd-af74-1021fb7ebe82","b1ab6180-354d-3db8-5a60-344d026cc070","768a57a8-7f8a-2f6e-0b89-6ceab1205708","8675c900-075e-b615-bf9a-69dba6607a83","e6a38e54-bf72-675b-59db-abc12a6581f1","0f7345b7-226c-576a-20c1-2740bd75ed19","4cd272fd-353b-805d-e243-7e8b7abb627a","9e742857-dd1c-e195-b919-6b0c14023fae","de72c18e-5466-3be3-adc6-1c0bc3faf739","34075079-0973-5227-2afb-ad8eb691ff18","2d12a42a-90a7-f87f-1dc8-a518dbc999ba","941d9cb2-9874-b7ee-5194-7e1a5aca7bd2","2460ac8a-418b-4115-63c0-2b83e4e6f0e3","3f56a4e4-1007-935b-e50b-2effd66e4287","0b3893ef-30cf-e23a-5691-5417e73c5c27","351df60a-6a2c-9f59-cfd7-db9c2120ddab","f2c3b949-7bbd-fa88-f0be-78100d665527","d5b7f13a-4723-5dcf-46bc-be076e9c15e2","03953d31-2448-ddcb-279c-b1a056f98e64","3dd746ac-647d-a53d-6a00-f94a2e4650f7","dd8f9e76-fcbd-be13-a067-ea80fe55f059","34fa5b81-c7d2-9039-b861-da8ae2e23ecf","c0cb63d7-aca6-62dc-613d-f3bdc333f135","2adcc0de-542f-b0a4-bb26-cee7120afe04","6eb39984-7f9d-bddb-45a9-e4e251b03726","f45970db-398b-ca07-8187-77fedde892fb","6c4a97d5-101b-59a5-9500-2566669c8e66","27ef59f4-23b6-8246-5c45-0be7ac09a825","e4b3929e-b418-9d0a-4279-ae90cccb5f3d","3c1f0536-143e-91af-a4d3-7d0a6ae31240","a8d69535-ba54-0377-737e-9b2c14a152fc","1e3f7389-1d2a-a573-c995-00ce32ca81a8","ac07c914-78b3-458e-613e-f1861bee4733","2ee0aa99-697a-893d-4422-40e4c7401b66","362979e0-dbb2-5ed5-a89b-0c01fffa53b7","cb85ee1f-9481-f488-7b64-9d9fb69d0e5e","957d4dd1-395b-c1cb-7ba2-1657c24c03fb","72feedf9-f400-1da6-8a1c-8aea7f30574b","a71fe557-6967-fa0e-8393-dff59664b449","207902b2-c4d5-85df-38fb-8aa2aa0bb3a8","6a75f72b-3b9e-1824-a19a-41ceec757bd0","2dc5dcb6-e51b-6f92-10e8-d1d7b45d3dee","379d09ea-8fe9-6efe-a1ee-d1dff32e7171","76234f5e-255a-3cd5-11c5-15d24cecfa44","98446dbf-9adf-59a2-6174-93653c9e5d38","beca3c98-1c87-4750-d453-dafd488f19bc","45a3d4d8-d328-9e47-4721-cf2df86e6bda","ebcc19bc-6cdf-1327-d8dc-ac05b86d1b4f","0270f2d0-8c8f-cb35-0441-d8314a9a7204","328b34dd-1749-5ca2-fa5b-97f7fd88d2eb","9a75fba5-b8ec-59b9-9c5b-632811517724","593e9013-1f16-b09c-ed07-ee6167bd7076","8ec5fde7-3f09-6c5d-bc5b-e23410a805ff","ba9a812b-ed54-0ff0-d717-90bc5721c7e9","d4d49ae1-6eea-fd40-5ec5-be5db8e33ccd","cb0fe6cd-e67b-6976-0124-22b27fb79a59","cadb9571-8b0c-a225-cb09-6321e82c447f","5bb9245f-b176-2525-3777-f2c796474478","f79433a5-2908-a3a2-90b0-c6974e3e051e","72e9fa9b-81fc-92b4-b90b-2811925304c2","75693ad5-c525-ae50-0e13-c84dc3007876","3fac3901-1fab-b9b5-322b-0d1d1ef51595","d2f3200a-d792-8e2b-bea2-ddf710ed369e","d0d0210e-58fa-08f1-1c2d-a97ffd8c4243","dedb6a10-013d-7ffe-96b0-5f4a29f72fe4","c001bdce-f705-b31d-caf4-88a1d36f8fd3","8d1e09d9-988b-64a9-c1f2-4422421c044f","18dd114c-d002-bee6-343a-cda1ee6e56fd","ddf2b459-5ed6-26ac-4e2c-506455d97be3","6f13d7f2-2fd4-7d64-bcc4-74a983522c99","554cce53-e95a-59fe-0079-f6276010ff81","8c2e99d6-88a7-0fda-8e40-2c2d6a343571","b84cf1d6-7f9c-2530-e4b5-a13163ae0921","e95f1950-9774-831c-005a-524789d4ba9d","5a4970fc-8d5f-c080-6cdb-82a19594763d","88e37340-f57b-2d4a-58a1-4523f7ab9410","46365158-2cd9-dbe4-2e9f-f93fdf308abd","d260532c-1a34-1a09-e2b1-f0629cd923c6","2444e5ce-eded-307f-443c-1f643bbee336","fea2a5af-eb8d-82bd-5ed4-f6be556bd1d2","350b94cf-70c3-6567-4dd5-47d7be9c5949","0f01c6ca-57b0-ae4e-f71f-e2355de6e224","5712b375-2958-be5c-f873-0124886d52c1","10bbbeb5-df8b-f838-053c-80178b6ffd61","e435e82b-8845-1786-1998-e94675fa86e4","d862d780-2243-b82f-cb7a-79f3374a4a0f","22db6109-6073-0acd-5269-84aa012ed0b3","e0b2f1d7-6c84-70d9-344d-02300b56b439","c9a4cfac-683b-a84a-76d3-85ede3bade9e","1df7fd96-346b-9a6e-6394-66755057322d","3a243dd9-b055-c83d-0d62-b46cff964838","a00d30b2-f3d1-f8c6-6844-72c8c83b3325","cdd9566f-33b9-0283-3607-24c59a69fe04","faf54ddd-e75c-7bcf-1cdb-e46a9e44f8be","c36d1a87-48b3-2654-97d9-ab412e2b5f65","16c91063-d59f-b220-c8e1-9f35b0cbbab5","725d06ed-03ac-427c-2af1-a84c0ad53ed4","355143cd-fb90-dbf0-d7ec-3f3242a8b148","aa2f64a4-d66e-1586-b334-d240ff8f1fbc","66c290b3-8bae-2972-e75c-08ea910bbbfc","ddc56a24-182e-7f76-73ef-7eb89dad259f","0ff2dfa3-da38-0dde-7d99-92aceea860be","48601073-1c5e-3606-8e08-933ee60074b8","e59b20db-7f7b-153c-6c28-61a1457f17e6","30a9f027-b7d8-57ed-30e0-8dc43a3c5222","d486a95a-e9af-de72-f979-b2f789ba87f1","6050d4f6-0f26-3f09-14d8-1a83ff609927","8def38a3-6f25-ebf5-a8b4-087f248083cf","1ab2dd39-cfdd-f68f-59dc-ffcfc41742e8","c990b58c-9171-8f4d-25a2-3de7039420aa","b7c0f960-e532-ab26-08a6-468474cb7c68","f4c9211c-14ba-6ab0-9235-6fe478f9677b","75fc3f6f-e082-915f-c726-ba8d6cc6cc8b","10cf9b76-0260-020a-76e7-27bd5bc32009","4ea662db-ca14-363b-592f-1eb49dfb3f73","b00e2f7c-ef86-791b-6806-d0d015ec702e","5e7a2eb1-e7ca-9e79-efd9-0c3fa94d0518","52c3109f-5313-42f8-5ac9-f75e7c22605d","3bbfca42-50fe-3ed2-13b7-6fea065e7b60","27b2f56b-afb1-bdac-cb8d-416d06ea724e","f070da88-9df6-1876-100f-e46d30fe12e2","8f932ee3-1dbd-4c3a-a52b-e13da72b8607","b0249a1b-c6bd-b417-5040-b1426ee72742","b22beb5f-fdae-2f7e-1485-390e79474d2f","35c247a0-b871-47be-d759-70cb07daa078","7ead2877-1446-0998-2139-d600449a5eab","7e7eaed5-1f95-c14d-164a-3169b5bd5fe5","c0212841-1293-da41-fcba-70ad9a7d809d","8166478a-e26c-f6f7-05f5-c6a4329b1df0","ed898736-365f-0237-f05e-1929605cfd62","4c75603c-f98d-90dc-0190-b1cdf9cb8f10","7026a21c-11a2-a14c-2be7-ce1a97f786b4","61b611b7-c1be-ac1f-8ec0-f8f06e9d01b3","c5b1309c-a9c6-4098-93ac-5d8e4dd8e5ac","a1c6f8f0-b2f5-9078-7a4c-5cc4bdc77ac3","f3a4c155-b508-7efe-8c9b-8065e9e28804","1cef2c97-aa16-b8ab-3e14-81fec8914c25","2ae27928-e77d-1cba-8b1d-8b84869a264e","476df164-f3f2-98e0-a535-f51e0e2a712f","ae25a0b6-2159-20f1-2b0c-12be23854106","5ac3e103-e47f-cce8-c7aa-1a6b4fd7b169","1c8f72a9-078c-cd97-9d0d-7c68ac648c5a","b8384fd9-a88d-831a-05a4-ca35faaa7fc3","0420cdf9-0b42-ce87-8075-193ae1ee02a8","53f3fbf4-6e4e-e1b2-0ea4-79c787981e25","f3a79a21-39d2-5e62-fd32-e1d9adacaadd","7c2a5c7f-2476-7742-045f-8e6218755bc7","78db0dd3-3fbf-0dad-230d-9a71d9b5e5f1","deac3bde-0aa8-aa5d-6445-389cab5f171e","4fa09be9-fab2-0225-b6de-51f848a1e26d","7a28c626-31e5-ec0a-da6f-91a06331244c","823de00d-f7e9-336c-db3f-40d8a5fc0121","6a60b3a2-b69e-7fea-6fa8-cd5937d387f9","e555e9fd-5d07-c57b-9b21-df60d94d6d68","3336627a-b4a6-6dc6-3088-acf3a071c190","fc911cc5-5d9d-0bfd-e28f-c1e8894f64ae","381f7a3c-bc4d-32d3-4df5-e6723b92a953","b8024ca2-926d-7b23-f1d2-293bb80c0b13","0d7473e7-b958-333e-a24e-a3d412f224e8","83107445-6d24-b292-2c17-c6f114a4f58b","4ea43227-12df-02fe-3192-68bd02039c30","122147ca-78f0-0804-4bac-d55d3fab9e6d","b7c174b0-a147-0182-2139-f0aa8596905a","cff0251e-91b0-3244-ae29-7965e6dd2566","a27924b5-a04b-47ec-8c6c-9959af1fd3d8","003e3339-9305-a079-3674-51e0e2731386","35dfec57-29f6-6155-fa91-30ffe8542f09","503adcbb-613c-7338-84cb-ff9d392efb93","7cde4f23-0eec-76a4-2317-c92f01b94df8","ea547e4f-a731-9ec8-3f54-c7d74dc9ce97","36e0b1b3-4625-8627-ddd5-9efc5d0078de","7bc2251a-fd99-af10-b879-913b2ace2f1a","e656d7e8-860b-3bd8-3d67-579c38db6f17","f55110a4-33bf-4f0d-2c64-9928c8f14c0e","0fca4b31-9390-d1cd-4fce-cb4060ac1658","722a9ae9-de1a-01d8-97fe-1ee3d540d456","32f3126e-6ac1-51d6-14aa-a5af6b3ea481","2a097e6a-3bd4-eab6-f094-6c0251dd9660","21ee7c5a-a576-9da3-a0fb-ed7c79d39d3b","73531e09-6229-1998-16cc-a141a8992764","1db3337c-be10-1d23-8000-39f3136a1fe6","aa3b30fd-6336-2c18-015c-6d71a108c0d3","19d6415c-ac47-0bb0-a8da-1d691e3542e3","92405d6b-25d8-a3c6-9c22-af20360202ab","fdfa00db-808a-b7ed-ae5b-a701576c3281","79e45e9a-aa07-4aa6-a1cb-210b27a875e7","68b33c9d-b4aa-8548-d9a2-b53b3c4b2409","c5a101b9-367c-8c16-882d-379d6fd29618","5df7f82d-b08d-8f87-b320-cfe8fcb73add","2f854f7d-d9d6-8a6f-6ab3-8a30a531a0bd"]}]}],"textures":[{"path":"E:\\vscodeProjects\\gitProjects\\sapdon\\examples\\thaumcraft\\res\\textures\\items\\flipbook_items\\amulet_runic.png","name":"amulet_runic.png","folder":"","namespace":"","id":"0","group":"","width":16,"height":64,"uv_width":16,"uv_height":16,"particle":false,"use_as_default":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","pbr_channel":"color","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"aafae8a1-3007-1716-640a-0b76471e8963","relative_path":"../../thaumcraft/res/textures/items/flipbook_items/amulet_runic.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAABACAYAAAATffeWAAAAAXNSR0IArs4c6QAAA2pJREFUWEftl31ME3cYxz+nR5HCOl4iJCaoaJdNgyFhzYizDv+YClMCCtswGHUbJrpgcDCmS7pNZyVRNCYum2KMLxEcOgzEKUYbpCbE4DKmgc6uhk1EnUxTMjtA1vZ6y52jC76RG/3L9P66t+f7e+73PN9PnhMY4yGMMZ4RAlarVbZYLE8UtSzSydbT3seeqTeUQLPZTElJCYWFhTwqcrLhmLz38yI2ZOn46NgQP/UEgkLqid1ul5Vgh8MRFLzSsInYKAGdCBULdcREClz6TaLqnJcL16RnCxRliPKXuZFqkCBAe7fE/lYfPgl6PTKT0nJobGxURYIrKhd1dXWkRf/C16e6WTdnOrI+gI8Yti3zc/W2n102LzanJKSmpspGo1EVCaai7IPz+01q8JYlM8ixGMicuhrX5WoqNv/N2gUPqDrrpcX1FIGCV0V5W34klYcl3lxoYPYXeUyJL6e35g2KN96l/sRWsld+ht318PuHKxbMoNgcIVcujeSTbw18XPw7KcaJ9Ovj8bX0UfqNmz1let6pfvAMgbkRcrXtHsuzzOzPdqA3T2LwXiL1hztpuSyxp64ymIGyupKFUu7HMlhzPJn10U6SpsGZziRab/1BzYlKDuzezKGLfrUCJpNJ3XCl7EEBZQ8KTSLpKRFU1OrxD/yJ6PXywdIJ3HDLHGnzkTgrh66uLrX7h3tmRGu+ljJeXjVbJGuWSLRO4MduiRt9AWra/HiiZowIHPbQE/s+I2W8rNc9fGXQC5eu/9d5j5ovtG78P9YObQZhHoSYB+8WJfLCK3MIOG1s3K2RB/nvDZFduh6kXKSTBeRW9GnjgXWtF3GinqSE+/Q0eSg7JGjjwdFSN0z20NdfQOuO72joHNTGg7JYHy+l36KpY4jTVwjzYBSPh9bOYwZKmAch5kFG+V+8PW8Jrftus/1gl7b54NOc15leZVCmANznVrPy/TZtPNi1op+Y9JcROz3cHXLx4Y5x2njw1Vu/kjA3k44743DUNmFrRxsPNky+iWFKgJqfB3F1hHkwmkPDPPh3Wn9O/xdWpcnorQVIzXbKLR5tPMhLjmX+8cXcl9bwotNE/jJBGw/WrYgjPfMm7jserp2BnfUaeXC09CqBqHj6B4zsbArQ0/yDNh5sTXYSNxOs56PpvT4Qng9GAcI/bpPKbtiKhL8AAAAASUVORK5CYII="}]}
|