From 59905ad5a44fe8b44bcb2c516f5e5b15169e15cf Mon Sep 17 00:00:00 2001 From: Terri00 Date: Sun, 10 Mar 2019 23:28:39 +0000 Subject: [PATCH] Auto radar --- MCDV/MCDV.vcxproj | 6 +- MCDV/MCDV.vcxproj.filters | 18 +- MCDV/Mesh.hpp | 28 +- MCDV/blimey.vmf | 92541 +++++++++++++++++++++++++++ MCDV/buyzone-bombtargets.png | Bin 0 -> 30558 bytes MCDV/convexPolytope.h | 280 + MCDV/de_tavr.txt | 8 + MCDV/de_tavr_test.prt | 362 + MCDV/de_tavr_test.txt | 8 + MCDV/de_tavr_test.vmf | 2504 + MCDV/de_tavr_test.vmx | 2504 + MCDV/de_tavr_test_displacement.vmf | 559 + MCDV/de_tavr_test_displacement.vmx | 559 + MCDV/de_tavr_test_radar.dds | Bin 0 -> 4194431 bytes MCDV/depth.fs | 19 - MCDV/displacement-test.png | Bin 0 -> 47243 bytes MCDV/fuzzy_select.h | 31 + MCDV/main.cpp | 794 +- MCDV/main.cpp.backup.temp | 116 +- MCDV/plane.h | 168 + MCDV/playable-space.png | Bin 0 -> 60079 bytes MCDV/radar.txt | 8 + MCDV/render.png | Bin 87773 -> 32269 bytes MCDV/shaders/depth.fs | 10 +- MCDV/unlit.vs | 3 +- MCDV/vdf.hpp | 30 +- MCDV/vmf.hpp | 732 + 27 files changed, 100580 insertions(+), 708 deletions(-) create mode 100644 MCDV/blimey.vmf create mode 100644 MCDV/buyzone-bombtargets.png create mode 100644 MCDV/convexPolytope.h create mode 100644 MCDV/de_tavr.txt create mode 100644 MCDV/de_tavr_test.prt create mode 100644 MCDV/de_tavr_test.txt create mode 100644 MCDV/de_tavr_test.vmf create mode 100644 MCDV/de_tavr_test.vmx create mode 100644 MCDV/de_tavr_test_displacement.vmf create mode 100644 MCDV/de_tavr_test_displacement.vmx create mode 100644 MCDV/de_tavr_test_radar.dds delete mode 100644 MCDV/depth.fs create mode 100644 MCDV/displacement-test.png create mode 100644 MCDV/fuzzy_select.h create mode 100644 MCDV/plane.h create mode 100644 MCDV/playable-space.png create mode 100644 MCDV/radar.txt create mode 100644 MCDV/vmf.hpp diff --git a/MCDV/MCDV.vcxproj b/MCDV/MCDV.vcxproj index b69e19e..4431cc5 100644 --- a/MCDV/MCDV.vcxproj +++ b/MCDV/MCDV.vcxproj @@ -125,7 +125,9 @@ + + @@ -134,6 +136,7 @@ + @@ -145,6 +148,7 @@ + @@ -154,11 +158,11 @@ - + diff --git a/MCDV/MCDV.vcxproj.filters b/MCDV/MCDV.vcxproj.filters index bc88a0e..9c85231 100644 --- a/MCDV/MCDV.vcxproj.filters +++ b/MCDV/MCDV.vcxproj.filters @@ -107,6 +107,18 @@ OpenGL\stb + + Header Files\valve + + + Header Files\math + + + Header Files\math + + + Header Files\math + @@ -132,9 +144,6 @@ OpenGL\Shader Files - - OpenGL\Shader Files - OpenGL\Shader Files @@ -153,6 +162,9 @@ Source Files + + OpenGL\Shader Files + diff --git a/MCDV/Mesh.hpp b/MCDV/Mesh.hpp index b1176a6..a5a5c13 100644 --- a/MCDV/Mesh.hpp +++ b/MCDV/Mesh.hpp @@ -14,7 +14,8 @@ #include enum MeshMode { - POS_XYZ_TEXCOORD_UV + POS_XYZ_TEXCOORD_UV, + POS_XYZ_NORMAL_XYZ }; class Mesh { @@ -55,6 +56,27 @@ public: glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 5 * sizeof(float), (void*)(3 * sizeof(float))); glEnableVertexAttribArray(1); } + else if (mode == MeshMode::POS_XYZ_NORMAL_XYZ) { + this->vertices = vertices; + this->elementCount = vertices.size() / 6; + + // first, configure the cube's VAO (and VBO) + glGenVertexArrays(1, &this->VAO); + glGenBuffers(1, &this->VBO); + + glBindBuffer(GL_ARRAY_BUFFER, this->VBO); + glBufferData(GL_ARRAY_BUFFER, vertices.size() * sizeof(float), &vertices[0], GL_STATIC_DRAW); + + glBindVertexArray(this->VAO); + + // position attribute + glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 6 * sizeof(float), (void*)0); + glEnableVertexAttribArray(0); + + // Normal vector + glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 6 * sizeof(float), (void*)(3 * sizeof(float))); + glEnableVertexAttribArray(1); + } } Mesh(std::vector vertices) { @@ -85,8 +107,6 @@ public: ~Mesh() { glDeleteVertexArrays(1, &this->VAO); glDeleteBuffers(1, &this->VBO); - - std::cout << "DESTRUCTED" << std::endl; } void Draw() { @@ -140,8 +160,6 @@ public: ~VertAlphaMesh() { glDeleteVertexArrays(1, &this->VAO); glDeleteBuffers(1, &this->VBO); - - std::cout << "DESTRUCTED" << std::endl; } void Draw() { diff --git a/MCDV/blimey.vmf b/MCDV/blimey.vmf new file mode 100644 index 0000000..c91553e --- /dev/null +++ b/MCDV/blimey.vmf @@ -0,0 +1,92541 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "8075" + "mapversion" "124" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ + visgroup + { + "name" "old map" + "visgroupid" "3" + "color" "101 44 44" + } + visgroup + { + "name" "tavr_layout" + "visgroupid" "22" + "color" "226 91 216" + } +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "8" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "124" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxpropscreenwidth" "-1" + "skyname" "nukeblank" + solid + { + "id" "33222" + side + { + "id" "30447" + "plane" "(-1056 768 64) (-1056 1536 64) (-288 1536 64)" + "material" "DEV/VALUESAND40" + "uaxis" "[1 0 0 5.28] 200" + "vaxis" "[0 -1 0 23.04] 200" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1056 768 64]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 -0.999987 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + distances + { + "row0" "0 0.00927734 3.89242 3.37946 1.18138 30.6539 60.1996 68.4819 42.3846" + "row1" "4.47814 2.7453 9.64752 9.7148 28.2596 71.5135 107.393 100.954 63.0669" + "row2" "13.4778 12.5383 21.04 33.4536 48.6496 83.4394 112.403 110.321 72.7628" + "row3" "35.3271 31.3932 36.6153 49.2096 60.3996 63.1467 90.7351 108.607 91.9246" + "row4" "44.3753 41.8251 41.3015 52.6987 61.3383 62.705 77.9152 108.389 101.536" + "row5" "48.2662 44.7933 49.5915 60.476 66.4843 61.2882 69.8582 83.4036 80.3039" + "row6" "55.4659 53.9988 58.9511 64.7542 67.4905 62.2308 58.9007 58.8063 59.0169" + "row7" "55.3026 58.4398 62.4599 66.7684 67.1866 64.6891 62.2632 61.5357 63.1891" + "row8" "51.6439 58.7478 62.5742 65.8321 67.9781 65.9513 62.2919 61.1778 56.4935" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "30446" + "plane" "(-1056 1536 32) (-1056 768 32) (-288 768 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30445" + "plane" "(-1056 768 32) (-1056 1536 32) (-1056 1536 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30444" + "plane" "(-288 1536 32) (-288 768 32) (-288 768 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30443" + "plane" "(-1056 1536 32) (-288 1536 32) (-288 1536 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30442" + "plane" "(-288 768 32) (-1056 768 32) (-1056 768 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "183 192 0" + "groupid" "33220" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "27519" + side + { + "id" "29668" + "plane" "(0 -2592 64) (768 -2592 64) (768 -3072 64)" + "material" "DEV/VALUESAND40" + "uaxis" "[1 0 0 0] 200" + "vaxis" "[0 -1 0 0] 200" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[0 -3072 64]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 -1 0 0 1 0 0 -0.999999 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 -1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 -1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 -1" + "row8" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 -1 0 0 -1" + } + distances + { + "row0" "13.2373 34.7059 47.2356 30.4415 5.55398 4.12671 26.5971 57.5782 61.7759" + "row1" "11.0252 30.048 37.5348 16.257 15.0411 7.44755 32.1095 67.9933 72.5433" + "row2" "5.56345 28.1665 31.9792 9.81449 16.0041 14.0462 35.3901 72.6905 60.608" + "row3" "6.55199 32.3661 22.7069 2.91593 13.1849 18.136 35.3427 68.5904 59.2499" + "row4" "2.28376 19.8026 5.86804 6.96095 10.881 16.9131 34.5695 57.2131 56.0698" + "row5" "0.442085 15.3994 0.227676 0.544628 1.44495 10.9514 32.1992 43.5208 27.8329" + "row6" "2.12568 19.3938 6.791 10.3381 6.75446 4.67104 21.4216 29.7353 9.10155" + "row7" "15.2829 3.00868 9.94488 15.4609 12.7082 0.627594 7.87337 23.5223 11.8779" + "row8" "32.9132 2.45841 10.2155 17.238 16.0686 5.05288 1.77668 1.04961 23.0908" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 230 230 180 255 255 255 255 230" + "row1" "0 255 230 105 255 255 255 130 80" + "row2" "5 255 180 255 255 255 180 80 30" + "row3" "30 255 155 230 255 255 180 55 0" + "row4" "55 255 180 255 255 230 155 80 0" + "row5" "105 255 255 255 255 155 130 105 30" + "row6" "105 230 255 255 255 130 55 5 0" + "row7" "30 230 230 255 255 130 30 0 0" + "row8" "130 180 230 255 255 155 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "29669" + "plane" "(0 -3072 32) (768 -3072 32) (768 -2592 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29670" + "plane" "(0 -2592 64) (0 -3072 64) (0 -3072 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29671" + "plane" "(768 -2592 32) (768 -3072 32) (768 -3072 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29672" + "plane" "(768 -2592 64) (0 -2592 64) (0 -2592 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29673" + "plane" "(768 -3072 32) (0 -3072 32) (0 -3072 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "183 192 0" + "groupid" "27726" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "27520" + side + { + "id" "29685" + "plane" "(0 -3072 64) (768 -3072 64) (768 -3840 64)" + "material" "DEV/VALUESAND40" + "uaxis" "[1 0 0 0] 200" + "vaxis" "[0 -1 0 0] 200" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[0 -3840 64]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + distances + { + "row0" "0 0 1.32979 10.763 27.8777 46.3043 58.806 68.2702 80.0583" + "row1" "0 0 7.09424 31.0739 65.6219 95.261 105.643 106.406 107.172" + "row2" "0 2.91957 20.6341 57.3641 101.348 128.724 130.816 118.934 108.004" + "row3" "0 7.83662 33.052 69.1603 107.605 127.932 122.824 123.099 109.342" + "row4" "0.797607 11.4801 35.577 65.2295 85.1643 104.562 103.342 88.7232 89.3395" + "row5" "5.98309 15.8853 37.9637 69.3566 85.8586 91.7376 69.9512 61.9357 37.1562" + "row6" "8.47011 30.7433 50.9265 71.5421 74.5641 44.5367 31.3863 17.5918 26.7068" + "row7" "5.37728 35.6259 53.874 59.102 36.9098 16.7711 9.40409 32.394 53.9572" + "row8" "13.2373 34.7059 47.2356 30.4415 5.55398 4.12671 26.5971 57.5782 61.7759" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "255 255 255 255 255 255 255 255 255" + "row1" "255 255 255 255 255 255 255 155 30" + "row2" "255 255 255 255 180 80 130 180 180" + "row3" "255 255 255 205 0 130 230 155 205" + "row4" "255 255 205 55 230 155 230 130 230" + "row5" "230 155 80 130 180 180 250 255 255" + "row6" "5 5 130 205 230 155 180 255 255" + "row7" "105 155 255 230 205 255 255 255 255" + "row8" "0 230 230 180 255 255 255 255 230" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "29684" + "plane" "(0 -3840 32) (768 -3840 32) (768 -3072 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29683" + "plane" "(0 -3072 64) (0 -3840 64) (0 -3840 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29682" + "plane" "(768 -3072 32) (768 -3840 32) (768 -3840 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29681" + "plane" "(768 -3072 64) (0 -3072 64) (0 -3072 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29680" + "plane" "(768 -3840 32) (0 -3840 32) (0 -3840 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "183 192 0" + "groupid" "27726" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "27528" + side + { + "id" "29697" + "plane" "(768 -3072 64) (1536 -3072 64) (1536 -3840 64)" + "material" "DEV/VALUESAND40" + "uaxis" "[1 0 0 0] 200" + "vaxis" "[0 -1 0 0] 200" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[768 -3840 64]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + distances + { + "row0" "80.0583 89.1498 81.4359 70.6635 60.7407 58.6452 64.3848 54.4231 35.8743" + "row1" "107.172 103.151 88.0687 77.7174 78.0335 86.3265 99.4466 88.417 51.9143" + "row2" "108.004 101.513 91.9141 84.1085 92.4613 104.78 115.081 110.047 75.3561" + "row3" "109.342 103.913 96.9357 89.683 101.662 116.115 128.339 133.495 106.617" + "row4" "89.3395 90.3 93.761 101.129 114.733 126.542 127.591 138.621 118.365" + "row5" "37.1562 64.6374 87.56 101.993 117.248 129.114 128.585 130.231 121.267" + "row6" "26.7068 75.5586 78.3107 93.7309 109.722 122.427 123.205 121.284 116.76" + "row7" "53.9572 52.8224 60.8371 80.3185 100.08 115.223 117.002 114.504 111.727" + "row8" "61.7759 44.0377 46.3201 60.3077 87.592 102.71 105.661 108.023 97.0169" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "255 130 55 130 155 255 205 230 255" + "row1" "30 180 230 205 205 180 230 205 255" + "row2" "180 155 230 255 255 230 205 130 205" + "row3" "205 130 205 205 255 130 255 255 230" + "row4" "230 80 105 155 230 155 230 255 255" + "row5" "255 255 255 255 255 255 230 255 255" + "row6" "255 255 255 255 255 255 255 255 255" + "row7" "255 255 130 255 255 255 255 255 255" + "row8" "230 180 105 130 205 230 255 255 255" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "29696" + "plane" "(768 -3840 32) (1536 -3840 32) (1536 -3072 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29695" + "plane" "(768 -3072 64) (768 -3840 64) (768 -3840 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29694" + "plane" "(1536 -3072 32) (1536 -3840 32) (1536 -3840 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29693" + "plane" "(1536 -3072 64) (768 -3072 64) (768 -3072 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29692" + "plane" "(1536 -3840 32) (768 -3840 32) (768 -3840 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "183 192 0" + "groupid" "27726" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "28047" + side + { + "id" "29817" + "plane" "(-352 -2688 64) (-352 -3200 64) (-800 -2976 64)" + "material" "DEV/VALUESAND40" + "uaxis" "[1 0 0 4.32] 200" + "vaxis" "[0 -1 0 -3.04] 200" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29816" + "plane" "(-352 -3200 32) (-352 -2688 32) (-512 -2688 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29815" + "plane" "(-512 -2688 64) (-800 -2976 64) (-800 -2976 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29814" + "plane" "(-352 -3200 64) (-352 -2688 64) (-352 -2688 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29813" + "plane" "(-352 -2688 64) (-512 -2688 64) (-512 -2688 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29812" + "plane" "(-800 -2976 64) (-352 -3200 64) (-352 -3200 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "28052" + side + { + "id" "29829" + "plane" "(-384 -3296 64) (-352 -3296 64) (-352 -3424 64)" + "material" "SOLUTION2/OUTDOOR/PATH" + "uaxis" "[0 -1 0 -640] 0.25" + "vaxis" "[-1 0 0 -640] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29828" + "plane" "(-352 -3296 32) (-384 -3296 32) (-384 -3424 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29827" + "plane" "(-384 -3296 32) (-352 -3296 32) (-352 -3296 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29826" + "plane" "(-352 -3424 32) (-384 -3424 32) (-384 -3424 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29825" + "plane" "(-352 -3296 32) (-352 -3424 32) (-352 -3424 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29824" + "plane" "(-384 -3424 32) (-384 -3296 32) (-384 -3296 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "28164" + side + { + "id" "30021" + "plane" "(-800 -2976 64) (-352 -3200 64) (-352 -3296 64)" + "material" "SOLUTION2/OUTDOOR/PATH" + "uaxis" "[0.447214 0.894427 0 861] 0.5" + "vaxis" "[0.715541 -0.357771 -0.6 -460] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30020" + "plane" "(-352 -3200 32) (-800 -2976 32) (-1120 -3296 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30019" + "plane" "(-1120 -3296 64) (-352 -3296 64) (-352 -3296 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30018" + "plane" "(-352 -3200 64) (-800 -2976 64) (-800 -2976 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.894427 0.447214 0 3.36914] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30017" + "plane" "(-800 -2976 64) (-1120 -3296 64) (-1120 -3296 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30016" + "plane" "(-352 -3296 64) (-352 -3200 64) (-352 -3200 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "28271" + side + { + "id" "30033" + "plane" "(128 -2688 64) (128 -2592 64) (512 -2592 64)" + "material" "SOLUTION2/OUTDOOR/PATH" + "uaxis" "[1 0 0 -768] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30032" + "plane" "(128 -2592 32) (128 -2688 32) (512 -2688 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30031" + "plane" "(128 -2688 32) (128 -2592 32) (128 -2592 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30030" + "plane" "(512 -2592 32) (512 -2688 32) (512 -2688 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30029" + "plane" "(128 -2592 32) (512 -2592 32) (512 -2592 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30028" + "plane" "(512 -2688 32) (128 -2688 32) (128 -2688 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "28276" + side + { + "id" "30045" + "plane" "(992 -3456 160) (896 -3456 160) (896 -3072 160)" + "material" "SOLUTION2/OUTDOOR/PATH" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[1 0 0 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30044" + "plane" "(896 -3456 128) (992 -3456 128) (992 -3072 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30043" + "plane" "(992 -3456 128) (896 -3456 128) (896 -3456 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30042" + "plane" "(896 -3072 128) (992 -3072 128) (992 -3072 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30041" + "plane" "(896 -3456 128) (896 -3072 128) (896 -3072 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30040" + "plane" "(992 -3072 128) (992 -3456 128) (992 -3456 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "28283" + side + { + "id" "30057" + "plane" "(992 -3456 160) (992 -3072 160) (1216 -3072 192)" + "material" "SOLUTION2/OUTDOOR/PATH" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[1 0 0 -640] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30056" + "plane" "(1216 -3456 128) (1216 -3072 128) (992 -3072 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30055" + "plane" "(992 -3456 128) (992 -3456 160) (1216 -3456 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30054" + "plane" "(1216 -3072 128) (1216 -3072 192) (992 -3072 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30053" + "plane" "(992 -3072 128) (992 -3072 160) (992 -3456 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30052" + "plane" "(1216 -3456 128) (1216 -3456 192) (1216 -3072 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25076" + side + { + "id" "27629" + "plane" "(1688 -984 392) (1680 -984 392) (1680 -712 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27628" + "plane" "(1688 -712 200) (1680 -712 200) (1680 -984 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27627" + "plane" "(1680 -984 392) (1680 -984 200) (1680 -712 200)" + "material" "GLASS/HR_G/HR_GLASS_PANEL_001" + "uaxis" "[0 1 0 175.158] 0.59375" + "vaxis" "[0 0 -1 21.3334] 0.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27626" + "plane" "(1688 -712 392) (1688 -712 200) (1688 -984 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27625" + "plane" "(1680 -712 392) (1680 -712 200) (1688 -712 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27624" + "plane" "(1688 -984 392) (1688 -984 200) (1680 -984 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "118 115 0" + "groupid" "25111" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25078" + side + { + "id" "27641" + "plane" "(1688 -992 400) (1680 -992 400) (1680 -984 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27640" + "plane" "(1680 -992 192) (1688 -992 192) (1688 -984 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27639" + "plane" "(1680 -992 400) (1680 -992 192) (1680 -984 200)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27638" + "plane" "(1688 -992 192) (1688 -992 400) (1688 -984 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27637" + "plane" "(1688 -992 400) (1688 -992 192) (1680 -992 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27636" + "plane" "(1680 -984 392) (1680 -984 200) (1688 -984 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "118 115 0" + "groupid" "25111" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25081" + side + { + "id" "27659" + "plane" "(1680 -992 416) (1648 -992 416) (1648 -672 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27658" + "plane" "(1680 -704 400) (1648 -672 400) (1648 -992 400)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27657" + "plane" "(1648 -992 416) (1648 -992 400) (1648 -672 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27656" + "plane" "(1680 -704 416) (1680 -704 400) (1680 -992 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27655" + "plane" "(1648 -672 416) (1648 -672 400) (1680 -704 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27654" + "plane" "(1680 -992 416) (1680 -992 400) (1648 -992 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "118 115 0" + "groupid" "25111" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25095" + side + { + "id" "27664" + "plane" "(1680 -712 392) (1680 -704 400) (1688 -712 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27663" + "plane" "(1680 -712 200) (1688 -712 200) (1680 -704 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27662" + "plane" "(1680 -712 392) (1680 -712 200) (1680 -704 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27661" + "plane" "(1680 -712 200) (1680 -712 392) (1688 -712 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27660" + "plane" "(1688 -712 200) (1688 -712 392) (1680 -704 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "118 115 0" + "groupid" "25111" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25097" + side + { + "id" "27671" + "plane" "(1680 -712 200) (1688 -712 200) (1688 -984 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27670" + "plane" "(1680 -992 192) (1688 -992 192) (1688 -712 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27669" + "plane" "(1680 -704 192) (1680 -712 200) (1680 -984 200)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27668" + "plane" "(1688 -992 192) (1688 -984 200) (1688 -712 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27667" + "plane" "(1680 -992 192) (1680 -984 200) (1688 -984 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27666" + "plane" "(1688 -712 200) (1680 -712 200) (1680 -704 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27665" + "plane" "(1688 -712 192) (1688 -712 200) (1680 -704 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "118 115 0" + "groupid" "25111" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25100" + side + { + "id" "27678" + "plane" "(1680 -984 392) (1688 -984 392) (1688 -712 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27677" + "plane" "(1680 -704 400) (1688 -712 400) (1688 -992 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27676" + "plane" "(1680 -712 392) (1680 -704 400) (1680 -992 400)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27675" + "plane" "(1688 -984 392) (1688 -992 400) (1688 -712 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27674" + "plane" "(1680 -984 392) (1680 -992 400) (1688 -992 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27673" + "plane" "(1688 -712 392) (1680 -704 400) (1680 -712 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27672" + "plane" "(1688 -712 400) (1680 -704 400) (1688 -712 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "118 115 0" + "groupid" "25111" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25113" + side + { + "id" "27722" + "plane" "(2104 -712 392) (2104 -704 392) (1688 -704 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27721" + "plane" "(1688 -712 400) (1680 -704 400) (2112 -704 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27720" + "plane" "(1680 -704 400) (1688 -704 392) (2104 -704 392)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27719" + "plane" "(2112 -712 400) (2104 -712 392) (1688 -712 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27718" + "plane" "(2112 -704 400) (2104 -704 392) (2104 -712 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27717" + "plane" "(1688 -712 392) (1688 -704 392) (1680 -704 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27716" + "plane" "(1688 -712 400) (1688 -712 392) (1680 -704 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "118 115 0" + "groupid" "25112" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25114" + side + { + "id" "27729" + "plane" "(1688 -712 200) (1688 -704 200) (2104 -704 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27728" + "plane" "(2112 -712 192) (2112 -704 192) (1680 -704 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27727" + "plane" "(1688 -704 200) (1680 -704 192) (2112 -704 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27726" + "plane" "(2104 -712 200) (2112 -712 192) (1688 -712 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27725" + "plane" "(2104 -704 200) (2112 -704 192) (2112 -712 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27724" + "plane" "(1688 -712 200) (1680 -704 192) (1688 -704 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27723" + "plane" "(1688 -712 192) (1680 -704 192) (1688 -712 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "118 115 0" + "groupid" "25112" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25115" + side + { + "id" "27734" + "plane" "(1688 -704 392) (1688 -712 392) (1680 -704 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27733" + "plane" "(1688 -704 200) (1680 -704 192) (1688 -712 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27732" + "plane" "(1688 -704 200) (1688 -704 392) (1680 -704 400)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27731" + "plane" "(1688 -704 392) (1688 -704 200) (1688 -712 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27730" + "plane" "(1688 -712 392) (1688 -712 200) (1680 -704 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "118 115 0" + "groupid" "25112" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25116" + side + { + "id" "27740" + "plane" "(2104 -704 392) (2104 -712 392) (1688 -712 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27739" + "plane" "(1688 -704 200) (1688 -712 200) (2104 -712 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27738" + "plane" "(2104 -704 200) (2104 -704 392) (1688 -704 392)" + "material" "GLASS/HR_G/HR_GLASS_PANEL_001" + "uaxis" "[-1 0 0 29.5386] 0.8125" + "vaxis" "[0 0 -1 21.3334] 0.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27737" + "plane" "(1688 -712 200) (1688 -712 392) (2104 -712 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27736" + "plane" "(1688 -704 200) (1688 -704 392) (1688 -712 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27735" + "plane" "(2104 -712 200) (2104 -712 392) (2104 -704 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "118 115 0" + "groupid" "25112" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25117" + side + { + "id" "27746" + "plane" "(2112 -704 400) (2112 -712 400) (2104 -712 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27745" + "plane" "(2112 -712 192) (2112 -704 192) (2104 -704 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27744" + "plane" "(2112 -704 192) (2112 -704 400) (2104 -704 392)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27743" + "plane" "(2112 -712 400) (2112 -712 192) (2104 -712 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27742" + "plane" "(2112 -712 192) (2112 -712 400) (2112 -704 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27741" + "plane" "(2104 -704 200) (2104 -704 392) (2104 -712 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "118 115 0" + "groupid" "25112" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25118" + side + { + "id" "27752" + "plane" "(2112 -672 416) (2112 -704 416) (1680 -704 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27751" + "plane" "(1648 -672 400) (1680 -704 400) (2112 -704 400)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 64] 0.25" + "vaxis" "[1 0 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27750" + "plane" "(2112 -672 400) (2112 -672 416) (1648 -672 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27749" + "plane" "(1680 -704 400) (1680 -704 416) (2112 -704 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27748" + "plane" "(1648 -672 400) (1648 -672 416) (1680 -704 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27747" + "plane" "(2112 -704 400) (2112 -704 416) (2112 -672 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "118 115 0" + "groupid" "25112" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25156" + side + { + "id" "27764" + "plane" "(1680 -528 192) (2112 -528 192) (2112 -672 192)" + "material" "SOLUTION2/OFFICE/CARPET/CARPET_BLUE_STRIPES" + "uaxis" "[0 1 0 512] 0.25" + "vaxis" "[-1 0 0 -768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27763" + "plane" "(1680 -672 64) (2112 -672 64) (2112 -528 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27762" + "plane" "(2112 -528 64) (2112 -672 64) (2112 -672 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27761" + "plane" "(1680 -528 64) (2112 -528 64) (2112 -528 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27760" + "plane" "(2112 -672 64) (1680 -672 64) (1680 -672 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27759" + "plane" "(1680 -672 64) (1680 -528 64) (1680 -528 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 178 115" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25158" + side + { + "id" "27769" + "plane" "(1680 -448 192) (1760 -528 192) (1680 -528 192)" + "material" "SOLUTION2/OFFICE/CARPET/CARPET_BLUE_STRIPES" + "uaxis" "[0 1 0 512] 0.25" + "vaxis" "[-1 0 0 -768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27768" + "plane" "(1680 -528 64) (1760 -528 64) (1680 -448 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27767" + "plane" "(1760 -528 64) (1680 -528 64) (1680 -528 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27766" + "plane" "(1680 -528 64) (1680 -448 64) (1680 -448 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27765" + "plane" "(1680 -448 64) (1760 -528 64) (1760 -528 192)" + "material" "SOLUTION2/OFFICE/CARPET/CARPET_BLUE_STRIPES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 178 115" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25161" + side + { + "id" "27781" + "plane" "(1680 -704 196) (1648 -672 196) (2112 -672 196)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 192] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27780" + "plane" "(1648 -672 192) (1680 -704 192) (2112 -704 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27779" + "plane" "(1680 -704 192) (1680 -704 196) (2112 -704 196)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27778" + "plane" "(2112 -672 192) (2112 -672 196) (1648 -672 196)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 192] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27777" + "plane" "(2112 -704 192) (2112 -704 196) (2112 -672 196)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27776" + "plane" "(1648 -672 192) (1648 -672 196) (1680 -704 196)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 120 217" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25163" + side + { + "id" "27793" + "plane" "(1648 -992 196) (1648 -672 196) (1680 -704 196)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27792" + "plane" "(1680 -992 192) (1680 -704 192) (1648 -672 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27791" + "plane" "(1680 -992 196) (1680 -704 196) (1680 -704 192)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 -192] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27790" + "plane" "(1648 -672 196) (1648 -992 196) (1648 -992 192)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 192] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27789" + "plane" "(1648 -992 196) (1680 -992 196) (1680 -992 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27788" + "plane" "(1680 -704 196) (1648 -672 196) (1648 -672 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 120 217" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25239" + side + { + "id" "27889" + "plane" "(1280 -1408 192) (1280 -1424 192) (1088 -1424 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[1 0 0 -56] 0.125" + "vaxis" "[0 -1 0 36] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27888" + "plane" "(1088 -1408 184) (1088 -1424 184) (1280 -1424 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27887" + "plane" "(1088 -1424 184) (1088 -1408 184) (1088 -1408 192)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[0 1 0 384] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27886" + "plane" "(1280 -1408 184) (1280 -1424 184) (1280 -1424 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27885" + "plane" "(1088 -1408 184) (1280 -1408 184) (1280 -1408 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27884" + "plane" "(1280 -1424 184) (1088 -1424 184) (1088 -1424 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[-1 0 0 -312] 0.125" + "vaxis" "[0 0 -1 454] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25258" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25243" + side + { + "id" "27901" + "plane" "(1280 -1424 184) (1280 -1440 184) (1088 -1440 184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[1 0 0 -56] 0.125" + "vaxis" "[0 -1 0 -92] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27900" + "plane" "(1088 -1424 176) (1088 -1440 176) (1280 -1440 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27899" + "plane" "(1088 -1440 176) (1088 -1424 176) (1088 -1424 184)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27898" + "plane" "(1280 -1424 176) (1280 -1440 176) (1280 -1440 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27897" + "plane" "(1088 -1424 176) (1280 -1424 176) (1280 -1424 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27896" + "plane" "(1280 -1440 176) (1088 -1440 176) (1088 -1440 184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[-1 0 0 -312] 0.125" + "vaxis" "[0 0 -1 390] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25258" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25244" + side + { + "id" "27913" + "plane" "(1280 -1440 176) (1280 -1456 176) (1088 -1456 176)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[1 0 0 -56] 0.125" + "vaxis" "[0 -1 0 -220] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27912" + "plane" "(1088 -1440 168) (1088 -1456 168) (1280 -1456 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27911" + "plane" "(1088 -1456 168) (1088 -1440 168) (1088 -1440 176)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27910" + "plane" "(1280 -1440 168) (1280 -1456 168) (1280 -1456 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27909" + "plane" "(1088 -1440 168) (1280 -1440 168) (1280 -1440 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27908" + "plane" "(1280 -1456 168) (1088 -1456 168) (1088 -1456 176)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[-1 0 0 -312] 0.125" + "vaxis" "[0 0 -1 326] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25258" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25245" + side + { + "id" "27925" + "plane" "(1280 -1456 168) (1280 -1472 168) (1088 -1472 168)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[1 0 0 -56] 0.125" + "vaxis" "[0 -1 0 -348] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27924" + "plane" "(1088 -1456 160) (1088 -1472 160) (1280 -1472 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27923" + "plane" "(1088 -1472 160) (1088 -1456 160) (1088 -1456 168)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27922" + "plane" "(1280 -1456 160) (1280 -1472 160) (1280 -1472 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27921" + "plane" "(1088 -1456 160) (1280 -1456 160) (1280 -1456 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27920" + "plane" "(1280 -1472 160) (1088 -1472 160) (1088 -1472 168)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[-1 0 0 -312] 0.125" + "vaxis" "[0 0 -1 262] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25258" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25246" + side + { + "id" "27937" + "plane" "(1280 -1472 160) (1280 -1488 160) (1088 -1488 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[1 0 0 -56] 0.125" + "vaxis" "[0 -1 0 -476] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27936" + "plane" "(1088 -1472 152) (1088 -1488 152) (1280 -1488 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27935" + "plane" "(1088 -1488 152) (1088 -1472 152) (1088 -1472 160)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[0 1 0 128] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27934" + "plane" "(1280 -1472 152) (1280 -1488 152) (1280 -1488 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27933" + "plane" "(1088 -1472 152) (1280 -1472 152) (1280 -1472 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27932" + "plane" "(1280 -1488 152) (1088 -1488 152) (1088 -1488 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[-1 0 0 -312] 0.125" + "vaxis" "[0 0 -1 198] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25258" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25247" + side + { + "id" "27949" + "plane" "(1280 -1488 152) (1280 -1504 152) (1088 -1504 152)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[1 0 0 -56] 0.125" + "vaxis" "[0 -1 0 -604] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27948" + "plane" "(1088 -1488 144) (1088 -1504 144) (1280 -1504 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27947" + "plane" "(1088 -1504 144) (1088 -1488 144) (1088 -1488 152)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[0 1 0 192] 0.25" + "vaxis" "[0 0 -1 -160] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27946" + "plane" "(1280 -1488 144) (1280 -1504 144) (1280 -1504 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27945" + "plane" "(1088 -1488 144) (1280 -1488 144) (1280 -1488 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27944" + "plane" "(1280 -1504 144) (1088 -1504 144) (1088 -1504 152)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[-1 0 0 -312] 0.125" + "vaxis" "[0 0 -1 134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25258" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25248" + side + { + "id" "27961" + "plane" "(1280 -1504 144) (1280 -1520 144) (1088 -1520 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[1 0 0 -56] 0.125" + "vaxis" "[0 -1 0 -732] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27960" + "plane" "(1088 -1504 136) (1088 -1520 136) (1280 -1520 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27959" + "plane" "(1088 -1520 136) (1088 -1504 136) (1088 -1504 144)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27958" + "plane" "(1280 -1504 136) (1280 -1520 136) (1280 -1520 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27957" + "plane" "(1088 -1504 136) (1280 -1504 136) (1280 -1504 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27956" + "plane" "(1280 -1520 136) (1088 -1520 136) (1088 -1520 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[-1 0 0 -312] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25258" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25249" + side + { + "id" "27973" + "plane" "(1280 -1520 136) (1280 -1536 136) (1088 -1536 136)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[1 0 0 -56] 0.125" + "vaxis" "[0 -1 0 -860] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27972" + "plane" "(1088 -1520 128) (1088 -1536 128) (1280 -1536 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27971" + "plane" "(1088 -1536 128) (1088 -1520 128) (1088 -1520 136)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[0 1 0 320] 0.25" + "vaxis" "[0 0 -1 -224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27970" + "plane" "(1280 -1520 128) (1280 -1536 128) (1280 -1536 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27969" + "plane" "(1088 -1520 128) (1280 -1520 128) (1280 -1520 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27968" + "plane" "(1280 -1536 128) (1088 -1536 128) (1088 -1536 136)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[-1 0 0 -312] 0.125" + "vaxis" "[0 0 -1 6] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25258" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25260" + side + { + "id" "28027" + "plane" "(1024 -1728 128) (1008 -1728 128) (1008 -1536 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 -1 0 -56] 0.125" + "vaxis" "[-1 0 0 36] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28026" + "plane" "(1024 -1536 120) (1008 -1536 120) (1008 -1728 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28025" + "plane" "(1008 -1536 120) (1024 -1536 120) (1024 -1536 128)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[1 0 0 384] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28024" + "plane" "(1024 -1728 120) (1008 -1728 120) (1008 -1728 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28023" + "plane" "(1024 -1536 120) (1024 -1728 120) (1024 -1728 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28022" + "plane" "(1008 -1728 120) (1008 -1536 120) (1008 -1536 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 200] 0.125" + "vaxis" "[0 0 -1 -58] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25259" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25261" + side + { + "id" "28033" + "plane" "(1008 -1728 120) (992 -1728 120) (992 -1536 120)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 -1 0 -56] 0.125" + "vaxis" "[-1 0 0 -92] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28032" + "plane" "(1008 -1536 112) (992 -1536 112) (992 -1728 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28031" + "plane" "(992 -1536 112) (1008 -1536 112) (1008 -1536 120)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28030" + "plane" "(1008 -1728 112) (992 -1728 112) (992 -1728 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28029" + "plane" "(1008 -1536 112) (1008 -1728 112) (1008 -1728 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28028" + "plane" "(992 -1728 112) (992 -1536 112) (992 -1536 120)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 200] 0.125" + "vaxis" "[0 0 -1 -122] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25259" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25262" + side + { + "id" "28039" + "plane" "(992 -1728 112) (976 -1728 112) (976 -1536 112)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 -1 0 -56] 0.125" + "vaxis" "[-1 0 0 -220] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28038" + "plane" "(992 -1536 104) (976 -1536 104) (976 -1728 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28037" + "plane" "(976 -1536 104) (992 -1536 104) (992 -1536 112)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28036" + "plane" "(992 -1728 104) (976 -1728 104) (976 -1728 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28035" + "plane" "(992 -1536 104) (992 -1728 104) (992 -1728 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28034" + "plane" "(976 -1728 104) (976 -1536 104) (976 -1536 112)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 200] 0.125" + "vaxis" "[0 0 -1 -186] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25259" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25263" + side + { + "id" "28045" + "plane" "(976 -1728 104) (960 -1728 104) (960 -1536 104)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 -1 0 -56] 0.125" + "vaxis" "[-1 0 0 -348] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28044" + "plane" "(976 -1536 96) (960 -1536 96) (960 -1728 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28043" + "plane" "(960 -1536 96) (976 -1536 96) (976 -1536 104)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28042" + "plane" "(976 -1728 96) (960 -1728 96) (960 -1728 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28041" + "plane" "(976 -1536 96) (976 -1728 96) (976 -1728 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28040" + "plane" "(960 -1728 96) (960 -1536 96) (960 -1536 104)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 200] 0.125" + "vaxis" "[0 0 -1 -250] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25259" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25264" + side + { + "id" "28051" + "plane" "(960 -1728 96) (944 -1728 96) (944 -1536 96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 -1 0 -56] 0.125" + "vaxis" "[-1 0 0 -476] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28050" + "plane" "(960 -1536 88) (944 -1536 88) (944 -1728 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28049" + "plane" "(944 -1536 88) (960 -1536 88) (960 -1536 96)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28048" + "plane" "(960 -1728 88) (944 -1728 88) (944 -1728 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28047" + "plane" "(960 -1536 88) (960 -1728 88) (960 -1728 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28046" + "plane" "(944 -1728 88) (944 -1536 88) (944 -1536 96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 200] 0.125" + "vaxis" "[0 0 -1 -314] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25259" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25265" + side + { + "id" "28057" + "plane" "(944 -1728 88) (928 -1728 88) (928 -1536 88)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 -1 0 -56] 0.125" + "vaxis" "[-1 0 0 -604] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28056" + "plane" "(944 -1536 80) (928 -1536 80) (928 -1728 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28055" + "plane" "(928 -1536 80) (944 -1536 80) (944 -1536 88)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[1 0 0 192] 0.25" + "vaxis" "[0 0 -1 -160] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28054" + "plane" "(944 -1728 80) (928 -1728 80) (928 -1728 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28053" + "plane" "(944 -1536 80) (944 -1728 80) (944 -1728 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28052" + "plane" "(928 -1728 80) (928 -1536 80) (928 -1536 88)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 200] 0.125" + "vaxis" "[0 0 -1 -378] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25259" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25309" + side + { + "id" "28111" + "plane" "(832 -1728 80) (816 -1728 80) (816 -1536 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 -1 0 -56] 0.125" + "vaxis" "[-1 0 0 -476] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28110" + "plane" "(832 -1536 72) (816 -1536 72) (816 -1728 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28109" + "plane" "(816 -1536 72) (832 -1536 72) (832 -1536 80)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28108" + "plane" "(832 -1728 72) (816 -1728 72) (816 -1728 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28107" + "plane" "(832 -1536 72) (832 -1728 72) (832 -1728 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28106" + "plane" "(816 -1728 72) (816 -1536 72) (816 -1536 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 200] 0.125" + "vaxis" "[0 0 -1 -442] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25308" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25310" + side + { + "id" "28117" + "plane" "(816 -1728 72) (800 -1728 72) (800 -1536 72)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 -1 0 -56] 0.125" + "vaxis" "[-1 0 0 -604] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28116" + "plane" "(816 -1536 64) (800 -1536 64) (800 -1728 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28115" + "plane" "(800 -1536 64) (816 -1536 64) (816 -1536 72)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[1 0 0 192] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28114" + "plane" "(816 -1728 64) (800 -1728 64) (800 -1728 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28113" + "plane" "(816 -1536 64) (816 -1728 64) (816 -1728 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28112" + "plane" "(800 -1728 64) (800 -1536 64) (800 -1536 72)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 200] 0.125" + "vaxis" "[0 0 -1 -506] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25308" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25311" + side + { + "id" "28123" + "plane" "(800 -1728 64) (784 -1728 64) (784 -1536 64)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 -1 0 -56] 0.125" + "vaxis" "[-1 0 0 -732] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28122" + "plane" "(800 -1536 56) (784 -1536 56) (784 -1728 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28121" + "plane" "(784 -1536 56) (800 -1536 56) (800 -1536 64)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28120" + "plane" "(800 -1728 56) (784 -1728 56) (784 -1728 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28119" + "plane" "(800 -1536 56) (800 -1728 56) (800 -1728 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28118" + "plane" "(784 -1728 56) (784 -1536 56) (784 -1536 64)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 200] 0.125" + "vaxis" "[0 0 -1 -570] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25308" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25312" + side + { + "id" "28129" + "plane" "(784 -1728 56) (768 -1728 56) (768 -1536 56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 -1 0 -56] 0.125" + "vaxis" "[-1 0 0 -860] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28128" + "plane" "(784 -1536 48) (768 -1536 48) (768 -1728 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28127" + "plane" "(768 -1536 48) (784 -1536 48) (784 -1536 56)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[1 0 0 320] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28126" + "plane" "(784 -1728 48) (768 -1728 48) (768 -1728 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28125" + "plane" "(784 -1536 48) (784 -1728 48) (784 -1728 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28124" + "plane" "(768 -1728 48) (768 -1536 48) (768 -1536 56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 200] 0.125" + "vaxis" "[0 0 -1 -634] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25308" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25313" + side + { + "id" "28135" + "plane" "(768 -1728 48) (752 -1728 48) (752 -1536 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 -1 0 -56] 0.125" + "vaxis" "[-1 0 0 -988] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28134" + "plane" "(768 -1536 40) (752 -1536 40) (752 -1728 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28133" + "plane" "(752 -1536 40) (768 -1536 40) (768 -1536 48)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[1 0 0 384] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28132" + "plane" "(768 -1728 40) (752 -1728 40) (752 -1728 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28131" + "plane" "(768 -1536 40) (768 -1728 40) (768 -1728 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28130" + "plane" "(752 -1728 40) (752 -1536 40) (752 -1536 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 200] 0.125" + "vaxis" "[0 0 -1 -698] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25308" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25314" + side + { + "id" "28141" + "plane" "(752 -1728 40) (736 -1728 40) (736 -1536 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 -1 0 -56] 0.125" + "vaxis" "[-1 0 0 -92] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28140" + "plane" "(752 -1536 32) (736 -1536 32) (736 -1728 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28139" + "plane" "(736 -1536 32) (752 -1536 32) (752 -1536 40)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[1 0 0 448] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28138" + "plane" "(752 -1728 32) (736 -1728 32) (736 -1728 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28137" + "plane" "(752 -1536 32) (752 -1728 32) (752 -1728 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28136" + "plane" "(736 -1728 32) (736 -1536 32) (736 -1536 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 200] 0.125" + "vaxis" "[0 0 -1 -762] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "218 235 0" + "groupid" "25308" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25403" + side + { + "id" "28153" + "plane" "(1088 -1408 192) (1088 -1280 192) (1280 -1280 192)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28152" + "plane" "(1088 -1280 96) (1088 -1408 96) (1280 -1408 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28151" + "plane" "(1088 -1408 96) (1088 -1280 96) (1088 -1280 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28150" + "plane" "(1280 -1280 96) (1280 -1408 96) (1280 -1408 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28149" + "plane" "(1088 -1280 96) (1280 -1280 96) (1280 -1280 192)" + "material" "VALLEY/DEV/DEV_ROCK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28148" + "plane" "(1280 -1408 96) (1088 -1408 96) (1088 -1408 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25408" + side + { + "id" "28165" + "plane" "(1344 -992 192) (1408 -992 192) (1408 -1216 192)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 768] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28164" + "plane" "(1344 -1280 96) (1408 -1216 96) (1408 -992 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28163" + "plane" "(1344 -992 96) (1344 -992 192) (1344 -1280 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28162" + "plane" "(1408 -1216 96) (1408 -1216 192) (1408 -992 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28161" + "plane" "(1408 -992 96) (1408 -992 192) (1344 -992 192)" + "material" "VALLEY/DEV/DEV_ROCK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28160" + "plane" "(1344 -1280 96) (1344 -1280 192) (1408 -1216 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25411" + side + { + "id" "28177" + "plane" "(1088 -1280 192) (1088 -992 192) (1344 -992 192)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28176" + "plane" "(1088 -992 96) (1088 -1280 96) (1344 -1280 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28175" + "plane" "(1088 -1280 96) (1088 -992 96) (1088 -992 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28174" + "plane" "(1344 -992 96) (1344 -1280 96) (1344 -1280 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28173" + "plane" "(1088 -992 96) (1344 -992 96) (1344 -992 192)" + "material" "VALLEY/DEV/DEV_ROCK" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28172" + "plane" "(1344 -1280 96) (1088 -1280 96) (1088 -1280 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25421" + side + { + "id" "28189" + "plane" "(704 -2208 48) (704 -2192 48) (1024 -2192 48)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28188" + "plane" "(704 -2192 32) (704 -2208 32) (1024 -2208 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28187" + "plane" "(704 -2208 32) (704 -2192 32) (704 -2192 48)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28186" + "plane" "(1024 -2192 32) (1024 -2208 32) (1024 -2208 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28185" + "plane" "(704 -2192 32) (1024 -2192 32) (1024 -2192 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28184" + "plane" "(1024 -2208 32) (704 -2208 32) (704 -2208 48)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "134 203 0" + "groupid" "25668" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25428" + side + { + "id" "28201" + "plane" "(704 -2208 288) (704 -2192 288) (1024 -2192 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28200" + "plane" "(704 -2192 272) (704 -2208 272) (1024 -2208 272)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28199" + "plane" "(704 -2208 272) (704 -2192 272) (704 -2192 288)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28198" + "plane" "(1024 -2192 272) (1024 -2208 272) (1024 -2208 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28197" + "plane" "(704 -2192 272) (1024 -2192 272) (1024 -2192 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28196" + "plane" "(1024 -2208 272) (704 -2208 272) (704 -2208 288)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "134 203 0" + "groupid" "25668" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25429" + side + { + "id" "28213" + "plane" "(704 -2208 272) (704 -2192 272) (720 -2192 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28212" + "plane" "(704 -2192 48) (704 -2208 48) (720 -2208 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28211" + "plane" "(704 -2208 48) (704 -2192 48) (704 -2192 272)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28210" + "plane" "(720 -2192 48) (720 -2208 48) (720 -2208 272)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28209" + "plane" "(704 -2192 48) (720 -2192 48) (720 -2192 272)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28208" + "plane" "(720 -2208 48) (704 -2208 48) (704 -2208 272)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "134 203 0" + "groupid" "25668" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25431" + side + { + "id" "28225" + "plane" "(1008 -2208 272) (1008 -2192 272) (1024 -2192 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28224" + "plane" "(1008 -2192 48) (1008 -2208 48) (1024 -2208 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28223" + "plane" "(1008 -2208 48) (1008 -2192 48) (1008 -2192 272)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28222" + "plane" "(1024 -2192 48) (1024 -2208 48) (1024 -2208 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28221" + "plane" "(1008 -2192 48) (1024 -2192 48) (1024 -2192 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28220" + "plane" "(1024 -2208 48) (1008 -2208 48) (1008 -2208 272)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "134 203 0" + "groupid" "25668" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25432" + side + { + "id" "28237" + "plane" "(808 -2208 272) (808 -2192 272) (820 -2192 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28236" + "plane" "(808 -2192 48) (808 -2208 48) (820 -2208 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28235" + "plane" "(808 -2208 48) (808 -2192 48) (808 -2192 272)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28234" + "plane" "(820 -2192 48) (820 -2208 48) (820 -2208 272)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28233" + "plane" "(808 -2192 48) (820 -2192 48) (820 -2192 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28232" + "plane" "(820 -2208 48) (808 -2208 48) (808 -2208 272)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "134 203 0" + "groupid" "25668" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25439" + side + { + "id" "28249" + "plane" "(704 -2080 48) (720 -2080 48) (720 -2192 48)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28248" + "plane" "(704 -2192 32) (720 -2192 32) (720 -2080 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28247" + "plane" "(704 -2080 32) (704 -2080 48) (704 -2192 48)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28246" + "plane" "(720 -2192 32) (720 -2192 48) (720 -2080 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28245" + "plane" "(720 -2080 32) (720 -2080 48) (704 -2080 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28244" + "plane" "(704 -2192 32) (704 -2192 48) (720 -2192 48)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25441" + side + { + "id" "28261" + "plane" "(704 -2080 288) (720 -2080 288) (720 -2192 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28260" + "plane" "(704 -2192 272) (720 -2192 272) (720 -2080 272)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28259" + "plane" "(704 -2080 272) (704 -2080 288) (704 -2192 288)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28258" + "plane" "(720 -2192 272) (720 -2192 288) (720 -2080 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28257" + "plane" "(720 -2080 272) (720 -2080 288) (704 -2080 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28256" + "plane" "(704 -2192 272) (704 -2192 288) (720 -2192 288)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25442" + side + { + "id" "28273" + "plane" "(704 -2096 272) (704 -2080 272) (720 -2080 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28272" + "plane" "(704 -2080 48) (704 -2096 48) (720 -2096 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28271" + "plane" "(704 -2096 48) (704 -2080 48) (704 -2080 272)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28270" + "plane" "(720 -2080 48) (720 -2096 48) (720 -2096 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28269" + "plane" "(704 -2080 48) (720 -2080 48) (720 -2080 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28268" + "plane" "(720 -2096 48) (704 -2096 48) (704 -2096 272)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25445" + side + { + "id" "28285" + "plane" "(908 -2208 272) (908 -2192 272) (920 -2192 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28284" + "plane" "(908 -2192 48) (908 -2208 48) (920 -2208 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28283" + "plane" "(908 -2208 48) (908 -2192 48) (908 -2192 272)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28282" + "plane" "(920 -2192 48) (920 -2208 48) (920 -2208 272)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28281" + "plane" "(908 -2192 48) (920 -2192 48) (920 -2192 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28280" + "plane" "(920 -2208 48) (908 -2208 48) (908 -2208 272)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "134 203 0" + "groupid" "25668" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25447" + side + { + "id" "28297" + "plane" "(820 -2200 272) (820 -2192 272) (908 -2192 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28296" + "plane" "(820 -2192 48) (820 -2200 48) (908 -2200 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28295" + "plane" "(820 -2200 48) (820 -2192 48) (820 -2192 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28294" + "plane" "(908 -2192 48) (908 -2200 48) (908 -2200 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28293" + "plane" "(820 -2192 48) (908 -2192 48) (908 -2192 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28292" + "plane" "(908 -2200 48) (820 -2200 48) (820 -2200 272)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "134 203 0" + "groupid" "25668" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25462" + side + { + "id" "28309" + "plane" "(720 -2200 272) (720 -2192 272) (808 -2192 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28308" + "plane" "(720 -2192 48) (720 -2200 48) (808 -2200 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28307" + "plane" "(720 -2200 48) (720 -2192 48) (720 -2192 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28306" + "plane" "(808 -2192 48) (808 -2200 48) (808 -2200 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28305" + "plane" "(720 -2192 48) (808 -2192 48) (808 -2192 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28304" + "plane" "(808 -2200 48) (720 -2200 48) (720 -2200 272)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "134 203 0" + "groupid" "25668" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25463" + side + { + "id" "28321" + "plane" "(920 -2200 272) (920 -2192 272) (1008 -2192 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28320" + "plane" "(920 -2192 48) (920 -2200 48) (1008 -2200 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28319" + "plane" "(920 -2200 48) (920 -2192 48) (920 -2192 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28318" + "plane" "(1008 -2192 48) (1008 -2200 48) (1008 -2200 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28317" + "plane" "(920 -2192 48) (1008 -2192 48) (1008 -2192 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28316" + "plane" "(1008 -2200 48) (920 -2200 48) (920 -2200 272)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "134 203 0" + "groupid" "25668" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25464" + side + { + "id" "28333" + "plane" "(720 -2096 272) (720 -2192 272) (712 -2192 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28332" + "plane" "(712 -2096 48) (712 -2192 48) (720 -2192 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28331" + "plane" "(720 -2096 48) (720 -2096 272) (712 -2096 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28330" + "plane" "(712 -2192 48) (712 -2192 272) (720 -2192 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28329" + "plane" "(720 -2192 48) (720 -2192 272) (720 -2096 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28328" + "plane" "(712 -2096 48) (712 -2096 272) (712 -2192 272)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25542" + side + { + "id" "28405" + "plane" "(1024 -2208 352) (704 -2208 352) (704 -1984 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28404" + "plane" "(1024 -1984 288) (704 -1984 288) (704 -2208 288)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28403" + "plane" "(704 -2208 352) (704 -2208 288) (704 -1984 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28402" + "plane" "(1024 -1984 352) (1024 -1984 288) (1024 -2208 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28401" + "plane" "(704 -1984 352) (704 -1984 288) (1024 -1984 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28400" + "plane" "(1024 -2208 352) (1024 -2208 288) (704 -2208 288)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25571" + side + { + "id" "28459" + "plane" "(1344 -3072 192) (1216 -3072 192) (1216 -2816 192)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28458" + "plane" "(1344 -2816 32) (1216 -2816 32) (1216 -3072 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -0.00195312] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28457" + "plane" "(1344 -2816 192) (1216 -2816 192) (1216 -2816 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28456" + "plane" "(1216 -3072 192) (1344 -3072 192) (1344 -3072 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28455" + "plane" "(1216 -2816 192) (1216 -3072 192) (1216 -3072 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28454" + "plane" "(1344 -3072 192) (1344 -2816 192) (1344 -2816 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25572" + side + { + "id" "28465" + "plane" "(1536 -3072 256) (1344 -3072 192) (1344 -2816 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28464" + "plane" "(1536 -2816 32) (1344 -2816 32) (1344 -3072 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -0.00195312] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28463" + "plane" "(1536 -3072 256) (1536 -2816 256) (1536 -2816 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00195312] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28462" + "plane" "(1536 -2816 256) (1344 -2816 192) (1344 -2816 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28461" + "plane" "(1344 -3072 192) (1536 -3072 256) (1536 -3072 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28460" + "plane" "(1344 -2816 192) (1344 -3072 192) (1344 -3072 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25573" + side + { + "id" "28471" + "plane" "(1024 -2816 128) (1216 -2816 192) (1216 -3072 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28470" + "plane" "(1024 -3072 32) (1216 -3072 32) (1216 -2816 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -0.00195312] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28469" + "plane" "(1024 -2816 128) (1024 -3072 128) (1024 -3072 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00195312] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28468" + "plane" "(1216 -2816 192) (1024 -2816 128) (1024 -2816 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28467" + "plane" "(1024 -3072 128) (1216 -3072 192) (1216 -3072 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28466" + "plane" "(1216 -3072 192) (1216 -2816 192) (1216 -2816 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25604" + side + { + "id" "28488" + "plane" "(768 -2560 32) (768 -2816 32) (1024 -2816 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28487" + "plane" "(768 -2816 32) (768 -2560 32) (768 -2816 128)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28486" + "plane" "(1024 -2560 32) (1024 -2816 32) (1024 -2816 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28485" + "plane" "(1024 -2816 32) (768 -2816 32) (768 -2816 128)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28484" + "plane" "(1024 -2816 128) (768 -2816 128) (768 -2560 32)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25624" + side + { + "id" "28495" + "plane" "(768 -2944 128) (768 -2816 128) (1024 -2816 128)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28494" + "plane" "(768 -2816 32) (768 -2944 32) (896 -3072 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28493" + "plane" "(768 -2944 32) (768 -2816 32) (768 -2816 128)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28492" + "plane" "(1024 -2816 32) (1024 -3072 32) (1024 -3072 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28491" + "plane" "(768 -2816 32) (1024 -2816 32) (1024 -2816 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28490" + "plane" "(1024 -3072 32) (896 -3072 32) (896 -3072 128)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28489" + "plane" "(896 -3072 32) (768 -2944 32) (768 -2944 128)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25642" + side + { + "id" "28543" + "plane" "(1024 -2240 416) (1024 -2208 416) (1056 -2208 416)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28542" + "plane" "(1024 -2208 32) (1024 -2240 32) (1056 -2240 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28541" + "plane" "(1024 -2240 32) (1024 -2208 32) (1024 -2208 416)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28540" + "plane" "(1056 -2208 32) (1056 -2240 32) (1056 -2240 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28539" + "plane" "(1024 -2208 32) (1056 -2208 32) (1056 -2208 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28538" + "plane" "(1056 -2240 32) (1024 -2240 32) (1024 -2240 416)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25644" + side + { + "id" "28555" + "plane" "(1024 -2432 480) (1024 -2400 480) (1056 -2400 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28554" + "plane" "(1024 -2400 32) (1024 -2432 32) (1056 -2432 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28553" + "plane" "(1024 -2432 32) (1024 -2400 32) (1024 -2400 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28552" + "plane" "(1056 -2400 32) (1056 -2432 32) (1056 -2432 480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28551" + "plane" "(1024 -2400 32) (1056 -2400 32) (1056 -2400 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28550" + "plane" "(1056 -2432 32) (1024 -2432 32) (1024 -2432 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25651" + side + { + "id" "28591" + "plane" "(1024 -2528 512) (1024 -2496 512) (1056 -2496 512)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28590" + "plane" "(1024 -2496 32) (1024 -2528 32) (1056 -2528 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28589" + "plane" "(1024 -2528 32) (1024 -2496 32) (1024 -2496 512)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28588" + "plane" "(1056 -2496 32) (1056 -2528 32) (1056 -2528 512)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28587" + "plane" "(1024 -2496 32) (1056 -2496 32) (1056 -2496 512)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28586" + "plane" "(1056 -2528 32) (1024 -2528 32) (1024 -2528 512)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25652" + side + { + "id" "28603" + "plane" "(1024 -2624 544) (1024 -2592 544) (1056 -2592 544)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28602" + "plane" "(1024 -2592 32) (1024 -2624 32) (1056 -2624 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28601" + "plane" "(1024 -2624 32) (1024 -2592 32) (1024 -2592 544)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28600" + "plane" "(1056 -2592 32) (1056 -2624 32) (1056 -2624 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28599" + "plane" "(1024 -2592 32) (1056 -2592 32) (1056 -2592 544)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28598" + "plane" "(1056 -2624 32) (1024 -2624 32) (1024 -2624 544)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25653" + side + { + "id" "28615" + "plane" "(1024 -2720 576) (1024 -2688 576) (1056 -2688 576)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28614" + "plane" "(1024 -2688 32) (1024 -2720 32) (1056 -2720 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28613" + "plane" "(1024 -2720 32) (1024 -2688 32) (1024 -2688 576)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28612" + "plane" "(1056 -2688 32) (1056 -2720 32) (1056 -2720 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28611" + "plane" "(1024 -2688 32) (1056 -2688 32) (1056 -2688 576)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28610" + "plane" "(1056 -2720 32) (1024 -2720 32) (1024 -2720 576)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25657" + side + { + "id" "28627" + "plane" "(1024 -2336 448) (1024 -2304 448) (1056 -2304 448)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28626" + "plane" "(1024 -2304 32) (1024 -2336 32) (1056 -2336 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28625" + "plane" "(1024 -2336 32) (1024 -2304 32) (1024 -2304 448)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28624" + "plane" "(1056 -2304 32) (1056 -2336 32) (1056 -2336 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28623" + "plane" "(1024 -2304 32) (1056 -2304 32) (1056 -2304 448)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28622" + "plane" "(1056 -2336 32) (1024 -2336 32) (1024 -2336 448)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25688" + side + { + "id" "28633" + "plane" "(512 -1984 352) (608 -1984 352) (608 -2240 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28632" + "plane" "(512 -2304 288) (608 -2240 288) (608 -1984 288)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28631" + "plane" "(512 -1984 288) (512 -1984 352) (512 -2304 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28630" + "plane" "(608 -1984 288) (608 -1984 352) (512 -1984 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28629" + "plane" "(512 -2304 288) (512 -2304 352) (608 -2240 352)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28628" + "plane" "(608 -2240 288) (608 -2240 352) (608 -1984 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25689" + side + { + "id" "28639" + "plane" "(704 -1984 352) (704 -2208 352) (608 -2240 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28638" + "plane" "(704 -2208 288) (704 -1984 288) (608 -1984 288)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28637" + "plane" "(704 -2208 288) (704 -2208 352) (704 -1984 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28636" + "plane" "(704 -1984 288) (704 -1984 352) (608 -1984 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28635" + "plane" "(608 -2240 288) (608 -2240 352) (704 -2208 352)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28634" + "plane" "(608 -1984 288) (608 -1984 352) (608 -2240 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25692" + side + { + "id" "28651" + "plane" "(1024 -2144 384) (1024 -2112 384) (1056 -2112 384)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28650" + "plane" "(1024 -2112 352) (1024 -2144 352) (1056 -2144 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28649" + "plane" "(1024 -2144 352) (1024 -2112 352) (1024 -2112 384)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28648" + "plane" "(1056 -2112 352) (1056 -2144 352) (1056 -2144 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28647" + "plane" "(1024 -2112 352) (1056 -2112 352) (1056 -2112 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28646" + "plane" "(1056 -2144 352) (1024 -2144 352) (1024 -2144 384)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25736" + side + { + "id" "28735" + "plane" "(1024 -2144 384) (1056 -2144 384) (1056 -2208 416)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28734" + "plane" "(1024 -2208 384) (1056 -2208 384) (1056 -2144 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28733" + "plane" "(1024 -2144 352) (1024 -2144 384) (1024 -2208 416)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28732" + "plane" "(1056 -2208 384) (1056 -2208 416) (1056 -2144 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28731" + "plane" "(1056 -2144 352) (1056 -2144 384) (1024 -2144 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28730" + "plane" "(1024 -2208 384) (1024 -2208 416) (1056 -2208 416)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25739" + side + { + "id" "28747" + "plane" "(1024 -2240 416) (1056 -2240 416) (1056 -2304 448)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28746" + "plane" "(1024 -2304 416) (1056 -2304 416) (1056 -2240 384)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28745" + "plane" "(1024 -2240 384) (1024 -2240 416) (1024 -2304 448)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28744" + "plane" "(1056 -2304 416) (1056 -2304 448) (1056 -2240 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28743" + "plane" "(1056 -2240 384) (1056 -2240 416) (1024 -2240 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28742" + "plane" "(1024 -2304 416) (1024 -2304 448) (1056 -2304 448)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25740" + side + { + "id" "28759" + "plane" "(1024 -2336 448) (1056 -2336 448) (1056 -2400 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28758" + "plane" "(1024 -2400 448) (1056 -2400 448) (1056 -2336 416)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28757" + "plane" "(1024 -2336 416) (1024 -2336 448) (1024 -2400 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28756" + "plane" "(1056 -2400 448) (1056 -2400 480) (1056 -2336 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28755" + "plane" "(1056 -2336 416) (1056 -2336 448) (1024 -2336 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28754" + "plane" "(1024 -2400 448) (1024 -2400 480) (1056 -2400 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25741" + side + { + "id" "28771" + "plane" "(1024 -2432 480) (1056 -2432 480) (1056 -2496 512)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28770" + "plane" "(1024 -2496 480) (1056 -2496 480) (1056 -2432 448)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28769" + "plane" "(1024 -2432 448) (1024 -2432 480) (1024 -2496 512)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28768" + "plane" "(1056 -2496 480) (1056 -2496 512) (1056 -2432 480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28767" + "plane" "(1056 -2432 448) (1056 -2432 480) (1024 -2432 480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28766" + "plane" "(1024 -2496 480) (1024 -2496 512) (1056 -2496 512)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25742" + side + { + "id" "28783" + "plane" "(1024 -2528 512) (1056 -2528 512) (1056 -2592 544)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28782" + "plane" "(1024 -2592 512) (1056 -2592 512) (1056 -2528 480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28781" + "plane" "(1024 -2528 480) (1024 -2528 512) (1024 -2592 544)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28780" + "plane" "(1056 -2592 512) (1056 -2592 544) (1056 -2528 512)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28779" + "plane" "(1056 -2528 480) (1056 -2528 512) (1024 -2528 512)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28778" + "plane" "(1024 -2592 512) (1024 -2592 544) (1056 -2592 544)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25744" + side + { + "id" "28795" + "plane" "(1024 -2624 544) (1056 -2624 544) (1056 -2688 576)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28794" + "plane" "(1024 -2688 544) (1056 -2688 544) (1056 -2624 512)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28793" + "plane" "(1024 -2624 512) (1024 -2624 544) (1024 -2688 576)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28792" + "plane" "(1056 -2688 544) (1056 -2688 576) (1056 -2624 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28791" + "plane" "(1056 -2624 512) (1056 -2624 544) (1024 -2624 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28790" + "plane" "(1024 -2688 544) (1024 -2688 576) (1056 -2688 576)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25745" + side + { + "id" "28807" + "plane" "(1024 -2720 576) (1056 -2720 576) (1056 -2784 608)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28806" + "plane" "(1024 -2784 576) (1056 -2784 576) (1056 -2720 544)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28805" + "plane" "(1024 -2720 544) (1024 -2720 576) (1024 -2784 608)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28804" + "plane" "(1056 -2784 576) (1056 -2784 608) (1056 -2720 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28803" + "plane" "(1056 -2720 544) (1056 -2720 576) (1024 -2720 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28802" + "plane" "(1024 -2784 576) (1024 -2784 608) (1056 -2784 608)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25774" + side + { + "id" "28999" + "plane" "(1024 -2400 192) (1024 -2336 192) (1056 -2336 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28998" + "plane" "(1024 -2336 160) (1024 -2400 160) (1056 -2400 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28997" + "plane" "(1024 -2400 160) (1024 -2336 160) (1024 -2336 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28996" + "plane" "(1056 -2336 160) (1056 -2400 160) (1056 -2400 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28995" + "plane" "(1024 -2336 160) (1056 -2336 160) (1056 -2336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28994" + "plane" "(1056 -2400 160) (1024 -2400 160) (1024 -2400 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25779" + side + { + "id" "29011" + "plane" "(1024 -2304 192) (1024 -2240 192) (1056 -2240 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29010" + "plane" "(1024 -2240 160) (1024 -2304 160) (1056 -2304 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29009" + "plane" "(1024 -2304 160) (1024 -2240 160) (1024 -2240 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29008" + "plane" "(1056 -2240 160) (1056 -2304 160) (1056 -2304 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29007" + "plane" "(1024 -2240 160) (1056 -2240 160) (1056 -2240 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29006" + "plane" "(1056 -2304 160) (1024 -2304 160) (1024 -2304 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25780" + side + { + "id" "29023" + "plane" "(1024 -2496 192) (1024 -2432 192) (1056 -2432 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29022" + "plane" "(1024 -2432 160) (1024 -2496 160) (1056 -2496 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29021" + "plane" "(1024 -2496 160) (1024 -2432 160) (1024 -2432 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29020" + "plane" "(1056 -2432 160) (1056 -2496 160) (1056 -2496 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29019" + "plane" "(1024 -2432 160) (1056 -2432 160) (1056 -2432 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29018" + "plane" "(1056 -2496 160) (1024 -2496 160) (1024 -2496 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25781" + side + { + "id" "29035" + "plane" "(1024 -2592 192) (1024 -2528 192) (1056 -2528 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29034" + "plane" "(1024 -2528 160) (1024 -2592 160) (1056 -2592 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29033" + "plane" "(1024 -2592 160) (1024 -2528 160) (1024 -2528 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29032" + "plane" "(1056 -2528 160) (1056 -2592 160) (1056 -2592 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29031" + "plane" "(1024 -2528 160) (1056 -2528 160) (1056 -2528 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29030" + "plane" "(1056 -2592 160) (1024 -2592 160) (1024 -2592 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25782" + side + { + "id" "29047" + "plane" "(1024 -2688 192) (1024 -2624 192) (1056 -2624 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29046" + "plane" "(1024 -2624 160) (1024 -2688 160) (1056 -2688 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29045" + "plane" "(1024 -2688 160) (1024 -2624 160) (1024 -2624 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29044" + "plane" "(1056 -2624 160) (1056 -2688 160) (1056 -2688 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29043" + "plane" "(1024 -2624 160) (1056 -2624 160) (1056 -2624 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29042" + "plane" "(1056 -2688 160) (1024 -2688 160) (1024 -2688 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25783" + side + { + "id" "29059" + "plane" "(1024 -2784 192) (1024 -2720 192) (1056 -2720 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29058" + "plane" "(1024 -2720 160) (1024 -2784 160) (1056 -2784 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29057" + "plane" "(1024 -2784 160) (1024 -2720 160) (1024 -2720 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29056" + "plane" "(1056 -2720 160) (1056 -2784 160) (1056 -2784 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29055" + "plane" "(1024 -2720 160) (1056 -2720 160) (1056 -2720 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29054" + "plane" "(1056 -2784 160) (1024 -2784 160) (1024 -2784 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25784" + side + { + "id" "29101" + "plane" "(1024 -2784 352) (1024 -2720 352) (1056 -2720 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29100" + "plane" "(1024 -2720 320) (1024 -2784 320) (1056 -2784 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29099" + "plane" "(1024 -2784 320) (1024 -2720 320) (1024 -2720 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29098" + "plane" "(1056 -2720 320) (1056 -2784 320) (1056 -2784 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29097" + "plane" "(1024 -2720 320) (1056 -2720 320) (1056 -2720 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29096" + "plane" "(1056 -2784 320) (1024 -2784 320) (1024 -2784 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25785" + side + { + "id" "29107" + "plane" "(1024 -2688 352) (1024 -2624 352) (1056 -2624 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29106" + "plane" "(1024 -2624 320) (1024 -2688 320) (1056 -2688 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29105" + "plane" "(1024 -2688 320) (1024 -2624 320) (1024 -2624 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29104" + "plane" "(1056 -2624 320) (1056 -2688 320) (1056 -2688 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29103" + "plane" "(1024 -2624 320) (1056 -2624 320) (1056 -2624 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29102" + "plane" "(1056 -2688 320) (1024 -2688 320) (1024 -2688 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25786" + side + { + "id" "29113" + "plane" "(1024 -2592 352) (1024 -2528 352) (1056 -2528 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29112" + "plane" "(1024 -2528 320) (1024 -2592 320) (1056 -2592 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29111" + "plane" "(1024 -2592 320) (1024 -2528 320) (1024 -2528 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29110" + "plane" "(1056 -2528 320) (1056 -2592 320) (1056 -2592 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29109" + "plane" "(1024 -2528 320) (1056 -2528 320) (1056 -2528 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29108" + "plane" "(1056 -2592 320) (1024 -2592 320) (1024 -2592 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25787" + side + { + "id" "29119" + "plane" "(1024 -2496 352) (1024 -2432 352) (1056 -2432 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29118" + "plane" "(1024 -2432 320) (1024 -2496 320) (1056 -2496 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29117" + "plane" "(1024 -2496 320) (1024 -2432 320) (1024 -2432 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29116" + "plane" "(1056 -2432 320) (1056 -2496 320) (1056 -2496 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29115" + "plane" "(1024 -2432 320) (1056 -2432 320) (1056 -2432 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29114" + "plane" "(1056 -2496 320) (1024 -2496 320) (1024 -2496 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25788" + side + { + "id" "29125" + "plane" "(1024 -2400 352) (1024 -2336 352) (1056 -2336 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29124" + "plane" "(1024 -2336 320) (1024 -2400 320) (1056 -2400 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29123" + "plane" "(1024 -2400 320) (1024 -2336 320) (1024 -2336 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29122" + "plane" "(1056 -2336 320) (1056 -2400 320) (1056 -2400 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29121" + "plane" "(1024 -2336 320) (1056 -2336 320) (1056 -2336 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29120" + "plane" "(1056 -2400 320) (1024 -2400 320) (1024 -2400 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25789" + side + { + "id" "29131" + "plane" "(1024 -2304 352) (1024 -2240 352) (1056 -2240 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29130" + "plane" "(1024 -2240 320) (1024 -2304 320) (1056 -2304 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29129" + "plane" "(1024 -2304 320) (1024 -2240 320) (1024 -2240 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29128" + "plane" "(1056 -2240 320) (1056 -2304 320) (1056 -2304 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29127" + "plane" "(1024 -2240 320) (1056 -2240 320) (1056 -2240 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29126" + "plane" "(1056 -2304 320) (1024 -2304 320) (1024 -2304 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25791" + side + { + "id" "29161" + "plane" "(1024 -2688 512) (1024 -2624 512) (1056 -2624 512)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29160" + "plane" "(1024 -2624 480) (1024 -2688 480) (1056 -2688 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29159" + "plane" "(1024 -2688 480) (1024 -2624 480) (1024 -2624 512)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29158" + "plane" "(1056 -2624 480) (1056 -2688 480) (1056 -2688 512)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29157" + "plane" "(1024 -2624 480) (1056 -2624 480) (1056 -2624 512)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29156" + "plane" "(1056 -2688 480) (1024 -2688 480) (1024 -2688 512)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25792" + side + { + "id" "29167" + "plane" "(1024 -2784 512) (1024 -2720 512) (1056 -2720 512)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29166" + "plane" "(1024 -2720 480) (1024 -2784 480) (1056 -2784 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29165" + "plane" "(1024 -2784 480) (1024 -2720 480) (1024 -2720 512)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29164" + "plane" "(1056 -2720 480) (1056 -2784 480) (1056 -2784 512)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29163" + "plane" "(1024 -2720 480) (1056 -2720 480) (1056 -2720 512)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29162" + "plane" "(1056 -2784 480) (1024 -2784 480) (1024 -2784 512)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25804" + side + { + "id" "29172" + "plane" "(1024 -2528 480) (1024 -2592 480) (1056 -2592 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29171" + "plane" "(1024 -2592 480) (1024 -2528 480) (1024 -2592 512)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29170" + "plane" "(1056 -2528 480) (1056 -2592 480) (1056 -2592 512)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29169" + "plane" "(1056 -2592 480) (1024 -2592 480) (1024 -2592 512)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29168" + "plane" "(1056 -2592 512) (1024 -2592 512) (1024 -2528 480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25942" + side + { + "id" "29184" + "plane" "(1040 -2304 160) (1040 -2240 160) (1056 -2240 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29183" + "plane" "(1040 -2240 32) (1040 -2304 32) (1056 -2304 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29182" + "plane" "(1040 -2304 32) (1040 -2240 32) (1040 -2240 160)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29181" + "plane" "(1056 -2240 32) (1056 -2304 32) (1056 -2304 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29180" + "plane" "(1040 -2240 32) (1056 -2240 32) (1056 -2240 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29179" + "plane" "(1056 -2304 32) (1040 -2304 32) (1040 -2304 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "130 143 0" + "groupid" "25957" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25950" + side + { + "id" "29196" + "plane" "(1040 -2304 320) (1040 -2240 320) (1056 -2240 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29195" + "plane" "(1040 -2240 192) (1040 -2304 192) (1056 -2304 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29194" + "plane" "(1040 -2304 192) (1040 -2240 192) (1040 -2240 320)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29193" + "plane" "(1056 -2240 192) (1056 -2304 192) (1056 -2304 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29192" + "plane" "(1040 -2240 192) (1056 -2240 192) (1056 -2240 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29191" + "plane" "(1056 -2304 192) (1040 -2304 192) (1040 -2304 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "130 143 0" + "groupid" "25957" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25951" + side + { + "id" "29214" + "plane" "(1040 -2400 320) (1040 -2336 320) (1056 -2336 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29213" + "plane" "(1040 -2336 192) (1040 -2400 192) (1056 -2400 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29212" + "plane" "(1040 -2400 192) (1040 -2336 192) (1040 -2336 320)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29211" + "plane" "(1056 -2336 192) (1056 -2400 192) (1056 -2400 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29210" + "plane" "(1040 -2336 192) (1056 -2336 192) (1056 -2336 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29209" + "plane" "(1056 -2400 192) (1040 -2400 192) (1040 -2400 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "130 143 0" + "groupid" "25957" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25952" + side + { + "id" "29220" + "plane" "(1040 -2400 160) (1040 -2336 160) (1056 -2336 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29219" + "plane" "(1040 -2336 32) (1040 -2400 32) (1056 -2400 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29218" + "plane" "(1040 -2400 32) (1040 -2336 32) (1040 -2336 160)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29217" + "plane" "(1056 -2336 32) (1056 -2400 32) (1056 -2400 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29216" + "plane" "(1040 -2336 32) (1056 -2336 32) (1056 -2336 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29215" + "plane" "(1056 -2400 32) (1040 -2400 32) (1040 -2400 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "130 143 0" + "groupid" "25957" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25959" + side + { + "id" "29250" + "plane" "(1040 -2592 320) (1040 -2528 320) (1056 -2528 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29249" + "plane" "(1040 -2528 192) (1040 -2592 192) (1056 -2592 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29248" + "plane" "(1040 -2592 192) (1040 -2528 192) (1040 -2528 320)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29247" + "plane" "(1056 -2528 192) (1056 -2592 192) (1056 -2592 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29246" + "plane" "(1040 -2528 192) (1056 -2528 192) (1056 -2528 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29245" + "plane" "(1056 -2592 192) (1040 -2592 192) (1040 -2592 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "130 143 0" + "groupid" "25958" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25960" + side + { + "id" "29256" + "plane" "(1040 -2592 160) (1040 -2528 160) (1056 -2528 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29255" + "plane" "(1040 -2528 32) (1040 -2592 32) (1056 -2592 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29254" + "plane" "(1040 -2592 32) (1040 -2528 32) (1040 -2528 160)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29253" + "plane" "(1056 -2528 32) (1056 -2592 32) (1056 -2592 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29252" + "plane" "(1040 -2528 32) (1056 -2528 32) (1056 -2528 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29251" + "plane" "(1056 -2592 32) (1040 -2592 32) (1040 -2592 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "130 143 0" + "groupid" "25958" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25961" + side + { + "id" "29262" + "plane" "(1040 -2496 320) (1040 -2432 320) (1056 -2432 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29261" + "plane" "(1040 -2432 192) (1040 -2496 192) (1056 -2496 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29260" + "plane" "(1040 -2496 192) (1040 -2432 192) (1040 -2432 320)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29259" + "plane" "(1056 -2432 192) (1056 -2496 192) (1056 -2496 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29258" + "plane" "(1040 -2432 192) (1056 -2432 192) (1056 -2432 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29257" + "plane" "(1056 -2496 192) (1040 -2496 192) (1040 -2496 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "130 143 0" + "groupid" "25958" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25962" + side + { + "id" "29268" + "plane" "(1040 -2496 160) (1040 -2432 160) (1056 -2432 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29267" + "plane" "(1040 -2432 32) (1040 -2496 32) (1056 -2496 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29266" + "plane" "(1040 -2496 32) (1040 -2432 32) (1040 -2432 160)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29265" + "plane" "(1056 -2432 32) (1056 -2496 32) (1056 -2496 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29264" + "plane" "(1040 -2432 32) (1056 -2432 32) (1056 -2432 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29263" + "plane" "(1056 -2496 32) (1040 -2496 32) (1040 -2496 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "130 143 0" + "groupid" "25958" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25964" + side + { + "id" "29298" + "plane" "(1040 -2784 320) (1040 -2720 320) (1056 -2720 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29297" + "plane" "(1040 -2720 192) (1040 -2784 192) (1056 -2784 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29296" + "plane" "(1040 -2784 192) (1040 -2720 192) (1040 -2720 320)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29295" + "plane" "(1056 -2720 192) (1056 -2784 192) (1056 -2784 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29294" + "plane" "(1040 -2720 192) (1056 -2720 192) (1056 -2720 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29293" + "plane" "(1056 -2784 192) (1040 -2784 192) (1040 -2784 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "130 143 0" + "groupid" "25963" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25965" + side + { + "id" "29304" + "plane" "(1040 -2784 160) (1040 -2720 160) (1056 -2720 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29303" + "plane" "(1040 -2720 32) (1040 -2784 32) (1056 -2784 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29302" + "plane" "(1040 -2784 32) (1040 -2720 32) (1040 -2720 160)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29301" + "plane" "(1056 -2720 32) (1056 -2784 32) (1056 -2784 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29300" + "plane" "(1040 -2720 32) (1056 -2720 32) (1056 -2720 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29299" + "plane" "(1056 -2784 32) (1040 -2784 32) (1040 -2784 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "130 143 0" + "groupid" "25963" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25966" + side + { + "id" "29310" + "plane" "(1040 -2688 320) (1040 -2624 320) (1056 -2624 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29309" + "plane" "(1040 -2624 192) (1040 -2688 192) (1056 -2688 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29308" + "plane" "(1040 -2688 192) (1040 -2624 192) (1040 -2624 320)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29307" + "plane" "(1056 -2624 192) (1056 -2688 192) (1056 -2688 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29306" + "plane" "(1040 -2624 192) (1056 -2624 192) (1056 -2624 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29305" + "plane" "(1056 -2688 192) (1040 -2688 192) (1040 -2688 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "130 143 0" + "groupid" "25963" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25967" + side + { + "id" "29316" + "plane" "(1040 -2688 160) (1040 -2624 160) (1056 -2624 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29315" + "plane" "(1040 -2624 32) (1040 -2688 32) (1056 -2688 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29314" + "plane" "(1040 -2688 32) (1040 -2624 32) (1040 -2624 160)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29313" + "plane" "(1056 -2624 32) (1056 -2688 32) (1056 -2688 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29312" + "plane" "(1040 -2624 32) (1056 -2624 32) (1056 -2624 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29311" + "plane" "(1056 -2688 32) (1040 -2688 32) (1040 -2688 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "130 143 0" + "groupid" "25963" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25968" + side + { + "id" "29334" + "plane" "(1040 -2688 480) (1040 -2624 480) (1056 -2624 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29333" + "plane" "(1040 -2624 352) (1040 -2688 352) (1056 -2688 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29332" + "plane" "(1040 -2688 352) (1040 -2624 352) (1040 -2624 480)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29331" + "plane" "(1056 -2624 352) (1056 -2688 352) (1056 -2688 480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29330" + "plane" "(1040 -2624 352) (1056 -2624 352) (1056 -2624 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29329" + "plane" "(1056 -2688 352) (1040 -2688 352) (1040 -2688 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 227 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25969" + side + { + "id" "29340" + "plane" "(1040 -2784 480) (1040 -2720 480) (1056 -2720 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29339" + "plane" "(1040 -2720 352) (1040 -2784 352) (1056 -2784 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29338" + "plane" "(1040 -2784 352) (1040 -2720 352) (1040 -2720 480)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29337" + "plane" "(1056 -2720 352) (1056 -2784 352) (1056 -2784 480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29336" + "plane" "(1040 -2720 352) (1056 -2720 352) (1056 -2720 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29335" + "plane" "(1056 -2784 352) (1040 -2784 352) (1040 -2784 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 179 112" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25970" + side + { + "id" "29352" + "plane" "(1040 -2592 480) (1040 -2528 480) (1056 -2528 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29351" + "plane" "(1040 -2528 352) (1040 -2592 352) (1056 -2592 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29350" + "plane" "(1040 -2592 352) (1040 -2528 352) (1040 -2528 480)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29349" + "plane" "(1056 -2528 352) (1056 -2592 352) (1056 -2592 480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29348" + "plane" "(1040 -2528 352) (1056 -2528 352) (1056 -2528 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29347" + "plane" "(1056 -2592 352) (1040 -2592 352) (1040 -2592 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25971" + side + { + "id" "29364" + "plane" "(1040 -2432 448) (1056 -2432 448) (1056 -2496 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29363" + "plane" "(1040 -2496 352) (1056 -2496 352) (1056 -2432 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29362" + "plane" "(1040 -2432 352) (1040 -2432 448) (1040 -2496 480)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29361" + "plane" "(1056 -2496 352) (1056 -2496 480) (1056 -2432 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29360" + "plane" "(1056 -2432 352) (1056 -2432 448) (1040 -2432 448)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29359" + "plane" "(1040 -2496 352) (1040 -2496 480) (1056 -2496 480)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 115 244" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25982" + side + { + "id" "29382" + "plane" "(1040 -2400 448) (1040 -2336 416) (1056 -2336 416)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29381" + "plane" "(1040 -2336 352) (1040 -2336 416) (1040 -2400 448)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29380" + "plane" "(1056 -2400 448) (1056 -2336 416) (1056 -2336 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29379" + "plane" "(1056 -2336 352) (1056 -2336 416) (1040 -2336 416)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29378" + "plane" "(1040 -2400 352) (1040 -2400 448) (1056 -2400 448)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29377" + "plane" "(1040 -2336 352) (1040 -2400 352) (1056 -2400 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 156" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25987" + side + { + "id" "29400" + "plane" "(1040 -2304 416) (1040 -2240 384) (1056 -2240 384)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29399" + "plane" "(1040 -2240 352) (1040 -2240 384) (1040 -2304 416)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29398" + "plane" "(1056 -2304 352) (1056 -2304 416) (1056 -2240 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29397" + "plane" "(1056 -2240 352) (1056 -2240 384) (1040 -2240 384)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29396" + "plane" "(1040 -2304 352) (1040 -2304 416) (1056 -2304 416)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29395" + "plane" "(1040 -2240 352) (1040 -2304 352) (1056 -2304 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 107 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "26010" + side + { + "id" "29453" + "plane" "(1040 -2208 384) (1040 -2144 352) (1056 -2144 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29452" + "plane" "(1040 -2144 352) (1040 -2208 384) (1040 -2208 352)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29451" + "plane" "(1056 -2208 352) (1056 -2208 384) (1056 -2144 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29450" + "plane" "(1040 -2208 352) (1040 -2208 384) (1056 -2208 384)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29449" + "plane" "(1056 -2144 352) (1040 -2144 352) (1040 -2208 352)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 227 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "26011" + side + { + "id" "29469" + "plane" "(1040 -2688 544) (1040 -2624 512) (1056 -2624 512)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29468" + "plane" "(1040 -2624 512) (1040 -2688 544) (1040 -2688 512)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29467" + "plane" "(1056 -2688 512) (1056 -2688 544) (1056 -2624 512)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29466" + "plane" "(1040 -2688 512) (1040 -2688 544) (1056 -2688 544)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29465" + "plane" "(1056 -2624 512) (1040 -2624 512) (1040 -2688 512)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 111 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "26012" + side + { + "id" "29475" + "plane" "(1040 -2784 576) (1040 -2720 544) (1056 -2720 544)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29474" + "plane" "(1040 -2720 512) (1040 -2720 544) (1040 -2784 576)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29473" + "plane" "(1056 -2784 512) (1056 -2784 576) (1056 -2720 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29472" + "plane" "(1056 -2720 512) (1056 -2720 544) (1040 -2720 544)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29471" + "plane" "(1040 -2784 512) (1040 -2784 576) (1056 -2784 576)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29470" + "plane" "(1040 -2720 512) (1040 -2784 512) (1056 -2784 512)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 111 168" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14763" + side + { + "id" "10538" + "plane" "(64 -1472 320) (96 -1472 320) (96 -1504 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10539" + "plane" "(64 -1504 64) (96 -1504 64) (96 -1472 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10540" + "plane" "(64 -1472 320) (64 -1504 320) (64 -1504 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10541" + "plane" "(96 -1472 64) (96 -1504 64) (96 -1504 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10542" + "plane" "(96 -1472 320) (64 -1472 320) (64 -1472 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10543" + "plane" "(96 -1504 64) (64 -1504 64) (64 -1504 320)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14764" + side + { + "id" "10555" + "plane" "(64 -1376 320) (96 -1376 320) (96 -1408 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10554" + "plane" "(64 -1408 64) (96 -1408 64) (96 -1376 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10553" + "plane" "(64 -1376 320) (64 -1408 320) (64 -1408 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10552" + "plane" "(96 -1376 64) (96 -1408 64) (96 -1408 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10551" + "plane" "(96 -1376 320) (64 -1376 320) (64 -1376 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10550" + "plane" "(96 -1408 64) (64 -1408 64) (64 -1408 320)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14766" + side + { + "id" "10567" + "plane" "(64 -1280 320) (96 -1280 320) (96 -1312 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10566" + "plane" "(64 -1312 64) (96 -1312 64) (96 -1280 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10565" + "plane" "(64 -1280 320) (64 -1312 320) (64 -1312 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10564" + "plane" "(96 -1280 64) (96 -1312 64) (96 -1312 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10563" + "plane" "(96 -1280 320) (64 -1280 320) (64 -1280 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10562" + "plane" "(96 -1312 64) (64 -1312 64) (64 -1312 320)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14767" + side + { + "id" "10579" + "plane" "(-32 -1280 320) (0 -1280 320) (0 -1312 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10578" + "plane" "(-32 -1312 64) (0 -1312 64) (0 -1280 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10577" + "plane" "(-32 -1280 320) (-32 -1312 320) (-32 -1312 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10576" + "plane" "(0 -1280 64) (0 -1312 64) (0 -1312 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10575" + "plane" "(0 -1280 320) (-32 -1280 320) (-32 -1280 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10574" + "plane" "(0 -1312 64) (-32 -1312 64) (-32 -1312 320)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14769" + side + { + "id" "10591" + "plane" "(-32 -1184 320) (0 -1184 320) (0 -1216 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10590" + "plane" "(-32 -1216 64) (0 -1216 64) (0 -1184 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10589" + "plane" "(-32 -1184 320) (-32 -1216 320) (-32 -1216 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10588" + "plane" "(0 -1184 64) (0 -1216 64) (0 -1216 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10587" + "plane" "(0 -1184 320) (-32 -1184 320) (-32 -1184 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10586" + "plane" "(0 -1216 64) (-32 -1216 64) (-32 -1216 320)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14770" + side + { + "id" "10603" + "plane" "(-32 -1088 320) (0 -1088 320) (0 -1120 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10602" + "plane" "(-32 -1120 64) (0 -1120 64) (0 -1088 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10601" + "plane" "(-32 -1088 320) (-32 -1120 320) (-32 -1120 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10600" + "plane" "(0 -1088 64) (0 -1120 64) (0 -1120 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10599" + "plane" "(0 -1088 320) (-32 -1088 320) (-32 -1088 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10598" + "plane" "(0 -1120 64) (-32 -1120 64) (-32 -1120 320)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14771" + side + { + "id" "10615" + "plane" "(-32 -992 320) (0 -992 320) (0 -1024 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10614" + "plane" "(-32 -1024 64) (0 -1024 64) (0 -992 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10613" + "plane" "(-32 -992 320) (-32 -1024 320) (-32 -1024 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10612" + "plane" "(0 -992 64) (0 -1024 64) (0 -1024 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10611" + "plane" "(0 -992 320) (-32 -992 320) (-32 -992 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10610" + "plane" "(0 -1024 64) (-32 -1024 64) (-32 -1024 320)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14772" + side + { + "id" "10627" + "plane" "(-32 -896 320) (0 -896 320) (0 -928 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10626" + "plane" "(-32 -928 64) (0 -928 64) (0 -896 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10625" + "plane" "(-32 -896 320) (-32 -928 320) (-32 -928 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10624" + "plane" "(0 -896 64) (0 -928 64) (0 -928 320)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10623" + "plane" "(0 -896 320) (-32 -896 320) (-32 -896 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10622" + "plane" "(0 -928 64) (-32 -928 64) (-32 -928 320)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14773" + side + { + "id" "10639" + "plane" "(64 -896 320) (96 -896 320) (96 -928 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10638" + "plane" "(64 -928 64) (96 -928 64) (96 -896 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10637" + "plane" "(64 -896 320) (64 -928 320) (64 -928 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10636" + "plane" "(96 -896 64) (96 -928 64) (96 -928 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10635" + "plane" "(96 -896 320) (64 -896 320) (64 -896 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10634" + "plane" "(96 -928 64) (64 -928 64) (64 -928 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14774" + side + { + "id" "10651" + "plane" "(80 -1408 320) (96 -1408 320) (96 -1472 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10650" + "plane" "(80 -1472 64) (96 -1472 64) (96 -1408 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10649" + "plane" "(80 -1408 320) (80 -1472 320) (80 -1472 64)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10648" + "plane" "(96 -1408 64) (96 -1472 64) (96 -1472 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10647" + "plane" "(96 -1408 320) (80 -1408 320) (80 -1408 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10646" + "plane" "(96 -1472 64) (80 -1472 64) (80 -1472 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14780" + side + { + "id" "10663" + "plane" "(80 -1312 320) (96 -1312 320) (96 -1376 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10662" + "plane" "(80 -1376 64) (96 -1376 64) (96 -1312 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10661" + "plane" "(80 -1312 320) (80 -1376 320) (80 -1376 64)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10660" + "plane" "(96 -1312 64) (96 -1376 64) (96 -1376 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10659" + "plane" "(96 -1312 320) (80 -1312 320) (80 -1312 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10658" + "plane" "(96 -1376 64) (80 -1376 64) (80 -1376 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14781" + side + { + "id" "10675" + "plane" "(0 -1280 320) (64 -1280 320) (64 -1296 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10674" + "plane" "(0 -1296 64) (64 -1296 64) (64 -1280 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10673" + "plane" "(0 -1280 320) (0 -1296 320) (0 -1296 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10672" + "plane" "(64 -1280 64) (64 -1296 64) (64 -1296 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10671" + "plane" "(64 -1280 320) (0 -1280 320) (0 -1280 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10670" + "plane" "(64 -1296 64) (0 -1296 64) (0 -1296 320)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14783" + side + { + "id" "10687" + "plane" "(-16 -1216 320) (0 -1216 320) (0 -1280 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10686" + "plane" "(-16 -1280 64) (0 -1280 64) (0 -1216 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10685" + "plane" "(-16 -1216 320) (-16 -1280 320) (-16 -1280 64)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10684" + "plane" "(0 -1216 64) (0 -1280 64) (0 -1280 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10683" + "plane" "(0 -1216 320) (-16 -1216 320) (-16 -1216 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10682" + "plane" "(0 -1280 64) (-16 -1280 64) (-16 -1280 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14786" + side + { + "id" "10699" + "plane" "(-16 -1120 320) (0 -1120 320) (0 -1184 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10698" + "plane" "(-16 -1184 64) (0 -1184 64) (0 -1120 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10697" + "plane" "(-16 -1120 320) (-16 -1184 320) (-16 -1184 64)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10696" + "plane" "(0 -1120 64) (0 -1184 64) (0 -1184 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10695" + "plane" "(0 -1120 320) (-16 -1120 320) (-16 -1120 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10694" + "plane" "(0 -1184 64) (-16 -1184 64) (-16 -1184 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14787" + side + { + "id" "10711" + "plane" "(-16 -1024 320) (0 -1024 320) (0 -1088 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10710" + "plane" "(-16 -1088 64) (0 -1088 64) (0 -1024 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10709" + "plane" "(-16 -1024 320) (-16 -1088 320) (-16 -1088 64)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10708" + "plane" "(0 -1024 64) (0 -1088 64) (0 -1088 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10707" + "plane" "(0 -1024 320) (-16 -1024 320) (-16 -1024 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10706" + "plane" "(0 -1088 64) (-16 -1088 64) (-16 -1088 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14788" + side + { + "id" "10723" + "plane" "(-16 -928 320) (0 -928 320) (0 -992 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10722" + "plane" "(-16 -992 64) (0 -992 64) (0 -928 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10721" + "plane" "(-16 -928 320) (-16 -992 320) (-16 -992 64)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10720" + "plane" "(0 -928 64) (0 -992 64) (0 -992 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10719" + "plane" "(0 -928 320) (-16 -928 320) (-16 -928 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10718" + "plane" "(0 -992 64) (-16 -992 64) (-16 -992 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14789" + side + { + "id" "10735" + "plane" "(0 -912 320) (64 -912 320) (64 -928 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10734" + "plane" "(0 -928 64) (64 -928 64) (64 -912 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10733" + "plane" "(0 -912 320) (0 -928 320) (0 -928 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10732" + "plane" "(64 -912 64) (64 -928 64) (64 -928 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10731" + "plane" "(64 -912 320) (0 -912 320) (0 -912 64)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10730" + "plane" "(64 -928 64) (0 -928 64) (0 -928 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14795" + side + { + "id" "10759" + "plane" "(64 -1408 320) (80 -1408 320) (80 -1472 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10758" + "plane" "(64 -1472 304) (80 -1472 304) (80 -1408 304)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10757" + "plane" "(64 -1408 320) (64 -1472 320) (64 -1472 304)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10756" + "plane" "(80 -1408 304) (80 -1472 304) (80 -1472 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10755" + "plane" "(80 -1408 320) (64 -1408 320) (64 -1408 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10754" + "plane" "(80 -1472 304) (64 -1472 304) (64 -1472 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14796" + side + { + "id" "10777" + "plane" "(64 -1312 192) (80 -1312 192) (80 -1376 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10776" + "plane" "(64 -1376 176) (80 -1376 176) (80 -1312 176)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10775" + "plane" "(64 -1312 192) (64 -1376 192) (64 -1376 176)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10774" + "plane" "(80 -1312 176) (80 -1376 176) (80 -1376 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10773" + "plane" "(80 -1312 192) (64 -1312 192) (64 -1312 176)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10772" + "plane" "(80 -1376 176) (64 -1376 176) (64 -1376 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14797" + side + { + "id" "10783" + "plane" "(64 -1312 320) (80 -1312 320) (80 -1376 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10782" + "plane" "(64 -1376 304) (80 -1376 304) (80 -1312 304)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10781" + "plane" "(64 -1312 320) (64 -1376 320) (64 -1376 304)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10780" + "plane" "(80 -1312 304) (80 -1376 304) (80 -1376 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10779" + "plane" "(80 -1312 320) (64 -1312 320) (64 -1312 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10778" + "plane" "(80 -1376 304) (64 -1376 304) (64 -1376 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14798" + side + { + "id" "10801" + "plane" "(0 -1296 192) (64 -1296 192) (64 -1312 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10800" + "plane" "(0 -1312 176) (64 -1312 176) (64 -1296 176)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10799" + "plane" "(0 -1296 192) (0 -1312 192) (0 -1312 176)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10798" + "plane" "(64 -1296 176) (64 -1312 176) (64 -1312 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10797" + "plane" "(64 -1296 192) (0 -1296 192) (0 -1296 176)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10796" + "plane" "(64 -1312 176) (0 -1312 176) (0 -1312 192)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14799" + side + { + "id" "10807" + "plane" "(0 -1296 320) (64 -1296 320) (64 -1312 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10806" + "plane" "(0 -1312 304) (64 -1312 304) (64 -1296 304)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10805" + "plane" "(0 -1296 320) (0 -1312 320) (0 -1312 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10804" + "plane" "(64 -1296 304) (64 -1312 304) (64 -1312 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10803" + "plane" "(64 -1296 320) (0 -1296 320) (0 -1296 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10802" + "plane" "(64 -1312 304) (0 -1312 304) (0 -1312 320)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14803" + side + { + "id" "10831" + "plane" "(-32 -1216 320) (-16 -1216 320) (-16 -1280 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10830" + "plane" "(-32 -1280 304) (-16 -1280 304) (-16 -1216 304)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10829" + "plane" "(-32 -1216 320) (-32 -1280 320) (-32 -1280 304)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10828" + "plane" "(-16 -1216 304) (-16 -1280 304) (-16 -1280 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10827" + "plane" "(-16 -1216 320) (-32 -1216 320) (-32 -1216 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10826" + "plane" "(-16 -1280 304) (-32 -1280 304) (-32 -1280 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14804" + side + { + "id" "10849" + "plane" "(-32 -1120 192) (-16 -1120 192) (-16 -1184 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10848" + "plane" "(-32 -1184 176) (-16 -1184 176) (-16 -1120 176)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10847" + "plane" "(-32 -1120 192) (-32 -1184 192) (-32 -1184 176)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10846" + "plane" "(-16 -1120 176) (-16 -1184 176) (-16 -1184 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10845" + "plane" "(-16 -1120 192) (-32 -1120 192) (-32 -1120 176)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10844" + "plane" "(-16 -1184 176) (-32 -1184 176) (-32 -1184 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14805" + side + { + "id" "10855" + "plane" "(-32 -1120 320) (-16 -1120 320) (-16 -1184 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10854" + "plane" "(-32 -1184 304) (-16 -1184 304) (-16 -1120 304)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10853" + "plane" "(-32 -1120 320) (-32 -1184 320) (-32 -1184 304)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10852" + "plane" "(-16 -1120 304) (-16 -1184 304) (-16 -1184 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10851" + "plane" "(-16 -1120 320) (-32 -1120 320) (-32 -1120 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10850" + "plane" "(-16 -1184 304) (-32 -1184 304) (-32 -1184 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14806" + side + { + "id" "10873" + "plane" "(-32 -1024 192) (-16 -1024 192) (-16 -1088 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10872" + "plane" "(-32 -1088 176) (-16 -1088 176) (-16 -1024 176)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10871" + "plane" "(-32 -1024 192) (-32 -1088 192) (-32 -1088 176)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10870" + "plane" "(-16 -1024 176) (-16 -1088 176) (-16 -1088 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10869" + "plane" "(-16 -1024 192) (-32 -1024 192) (-32 -1024 176)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10868" + "plane" "(-16 -1088 176) (-32 -1088 176) (-32 -1088 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14807" + side + { + "id" "10879" + "plane" "(-32 -1024 320) (-16 -1024 320) (-16 -1088 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10878" + "plane" "(-32 -1088 304) (-16 -1088 304) (-16 -1024 304)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10877" + "plane" "(-32 -1024 320) (-32 -1088 320) (-32 -1088 304)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10876" + "plane" "(-16 -1024 304) (-16 -1088 304) (-16 -1088 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10875" + "plane" "(-16 -1024 320) (-32 -1024 320) (-32 -1024 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10874" + "plane" "(-16 -1088 304) (-32 -1088 304) (-32 -1088 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14812" + side + { + "id" "10915" + "plane" "(-32 -928 320) (-16 -928 320) (-16 -992 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10914" + "plane" "(-32 -992 304) (-16 -992 304) (-16 -928 304)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10913" + "plane" "(-32 -928 320) (-32 -992 320) (-32 -992 304)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10912" + "plane" "(-16 -928 304) (-16 -992 304) (-16 -992 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10911" + "plane" "(-16 -928 320) (-32 -928 320) (-32 -928 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10910" + "plane" "(-16 -992 304) (-32 -992 304) (-32 -992 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14814" + side + { + "id" "10939" + "plane" "(0 -896 320) (64 -896 320) (64 -912 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10938" + "plane" "(0 -912 304) (64 -912 304) (64 -896 304)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10937" + "plane" "(0 -896 320) (0 -912 320) (0 -912 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10936" + "plane" "(64 -896 304) (64 -912 304) (64 -912 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10935" + "plane" "(64 -896 320) (0 -896 320) (0 -896 304)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10934" + "plane" "(64 -912 304) (0 -912 304) (0 -912 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14823" + side + { + "id" "10961" + "plane" "(-128 -704 64) (-64 -928 64) (-160 -928 32)" + "material" "DEV/VALUESAND40" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10960" + "plane" "(-64 -928 32) (-128 -704 32) (-224 -704 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10959" + "plane" "(-64 -928 64) (-128 -704 64) (-128 -704 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10958" + "plane" "(-128 -704 64) (-224 -704 32) (-128 -704 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10957" + "plane" "(-64 -928 64) (-64 -928 32) (-160 -928 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14829" + side + { + "id" "10971" + "plane" "(-224 -544 32) (-128 -544 64) (-128 -704 64)" + "material" "DEV/VALUESAND40" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10970" + "plane" "(-224 -704 32) (-128 -704 32) (-128 -544 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10969" + "plane" "(-128 -704 32) (-128 -704 64) (-128 -544 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10968" + "plane" "(-128 -544 32) (-128 -544 64) (-224 -544 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10967" + "plane" "(-224 -704 32) (-128 -704 64) (-128 -704 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14831" + side + { + "id" "10981" + "plane" "(-128 -544 64) (-224 -544 32) (-160 -384 32)" + "material" "DEV/VALUESAND40" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10980" + "plane" "(-64 -384 32) (-160 -384 32) (-224 -544 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10979" + "plane" "(-64 -384 64) (-64 -384 32) (-128 -544 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10978" + "plane" "(-160 -384 32) (-64 -384 32) (-64 -384 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10977" + "plane" "(-128 -544 32) (-224 -544 32) (-128 -544 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14849" + side + { + "id" "11027" + "plane" "(-160 -384 32) (-160 -288 32) (-64 -192 64)" + "material" "DEV/VALUESAND40" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11026" + "plane" "(-160 -288 32) (-160 -384 32) (-64 -384 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11025" + "plane" "(-64 -192 32) (-64 -384 32) (-64 -384 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11024" + "plane" "(-64 -192 32) (-64 -192 64) (-160 -288 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11023" + "plane" "(-160 -384 32) (-64 -384 64) (-64 -384 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14853" + side + { + "id" "11037" + "plane" "(-320 -288 32) (-320 -192 64) (-64 -192 64)" + "material" "DEV/VALUESAND40" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11036" + "plane" "(-160 -288 32) (-64 -192 32) (-320 -192 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11035" + "plane" "(-64 -192 32) (-64 -192 64) (-320 -192 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11034" + "plane" "(-320 -192 64) (-320 -288 32) (-320 -192 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11033" + "plane" "(-64 -192 64) (-64 -192 32) (-160 -288 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14858" + side + { + "id" "11049" + "plane" "(-320 -352 32) (-160 -384 32) (-224 -544 32)" + "material" "DEV/VALUESAND30" + "uaxis" "[1 0 0 320] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11048" + "plane" "(-416 -448 0) (-224 -544 0) (-160 -384 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11047" + "plane" "(-320 -352 32) (-416 -448 32) (-416 -448 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11046" + "plane" "(-160 -384 32) (-320 -352 32) (-320 -352 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11045" + "plane" "(-416 -448 32) (-224 -544 32) (-224 -544 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11044" + "plane" "(-224 -544 32) (-160 -384 32) (-160 -384 0)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14860" + side + { + "id" "11061" + "plane" "(-224 -544 32) (-224 -704 32) (-416 -704 32)" + "material" "DEV/VALUESAND30" + "uaxis" "[1 0 0 320] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11060" + "plane" "(-224 -704 0) (-224 -544 0) (-416 -448 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11059" + "plane" "(-416 -704 32) (-416 -704 0) (-416 -448 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11058" + "plane" "(-416 -448 32) (-416 -448 0) (-224 -544 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11057" + "plane" "(-224 -704 32) (-224 -704 0) (-416 -704 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11056" + "plane" "(-224 -544 32) (-224 -544 0) (-224 -704 0)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14862" + side + { + "id" "11073" + "plane" "(-160 -928 32) (-352 -928 32) (-416 -704 32)" + "material" "DEV/VALUESAND30" + "uaxis" "[1 0 0 320] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11072" + "plane" "(-224 -704 0) (-416 -704 0) (-352 -928 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11071" + "plane" "(-352 -928 0) (-416 -704 0) (-416 -704 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11070" + "plane" "(-416 -704 0) (-224 -704 0) (-224 -704 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11069" + "plane" "(-160 -928 0) (-352 -928 0) (-352 -928 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11068" + "plane" "(-224 -704 0) (-160 -928 0) (-160 -928 32)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14864" + side + { + "id" "11085" + "plane" "(-320 -1152 32) (-352 -928 32) (-160 -928 32)" + "material" "DEV/VALUESAND30" + "uaxis" "[1 0 0 320] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11084" + "plane" "(-352 -928 0) (-320 -1152 0) (-160 -1152 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11083" + "plane" "(-352 -928 0) (-352 -928 32) (-320 -1152 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11082" + "plane" "(-160 -928 0) (-160 -928 32) (-352 -928 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11081" + "plane" "(-320 -1152 0) (-320 -1152 32) (-160 -1152 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11080" + "plane" "(-160 -1152 0) (-160 -1152 32) (-160 -928 32)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[0 1 0 896] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14869" + side + { + "id" "11097" + "plane" "(-320 -1152 32) (-160 -1152 32) (-160 -1472 32)" + "material" "DEV/VALUESAND30" + "uaxis" "[1 0 0 320] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11096" + "plane" "(-288 -1472 0) (-160 -1472 0) (-160 -1152 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11095" + "plane" "(-320 -1152 32) (-288 -1472 32) (-288 -1472 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11094" + "plane" "(-160 -1152 32) (-320 -1152 32) (-320 -1152 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11093" + "plane" "(-288 -1472 32) (-160 -1472 32) (-160 -1472 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11092" + "plane" "(-160 -1472 32) (-160 -1152 32) (-160 -1152 0)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[0 1 0 768] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14884" + side + { + "id" "11111" + "plane" "(-312 -1232 32) (-392 -1232 64) (-320 -1152 32)" + "material" "DEV/VALUESAND40" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11110" + "plane" "(-320 -1152 32) (-392 -1232 32) (-312 -1232 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11109" + "plane" "(-392 -1232 32) (-392 -1232 64) (-312 -1232 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11108" + "plane" "(-392 -1232 64) (-392 -1232 32) (-320 -1152 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "228 201 0" + "groupid" "14890" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14885" + side + { + "id" "11116" + "plane" "(-320 -1152 32) (-392 -1232 64) (-416 -1152 64)" + "material" "DEV/VALUESAND30" + "uaxis" "[-1 0 0 320] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11115" + "plane" "(-320 -1152 32) (-416 -1152 32) (-392 -1232 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11114" + "plane" "(-416 -1152 64) (-392 -1232 64) (-392 -1232 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11113" + "plane" "(-416 -1152 64) (-416 -1152 32) (-320 -1152 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11112" + "plane" "(-392 -1232 32) (-392 -1232 64) (-320 -1152 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "228 201 0" + "groupid" "14890" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14892" + side + { + "id" "11130" + "plane" "(-352 -928 32) (-416 -1152 64) (-416 -928 64)" + "material" "DEV/VALUESAND30" + "uaxis" "[-1 0 0 320] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11129" + "plane" "(-352 -928 32) (-416 -928 32) (-416 -1152 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11128" + "plane" "(-416 -928 64) (-416 -1152 64) (-416 -1152 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11127" + "plane" "(-416 -928 64) (-416 -928 32) (-352 -928 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11126" + "plane" "(-416 -1152 32) (-416 -1152 64) (-352 -928 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "228 201 0" + "groupid" "14891" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14893" + side + { + "id" "11134" + "plane" "(-320 -1152 32) (-416 -1152 64) (-352 -928 32)" + "material" "DEV/VALUESAND40" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11133" + "plane" "(-352 -928 32) (-416 -1152 32) (-320 -1152 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11132" + "plane" "(-416 -1152 32) (-416 -1152 64) (-320 -1152 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11131" + "plane" "(-416 -1152 64) (-416 -1152 32) (-352 -928 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "228 201 0" + "groupid" "14891" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14913" + side + { + "id" "11145" + "plane" "(-416 -704 32) (-352 -928 32) (-416 -928 64)" + "material" "DEV/VALUESAND40" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11144" + "plane" "(-416 -928 32) (-352 -928 32) (-416 -704 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11143" + "plane" "(-416 -704 32) (-416 -928 64) (-416 -928 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11142" + "plane" "(-416 -928 32) (-416 -928 64) (-352 -928 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 154 211" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14922" + side + { + "id" "11157" + "plane" "(64 -1376 64) (64 -1312 64) (80 -1312 64)" + "material" "DEV/REFLECTIVITY_30" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11156" + "plane" "(64 -1312 32) (64 -1376 32) (80 -1376 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11155" + "plane" "(64 -1376 32) (64 -1312 32) (64 -1312 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 661] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11154" + "plane" "(80 -1312 32) (80 -1376 32) (80 -1376 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11153" + "plane" "(64 -1312 32) (80 -1312 32) (80 -1312 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11152" + "plane" "(80 -1376 32) (64 -1376 32) (64 -1376 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14925" + side + { + "id" "11169" + "plane" "(64 -1472 64) (64 -1408 64) (80 -1408 64)" + "material" "DEV/REFLECTIVITY_30" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11168" + "plane" "(64 -1408 32) (64 -1472 32) (80 -1472 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11167" + "plane" "(64 -1472 32) (64 -1408 32) (64 -1408 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 853] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11166" + "plane" "(80 -1408 32) (80 -1472 32) (80 -1472 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11165" + "plane" "(64 -1408 32) (80 -1408 32) (80 -1408 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11164" + "plane" "(80 -1472 32) (64 -1472 32) (64 -1472 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14926" + side + { + "id" "11181" + "plane" "(0 -1312 64) (0 -1296 64) (64 -1296 64)" + "material" "DEV/REFLECTIVITY_30" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11180" + "plane" "(0 -1296 32) (0 -1312 32) (64 -1312 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11179" + "plane" "(0 -1312 32) (0 -1296 32) (0 -1296 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 629] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11178" + "plane" "(64 -1296 32) (64 -1312 32) (64 -1312 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11177" + "plane" "(0 -1296 32) (64 -1296 32) (64 -1296 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11176" + "plane" "(64 -1312 32) (0 -1312 32) (0 -1312 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14928" + side + { + "id" "11193" + "plane" "(-32 -1280 64) (-32 -1216 64) (-16 -1216 64)" + "material" "DEV/REFLECTIVITY_30" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11192" + "plane" "(-32 -1216 32) (-32 -1280 32) (-16 -1280 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11191" + "plane" "(-32 -1280 32) (-32 -1216 32) (-32 -1216 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 565] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11190" + "plane" "(-16 -1216 32) (-16 -1280 32) (-16 -1280 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11189" + "plane" "(-32 -1216 32) (-16 -1216 32) (-16 -1216 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11188" + "plane" "(-16 -1280 32) (-32 -1280 32) (-32 -1280 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14930" + side + { + "id" "11205" + "plane" "(-32 -1184 64) (-32 -1120 64) (-16 -1120 64)" + "material" "DEV/REFLECTIVITY_30" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11204" + "plane" "(-32 -1120 32) (-32 -1184 32) (-16 -1184 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11203" + "plane" "(-32 -1184 32) (-32 -1120 32) (-32 -1120 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 373] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11202" + "plane" "(-16 -1120 32) (-16 -1184 32) (-16 -1184 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11201" + "plane" "(-32 -1120 32) (-16 -1120 32) (-16 -1120 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11200" + "plane" "(-16 -1184 32) (-32 -1184 32) (-32 -1184 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14931" + side + { + "id" "11217" + "plane" "(-32 -1088 64) (-32 -1024 64) (-16 -1024 64)" + "material" "DEV/REFLECTIVITY_30" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11216" + "plane" "(-32 -1024 32) (-32 -1088 32) (-16 -1088 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11215" + "plane" "(-32 -1088 32) (-32 -1024 32) (-32 -1024 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 181] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11214" + "plane" "(-16 -1024 32) (-16 -1088 32) (-16 -1088 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11213" + "plane" "(-32 -1024 32) (-16 -1024 32) (-16 -1024 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11212" + "plane" "(-16 -1088 32) (-32 -1088 32) (-32 -1088 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14932" + side + { + "id" "11229" + "plane" "(-32 -992 64) (-32 -928 64) (-16 -928 64)" + "material" "DEV/REFLECTIVITY_30" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11228" + "plane" "(-32 -928 32) (-32 -992 32) (-16 -992 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11227" + "plane" "(-32 -992 32) (-32 -928 32) (-32 -928 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 -11] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11226" + "plane" "(-16 -928 32) (-16 -992 32) (-16 -992 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11225" + "plane" "(-32 -928 32) (-16 -928 32) (-16 -928 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11224" + "plane" "(-16 -992 32) (-32 -992 32) (-32 -992 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14935" + side + { + "id" "11241" + "plane" "(-1.90735e-06 -912 64) (-1.90735e-06 -896 64) (64 -896 64)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 640] 0.25" + "vaxis" "[0 -1 0 768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11240" + "plane" "(-1.90735e-06 -896 32) (-1.90735e-06 -912 32) (64 -912 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11239" + "plane" "(-1.90735e-06 -912 32) (-1.90735e-06 -896 32) (-1.90735e-06 -896 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 -75] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11238" + "plane" "(64 -896 32) (64 -912 32) (64 -912 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11237" + "plane" "(-1.90735e-06 -896 32) (64 -896 32) (64 -896 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11236" + "plane" "(64 -912 32) (-1.90735e-06 -912 32) (-1.90735e-06 -912 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14941" + side + { + "id" "11255" + "plane" "(-384 -1312 64) (-392 -1232 64) (-312 -1232 32)" + "material" "DEV/VALUESAND30" + "uaxis" "[-1 0 0 320] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11254" + "plane" "(-392 -1232 32) (-384 -1312 32) (-312 -1232 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11253" + "plane" "(-384 -1312 64) (-384 -1312 32) (-392 -1232 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11252" + "plane" "(-392 -1232 32) (-312 -1232 32) (-392 -1232 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11251" + "plane" "(-384 -1312 64) (-312 -1232 32) (-384 -1312 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "228 201 0" + "groupid" "14940" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14942" + side + { + "id" "11259" + "plane" "(-384 -1312 64) (-312 -1232 32) (-304 -1312 32)" + "material" "DEV/VALUESAND40" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11258" + "plane" "(-384 -1312 32) (-304 -1312 32) (-312 -1232 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11257" + "plane" "(-384 -1312 64) (-304 -1312 32) (-384 -1312 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11256" + "plane" "(-384 -1312 32) (-312 -1232 32) (-384 -1312 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "228 201 0" + "groupid" "14940" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14946" + side + { + "id" "11273" + "plane" "(-304 -1312 32) (-416 -1392 64) (-384 -1312 64)" + "material" "DEV/VALUESAND30" + "uaxis" "[-1 0 0 320] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11272" + "plane" "(-304 -1312 32) (-384 -1312 32) (-416 -1392 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11271" + "plane" "(-384 -1312 32) (-384 -1312 64) (-416 -1392 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11270" + "plane" "(-384 -1312 64) (-384 -1312 32) (-304 -1312 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11269" + "plane" "(-416 -1392 32) (-416 -1392 64) (-304 -1312 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "228 201 0" + "groupid" "14945" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14947" + side + { + "id" "11277" + "plane" "(-296 -1392 32) (-416 -1392 64) (-304 -1312 32)" + "material" "DEV/VALUESAND40" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11276" + "plane" "(-304 -1312 32) (-416 -1392 32) (-296 -1392 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11275" + "plane" "(-416 -1392 32) (-416 -1392 64) (-296 -1392 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11274" + "plane" "(-416 -1392 64) (-416 -1392 32) (-304 -1312 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "228 201 0" + "groupid" "14945" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14957" + side + { + "id" "11291" + "plane" "(-296 -1392 32) (-416 -1472 64) (-416 -1392 64)" + "material" "DEV/VALUESAND30" + "uaxis" "[-1 0 0 320] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11290" + "plane" "(-296 -1392 32) (-416 -1392 32) (-416 -1472 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11289" + "plane" "(-416 -1392 32) (-416 -1392 64) (-416 -1472 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11288" + "plane" "(-416 -1392 64) (-416 -1392 32) (-296 -1392 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11287" + "plane" "(-416 -1472 32) (-416 -1472 64) (-296 -1392 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "228 201 0" + "groupid" "14956" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14958" + side + { + "id" "11295" + "plane" "(-288 -1472 32) (-416 -1472 64) (-296 -1392 32)" + "material" "DEV/VALUESAND40" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11294" + "plane" "(-296 -1392 32) (-416 -1472 32) (-288 -1472 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11293" + "plane" "(-416 -1472 32) (-416 -1472 64) (-288 -1472 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11292" + "plane" "(-416 -1472 64) (-416 -1472 32) (-296 -1392 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "228 201 0" + "groupid" "14956" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14993" + side + { + "id" "11349" + "plane" "(-448 -1392 320) (-448 -1312 320) (-384 -1312 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11348" + "plane" "(-448 -1312 64) (-448 -1392 64) (-416 -1392 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11347" + "plane" "(-448 -1392 64) (-448 -1312 64) (-448 -1312 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11346" + "plane" "(-448 -1312 64) (-384 -1312 64) (-384 -1312 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11345" + "plane" "(-416 -1392 64) (-448 -1392 64) (-448 -1392 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11344" + "plane" "(-384 -1312 64) (-416 -1392 64) (-416 -1392 320)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0.371391 0.928477 0 5.45685] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14994" + side + { + "id" "11361" + "plane" "(-448 -1392 320) (-416 -1392 320) (-416 -1472 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11360" + "plane" "(-448 -1472 64) (-416 -1472 64) (-416 -1392 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11359" + "plane" "(-448 -1392 64) (-448 -1392 320) (-448 -1472 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11358" + "plane" "(-416 -1392 64) (-416 -1392 320) (-448 -1392 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11357" + "plane" "(-448 -1472 64) (-448 -1472 320) (-416 -1472 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11356" + "plane" "(-416 -1472 64) (-416 -1472 320) (-416 -1392 320)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 -88.9004] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14996" + side + { + "id" "11373" + "plane" "(-384 -1312 320) (-448 -1312 320) (-448 -1232 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11372" + "plane" "(-392 -1232 64) (-448 -1232 64) (-448 -1312 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11371" + "plane" "(-448 -1312 320) (-448 -1312 64) (-448 -1232 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11370" + "plane" "(-384 -1312 320) (-384 -1312 64) (-448 -1312 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11369" + "plane" "(-448 -1232 320) (-448 -1232 64) (-392 -1232 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11368" + "plane" "(-392 -1232 320) (-392 -1232 64) (-384 -1312 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[-0.0995039 0.995037 0 -181.536] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14999" + side + { + "id" "11385" + "plane" "(-448 -1232 320) (-448 -1152 320) (-416 -1152 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11384" + "plane" "(-448 -1152 64) (-448 -1232 64) (-392 -1232 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11383" + "plane" "(-448 -1232 64) (-448 -1152 64) (-448 -1152 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11382" + "plane" "(-392 -1232 64) (-448 -1232 64) (-448 -1232 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11381" + "plane" "(-448 -1152 64) (-416 -1152 64) (-416 -1152 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11380" + "plane" "(-416 -1152 64) (-392 -1232 64) (-392 -1232 320)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[-0.287349 0.957826 0 -420.494] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15001" + side + { + "id" "11397" + "plane" "(-448 -928 320) (-416 -928 320) (-416 -1152 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11396" + "plane" "(-448 -1152 64) (-416 -1152 64) (-416 -928 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11395" + "plane" "(-448 -928 64) (-448 -928 320) (-448 -1152 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11394" + "plane" "(-416 -928 64) (-416 -928 320) (-448 -928 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11393" + "plane" "(-448 -1152 64) (-448 -1152 320) (-416 -1152 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11392" + "plane" "(-416 -1152 64) (-416 -1152 320) (-416 -928 320)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 -88.9004] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15017" + side + { + "id" "11427" + "plane" "(-416 -704 320) (-512 -704 320) (-512 -608 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11426" + "plane" "(-464 -608 32) (-512 -608 32) (-512 -704 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11425" + "plane" "(-512 -704 32) (-512 -608 32) (-512 -608 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11424" + "plane" "(-512 -608 32) (-464 -608 32) (-464 -608 320)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[-1 0 0 -161.872] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11423" + "plane" "(-416 -704 32) (-512 -704 32) (-512 -704 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11422" + "plane" "(-416 -656 32) (-416 -704 32) (-416 -704 320)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 -88.9005] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11421" + "plane" "(-464 -608 32) (-416 -656 32) (-416 -656 320)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[-0.707107 0.707107 0 -64.6953] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15053" + side + { + "id" "11511" + "plane" "(-416 -704 320) (-416 -928 320) (-448 -928 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11510" + "plane" "(-416 -928 64) (-416 -704 32) (-448 -704 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11509" + "plane" "(-448 -704 320) (-448 -928 320) (-448 -928 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11508" + "plane" "(-416 -704 320) (-448 -704 320) (-448 -704 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11507" + "plane" "(-448 -928 320) (-416 -928 320) (-416 -928 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11506" + "plane" "(-416 -928 320) (-416 -704 320) (-416 -704 32)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 -88.9005] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15057" + side + { + "id" "11523" + "plane" "(-400 -1152 320) (-416 -1152 320) (-416 -1040 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11522" + "plane" "(-400 -1040 208) (-416 -1040 176) (-416 -1152 176)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[-0.0105297 1 -0.0210591 -90.8001] 0.5" + "vaxis" "[-0.44709 -0.0235448 -0.894179 -327.94] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11521" + "plane" "(-416 -1152 320) (-416 -1152 176) (-416 -1040 176)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11520" + "plane" "(-416 -1040 320) (-416 -1040 176) (-400 -1040 208)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11519" + "plane" "(-400 -1152 320) (-400 -1152 208) (-416 -1152 176)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0.980198 0.19802 0 -130.102] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11518" + "plane" "(-400 -1040 320) (-400 -1040 208) (-400 -1152 208)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 -90.4965] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15064" + side + { + "id" "11535" + "plane" "(-384 -1040 320) (-416 -1040 320) (-416 -1008 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11534" + "plane" "(-384 -1008 208) (-416 -1008 176) (-416 -1040 176)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[-0.0292041 1 -0.0292039 -104.613] 0.5" + "vaxis" "[-0.706504 -0.0413007 -0.706503 -133.062] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11533" + "plane" "(-416 -1040 320) (-416 -1040 176) (-416 -1008 176)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11532" + "plane" "(-416 -1008 320) (-416 -1008 176) (-384 -1008 208)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11531" + "plane" "(-384 -1040 320) (-384 -1040 208) (-416 -1040 176)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0.980198 0.19802 0 -951.385] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11530" + "plane" "(-384 -1008 320) (-384 -1008 208) (-384 -1040 208)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 -92.0928] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15068" + side + { + "id" "11547" + "plane" "(-416 -1008 320) (-416 -976 320) (-368 -976 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11546" + "plane" "(-416 -976 160) (-416 -1008 160) (-368 -1008 208)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[-0.0292041 1 -0.0292039 -105.548] 0.5" + "vaxis" "[-0.706504 -0.0413007 -0.706503 -123.67] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11545" + "plane" "(-416 -1008 160) (-416 -976 160) (-416 -976 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11544" + "plane" "(-416 -976 160) (-368 -976 208) (-368 -976 320)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[-1 0 0 -827.943] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11543" + "plane" "(-368 -1008 208) (-416 -1008 160) (-416 -1008 320)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0.980198 0.19802 0 -893.465] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11542" + "plane" "(-368 -976 208) (-368 -1008 208) (-368 -1008 320)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 -93.6888] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15071" + side + { + "id" "11559" + "plane" "(-416 -976 320) (-416 -944 320) (-384 -944 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11558" + "plane" "(-416 -944 176) (-416 -976 176) (-384 -976 240)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[-0.0105297 1 -0.0210591 -90.8001] 0.5" + "vaxis" "[-0.44709 -0.0235448 -0.894179 -327.94] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11557" + "plane" "(-416 -976 176) (-416 -944 176) (-416 -944 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11556" + "plane" "(-416 -944 176) (-384 -944 240) (-384 -944 320)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[-1 0 0 -770.023] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11555" + "plane" "(-384 -976 240) (-416 -976 176) (-416 -976 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11554" + "plane" "(-384 -944 240) (-384 -976 240) (-384 -976 320)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 -92.0928] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15073" + side + { + "id" "11571" + "plane" "(-400 -1456 320) (-416 -1456 320) (-416 -1408 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11570" + "plane" "(-400 -1408 208) (-416 -1408 176) (-416 -1456 176)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[-0.0105297 1 -0.0210591 -90.8001] 0.5" + "vaxis" "[-0.44709 -0.0235448 -0.894179 -327.94] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11569" + "plane" "(-416 -1456 320) (-416 -1456 176) (-416 -1408 176)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11568" + "plane" "(-416 -1408 320) (-416 -1408 176) (-400 -1408 208)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[-1 0 0 -585.852] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11567" + "plane" "(-400 -1456 320) (-400 -1456 208) (-416 -1456 176)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0.980198 0.19802 0 -680.334] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11566" + "plane" "(-400 -1408 320) (-400 -1408 208) (-400 -1456 208)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 -90.4965] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15079" + side + { + "id" "11583" + "plane" "(-400 -816 320) (-416 -816 320) (-416 -704 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11582" + "plane" "(-400 -704 208) (-416 -704 176) (-416 -816 176)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[-0.0105297 1 -0.0210591 -90.8001] 0.5" + "vaxis" "[-0.44709 -0.0235448 -0.894179 -327.94] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11581" + "plane" "(-416 -816 320) (-416 -816 176) (-416 -704 176)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11580" + "plane" "(-416 -704 320) (-416 -704 176) (-400 -704 208)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[-1 0 0 -335.629] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11579" + "plane" "(-400 -816 320) (-400 -816 208) (-416 -816 176)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0.980198 0.19802 0 -545.95] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11578" + "plane" "(-400 -704 320) (-400 -704 208) (-400 -816 208)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 -90.4965] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15118" + side + { + "id" "11624" + "plane" "(-160 -1472 32) (-160 -1152 32) (-64 -1152 64)" + "material" "DEV/VALUESAND40" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11623" + "plane" "(-160 -1152 32) (-160 -1472 32) (-64 -1472 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11622" + "plane" "(-64 -1152 32) (-64 -1472 32) (-64 -1472 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11621" + "plane" "(-64 -1472 32) (-160 -1472 32) (-64 -1472 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11620" + "plane" "(-64 -1152 64) (-159.984 -1152 32) (-64 -1152 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15119" + side + { + "id" "11629" + "plane" "(-160 -1152 32) (-160 -928 32) (-64 -928 64)" + "material" "DEV/VALUESAND40" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11628" + "plane" "(-160 -928 32) (-160 -1152 32) (-64 -1152 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11627" + "plane" "(-64 -928 32) (-64 -1152 32) (-64 -1152 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11626" + "plane" "(-64 -928 64) (-159.984 -928 32) (-64 -928 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11625" + "plane" "(-64 -1152 32) (-160 -1152 32) (-64 -1152 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15318" + side + { + "id" "11666" + "plane" "(224 -1312 320) (-32 -1312 384) (-32 -896 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11667" + "plane" "(224 -896 320) (-32 -896 320) (-32 -1312 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11668" + "plane" "(-32 -1312 320) (-32 -896 320) (-32 -896 384)" + "material" "DEV/REFLECTIVITY_60" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11670" + "plane" "(-32 -896 320) (224 -896 320) (-32 -896 384)" + "material" "DEV/REFLECTIVITY_60" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11671" + "plane" "(-32 -1312 384) (224 -1312 320) (-32 -1312 320)" + "material" "DEV/REFLECTIVITY_60" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 220 125" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15324" + side + { + "id" "11681" + "plane" "(64 -1504 360) (64 -1312 360) (224 -1312 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11680" + "plane" "(64 -1312 320) (64 -1504 320) (224 -1504 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11679" + "plane" "(64 -1312 320) (64 -1312 360) (64 -1504 360)" + "material" "DEV/REFLECTIVITY_60" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11678" + "plane" "(224 -1312 320) (64 -1312 360) (64 -1312 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11677" + "plane" "(224 -1504 320) (64 -1504 320) (64 -1504 360)" + "material" "DEV/REFLECTIVITY_60" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 220 125" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19816" + side + { + "id" "24511" + "plane" "(448 784 400) (448 800 400) (1216 800 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24510" + "plane" "(448 800 294) (448 784 294) (1216 784 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24509" + "plane" "(448 784 294) (448 800 294) (448 800 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24508" + "plane" "(1216 800 294) (1216 784 294) (1216 784 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24507" + "plane" "(448 800 294) (1216 800 294) (1216 800 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24506" + "plane" "(1216 784 294) (448 784 294) (448 784 400)" + "material" "SOLUTION2/GARAGE/WHITEWALLBRICKS" + "uaxis" "[-1 0 0 224] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "138 159 0" + "groupid" "19815" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19817" + side + { + "id" "24517" + "plane" "(448 784 294) (448 800 294) (496 800 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24516" + "plane" "(448 800 96) (448 784 96) (496 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24515" + "plane" "(448 784 96) (448 800 96) (448 800 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24514" + "plane" "(496 800 96) (496 784 96) (496 784 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24513" + "plane" "(448 800 96) (496 800 96) (496 800 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24512" + "plane" "(496 784 96) (448 784 96) (448 784 294)" + "material" "SOLUTION2/GARAGE/WHITEWALLBRICKS" + "uaxis" "[-1 0 0 224] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "138 159 0" + "groupid" "19815" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19818" + side + { + "id" "24523" + "plane" "(768 784 294) (768 800 294) (816 800 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24522" + "plane" "(768 800 96) (768 784 96) (816 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24521" + "plane" "(768 784 96) (768 800 96) (768 800 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24520" + "plane" "(816 800 96) (816 784 96) (816 784 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24519" + "plane" "(768 800 96) (816 800 96) (816 800 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24518" + "plane" "(816 784 96) (768 784 96) (768 784 294)" + "material" "SOLUTION2/GARAGE/WHITEWALLBRICKS" + "uaxis" "[-1 0 0 224] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "138 159 0" + "groupid" "19815" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19819" + side + { + "id" "24529" + "plane" "(624 784 294) (624 800 294) (640 800 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24528" + "plane" "(624 800 96) (624 784 96) (640 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24527" + "plane" "(624 784 96) (624 800 96) (624 800 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24526" + "plane" "(640 800 96) (640 784 96) (640 784 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24525" + "plane" "(624 800 96) (640 800 96) (640 800 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24524" + "plane" "(640 784 96) (624 784 96) (624 784 294)" + "material" "SOLUTION2/GARAGE/WHITEWALLBRICKS" + "uaxis" "[-1 0 0 224] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "138 159 0" + "groupid" "19815" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19820" + side + { + "id" "24535" + "plane" "(944 784 294) (944 800 294) (960 800 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24534" + "plane" "(944 800 96) (944 784 96) (960 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24533" + "plane" "(944 784 96) (944 800 96) (944 800 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24532" + "plane" "(960 800 96) (960 784 96) (960 784 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24531" + "plane" "(944 800 96) (960 800 96) (960 800 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24530" + "plane" "(960 784 96) (944 784 96) (944 784 294)" + "material" "SOLUTION2/GARAGE/WHITEWALLBRICKS" + "uaxis" "[-1 0 0 224] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "138 159 0" + "groupid" "19815" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19821" + side + { + "id" "24541" + "plane" "(1088 784 294) (1088 800 294) (1216 800 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24540" + "plane" "(1088 800 96) (1088 784 96) (1216 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24539" + "plane" "(1088 784 96) (1088 800 96) (1088 800 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24538" + "plane" "(1216 800 96) (1216 784 96) (1216 784 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24537" + "plane" "(1088 800 96) (1216 800 96) (1216 800 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24536" + "plane" "(1216 784 96) (1088 784 96) (1088 784 294)" + "material" "SOLUTION2/GARAGE/WHITEWALLBRICKS" + "uaxis" "[-1 0 0 224] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "138 159 0" + "groupid" "19815" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19822" + side + { + "id" "24547" + "plane" "(816 784 464) (816 800 464) (1216 800 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24546" + "plane" "(816 800 400) (816 784 400) (1216 784 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24545" + "plane" "(816 784 400) (816 800 400) (816 800 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24544" + "plane" "(1216 800 400) (1216 784 400) (1216 784 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24543" + "plane" "(816 800 400) (1216 800 400) (1216 800 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24542" + "plane" "(1216 784 400) (816 784 400) (816 784 464)" + "material" "SOLUTION2/GARAGE/WHITEWALLBRICKS" + "uaxis" "[-1 0 0 224] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "138 159 0" + "groupid" "19815" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19824" + side + { + "id" "24553" + "plane" "(448 544 96) (224 544 96) (224 864 96)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24552" + "plane" "(448 864 64) (224 864 64) (224 544 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24551" + "plane" "(448 544 64) (224 544 64) (224 544 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24550" + "plane" "(224 864 64) (448 864 64) (448 864 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24549" + "plane" "(224 544 64) (224 864 64) (224 864 96)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24548" + "plane" "(448 864 64) (448 544 64) (448 544 96)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 243 0" + "groupid" "19823" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19825" + side + { + "id" "24559" + "plane" "(287.984 573.434 126) (271.379 559 126) (134.914 715.988 126)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0.75471 0.656059 0 -46.2065] 0.25" + "vaxis" "[0.656059 -0.75471 0 -48.6169] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24558" + "plane" "(194.543 767.809 96) (134.926 715.984 96) (271.382 559 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0.75471 0.656059 0 -46.2065] 0.25" + "vaxis" "[0.656059 -0.75471 0 -48.6169] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24557" + "plane" "(271.379 559 96) (134.922 715.984 96) (134.918 715.984 126)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-0.656059 0.75471 0 48.6169] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24556" + "plane" "(134.922 715.988 96) (194.541 767.815 96) (151.516 730.414 126)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0.75471 0.656059 0 -46.2065] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24555" + "plane" "(331 610.832 96) (271.375 559 96) (271.375 559 126)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0.75471 0.656059 0 -46.2065] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24554" + "plane" "(287.977 573.438 126) (151.52 730.418 126) (194.539 767.816 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0.75471 0.656059 0 -46.2065] 0.25" + "vaxis" "[0.656059 -0.75471 0 -48.6169] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 243 0" + "groupid" "19823" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19826" + side + { + "id" "24566" + "plane" "(48 716 126) (48 880 126) (152 880 126)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24565" + "plane" "(48 880 96) (48 716 96) (136 716 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24564" + "plane" "(48 716 96) (48 880 96) (48 880 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24563" + "plane" "(152 880 96) (152 730 96) (152 730 126)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 -160] 0.5" + "vaxis" "[0 0 -1 -273] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24562" + "plane" "(48 880 96) (152 880 96) (152 880 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24561" + "plane" "(136 716 96) (48 716 96) (48 716 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24560" + "plane" "(152 730 96) (136 716 96) (136 716 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 243 0" + "groupid" "19823" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19827" + side + { + "id" "24573" + "plane" "(48 384 126) (48 716 126) (136 716 126)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24572" + "plane" "(48 716 96) (48 384 96) (273 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24571" + "plane" "(48 384 96) (48 716 96) (48 716 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24570" + "plane" "(273 558 96) (273 384 96) (273 384 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24569" + "plane" "(273 384 96) (48 384 96) (48 384 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24568" + "plane" "(48 716 96) (136 716 96) (136 716 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24567" + "plane" "(136 716 96) (273 558 96) (273 558 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 243 0" + "groupid" "19823" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19828" + side + { + "id" "24579" + "plane" "(-288 496 126) (-288 880 126) (48 880 126)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24578" + "plane" "(-288 880 96) (-288 496 96) (48 496 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24577" + "plane" "(-288 496 96) (-288 880 96) (-288 880 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24576" + "plane" "(48 880 96) (48 496 96) (48 496 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24575" + "plane" "(-288 880 96) (48 880 96) (48 880 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24574" + "plane" "(48 496 96) (-288 496 96) (-288 496 126)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 243 0" + "groupid" "19823" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19829" + side + { + "id" "24585" + "plane" "(-258 56 126) (-258 384 126) (136 384 126)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24584" + "plane" "(-258 384 96) (-258 56 96) (136 56 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24583" + "plane" "(-258 56 96) (-258 384 96) (-258 384 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24582" + "plane" "(136 384 96) (136 56 96) (136 56 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24581" + "plane" "(-258 384 96) (136 384 96) (136 384 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24580" + "plane" "(136 56 96) (-258 56 96) (-258 56 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 243 0" + "groupid" "19823" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19830" + side + { + "id" "24591" + "plane" "(-79 496 126) (48 496 126) (48 384 126)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24590" + "plane" "(-79 384 96) (48 384 96) (48 496 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24589" + "plane" "(48 496 96) (48 384 96) (48 384 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24588" + "plane" "(48 384 96) (-79 384 96) (-79 384 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24587" + "plane" "(-79 496 96) (48 496 96) (48 496 126)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24586" + "plane" "(-79 384 96) (-79 496 96) (-79 496 126)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 243 0" + "groupid" "19823" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19831" + side + { + "id" "24597" + "plane" "(-159 384 126) (-288 384 126) (-288 496 126)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24596" + "plane" "(-159 496 96) (-288 496 96) (-288 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24595" + "plane" "(-288 384 96) (-288 496 96) (-288 496 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24594" + "plane" "(-159 384 96) (-288 384 96) (-288 384 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24593" + "plane" "(-288 496 96) (-159 496 96) (-159 496 126)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24592" + "plane" "(-159 496 96) (-159 384 96) (-159 384 126)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 243 0" + "groupid" "19823" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19832" + side + { + "id" "24603" + "plane" "(272 560 288) (272 384 288) (136 384 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24602" + "plane" "(136 384 96) (272 384 96) (272 560 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24601" + "plane" "(272 560 96) (272 384 96) (272 384 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24600" + "plane" "(272 384 96) (136 384 96) (136 384 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24599" + "plane" "(136 424 96) (272 560 96) (272 560 288)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREEN_LIGHT" + "uaxis" "[0 1 0 316] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24598" + "plane" "(136 384 96) (136 424 96) (136 424 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 243 0" + "groupid" "19823" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19833" + side + { + "id" "24609" + "plane" "(448 352 288) (272 352 288) (272 560 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24608" + "plane" "(448 560 96) (272 560 96) (272 352 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24607" + "plane" "(272 560 96) (448 560 96) (448 560 288)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREEN_LIGHT" + "uaxis" "[1 0 0 316] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24606" + "plane" "(272 352 96) (272 560 96) (272 560 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24605" + "plane" "(448 352 96) (272 352 96) (272 352 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24604" + "plane" "(448 560 96) (448 352 96) (448 352 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 243 0" + "groupid" "19823" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19834" + side + { + "id" "24615" + "plane" "(448 864 96) (152 864 96) (152 896 96)" + "material" "SOLUTION/CARPETTILEGRAY" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24614" + "plane" "(448 896 64) (152 896 64) (152 864 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24613" + "plane" "(152 864 64) (152 896 64) (152 896 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24612" + "plane" "(448 864 64) (152 864 64) (152 864 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24611" + "plane" "(152 896 64) (448 896 64) (448 896 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24610" + "plane" "(448 896 64) (448 864 64) (448 864 96)" + "material" "SOLUTION/CARPETTILEGRAY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 243 0" + "groupid" "19823" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19835" + side + { + "id" "24621" + "plane" "(224 544 96) (192 544 96) (192 864 96)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24620" + "plane" "(224 864 64) (192 864 64) (192 544 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24619" + "plane" "(192 544 64) (192 864 64) (192 864 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24618" + "plane" "(224 544 64) (192 544 64) (192 544 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24617" + "plane" "(192 864 64) (224 864 64) (224 864 96)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24616" + "plane" "(224 864 64) (224 544 64) (224 544 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 243 0" + "groupid" "19823" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19836" + side + { + "id" "24627" + "plane" "(448 910 96) (192 910 96) (192 1136 96)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 -652] 0.125" + "vaxis" "[0 -1 0 -567] 0.125" + "rotation" "0" + "lightmapscale" "32" + "smoothing_groups" "0" + } + side + { + "id" "24626" + "plane" "(448 1136 64) (192 1136 64) (192 910 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24625" + "plane" "(192 910 64) (192 1136 64) (192 1136 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24624" + "plane" "(192 1136 64) (448 1136 64) (448 1136 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24623" + "plane" "(448 910 64) (192 910 64) (192 910 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24622" + "plane" "(448 1136 64) (448 910 64) (448 910 96)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 243 0" + "groupid" "19823" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19845" + side + { + "id" "24662" + "plane" "(1024 192 256) (1024 336 256) (1072 336 256)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -21.3334] 0.75" + "vaxis" "[0 -1 0 21.3333] 2.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24661" + "plane" "(1024 336 192) (1024 192 192) (1072 192 192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -21.3334] 0.75" + "vaxis" "[0 -1 0 21.3333] 2.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24660" + "plane" "(1024 192 192) (1024 336 192) (1024 336 256)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -21.3333] 2.25" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24659" + "plane" "(1072 336 192) (1072 192 192) (1072 192 256)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -21.3333] 2.25" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24658" + "plane" "(1024 336 192) (1072 336 192) (1072 336 256)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -21.3334] 0.75" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24657" + "plane" "(1072 192 192) (1024 192 192) (1024 192 256)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -21.3334] 0.75" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "205 138 0" + "groupid" "19844" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19874" + side + { + "id" "24668" + "plane" "(1024 416 160) (1024 560 160) (1072 560 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -21.3334] 0.75" + "vaxis" "[0 -1 0 56.8889] 2.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24667" + "plane" "(1024 560 96) (1024 416 96) (1072 416 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -21.3334] 0.75" + "vaxis" "[0 -1 0 56.8889] 2.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24666" + "plane" "(1024 416 96) (1024 560 96) (1024 560 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -56.8889] 2.25" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24665" + "plane" "(1072 560 96) (1072 416 96) (1072 416 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -56.8889] 2.25" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24664" + "plane" "(1024 560 96) (1072 560 96) (1072 560 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -21.3334] 0.75" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24663" + "plane" "(1072 416 96) (1024 416 96) (1024 416 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -21.3334] 0.75" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "205 138 0" + "groupid" "19873" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19879" + side + { + "id" "24674" + "plane" "(768 720 160) (768 752 160) (816 752 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.75" + "vaxis" "[0 -1 0 14.2222] 2.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24673" + "plane" "(768 752 96) (768 720 96) (816 720 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.75" + "vaxis" "[0 -1 0 14.2222] 2.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24672" + "plane" "(768 720 96) (768 752 96) (768 752 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -14.2222] 2.25" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24671" + "plane" "(816 752 96) (816 720 96) (816 720 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -14.2222] 2.25" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24670" + "plane" "(768 752 96) (816 752 96) (816 752 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.75" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24669" + "plane" "(816 720 96) (768 720 96) (768 720 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.75" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "205 138 0" + "groupid" "19878" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19884" + side + { + "id" "24680" + "plane" "(480 720 160) (480 752 160) (496 752 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 21.3333] 0.75" + "vaxis" "[0 -1 0 14.2222] 2.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24679" + "plane" "(480 752 96) (480 720 96) (496 720 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 21.3333] 0.75" + "vaxis" "[0 -1 0 14.2222] 2.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24678" + "plane" "(480 720 96) (480 752 96) (480 752 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -14.2222] 2.25" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24677" + "plane" "(496 752 96) (496 720 96) (496 720 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -14.2222] 2.25" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24676" + "plane" "(480 752 96) (496 752 96) (496 752 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 21.3333] 0.75" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24675" + "plane" "(496 720 96) (480 720 96) (480 720 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 21.3333] 0.75" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "205 138 0" + "groupid" "19883" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19937" + side + { + "id" "24758" + "plane" "(1120 688 160) (1120 752 160) (1183.69 752 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.75" + "vaxis" "[0 -1 0 14.2222] 2.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24757" + "plane" "(1120 752 96) (1120 688 96) (1183.69 688 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.75" + "vaxis" "[0 -1 0 14.2222] 2.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24756" + "plane" "(1120 688 96) (1120 752 96) (1120 752 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -14.2222] 2.25" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24755" + "plane" "(1183.69 752 96) (1183.69 688 96) (1183.69 688 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -14.2222] 2.25" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24754" + "plane" "(1120 752 96) (1183.69 752 96) (1183.69 752 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.75" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24753" + "plane" "(1183.69 688 96) (1120 688 96) (1120 688 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.75" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "205 138 0" + "groupid" "19936" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19942" + side + { + "id" "24764" + "plane" "(576.172 432 160) (576.172 464 160) (608.175 464 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 37.7804] 0.75" + "vaxis" "[0 -1 0 -14.2223] 2.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24763" + "plane" "(576.172 464 96) (576.172 432 96) (608.175 432 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 37.7804] 0.75" + "vaxis" "[0 -1 0 -14.2223] 2.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24762" + "plane" "(576.17 432 96) (576.17 464 96) (576.17 464 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 14.2223] 2.25" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24761" + "plane" "(608.175 464 96) (608.175 432 96) (608.175 432 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 14.2223] 2.25" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24760" + "plane" "(576.172 464 96) (608.175 464 96) (608.176 464 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 37.7804] 0.75" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24759" + "plane" "(608.176 432 96) (576.172 432 96) (576.172 432 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 37.7804] 0.75" + "vaxis" "[0 0 -1 32] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "205 138 0" + "groupid" "19941" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20129" + side + { + "id" "24812" + "plane" "(1440 -992 416) (1440 -64 416) (1648 -64 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24811" + "plane" "(1440 -64 400) (1440 -992 400) (1648 -992 400)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24810" + "plane" "(1440 -992 400) (1440 -64 400) (1440 -64 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24809" + "plane" "(1648 -64 400) (1648 -992 400) (1648 -992 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24808" + "plane" "(1440 -64 400) (1648 -64 400) (1648 -64 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24807" + "plane" "(1648 -992 400) (1440 -992 400) (1440 -992 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 120 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20130" + side + { + "id" "24818" + "plane" "(1232 176 80) (1232 368 80) (1248 352 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24817" + "plane" "(1232 368 64) (1232 176 64) (1248 176 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -37.8775] 12.25" + "vaxis" "[0 -1 0 48] 7" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24816" + "plane" "(1232 176 64) (1232 368 64) (1232 368 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24815" + "plane" "(1248 352 64) (1248 176 64) (1248 176 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24814" + "plane" "(1232 368 64) (1248 352 64) (1248 352 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24813" + "plane" "(1248 176 64) (1232 176 64) (1232 176 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 210 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20131" + side + { + "id" "24824" + "plane" "(1248 176 80) (1248 352 80) (1312 352 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24823" + "plane" "(1248 352 64) (1248 176 64) (1312 176 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -39.1836] 12.25" + "vaxis" "[0 -1 0 48] 7" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24822" + "plane" "(1248 176 64) (1248 352 64) (1248 352 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24821" + "plane" "(1312 352 64) (1312 176 64) (1312 176 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24820" + "plane" "(1248 352 64) (1312 352 64) (1312 352 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24819" + "plane" "(1312 176 64) (1248 176 64) (1248 176 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 210 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20132" + side + { + "id" "24829" + "plane" "(1232 352 352) (1232 368 352) (1248 352 352)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24828" + "plane" "(1248 352 80) (1232 368 80) (1232 352 80)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24827" + "plane" "(1232 352 80) (1232 368 80) (1232 368 352)" + "material" "TERRI/TOOLS/TOOLS_HINT" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24826" + "plane" "(1232 368 80) (1248 352 80) (1248 352 352)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24825" + "plane" "(1248 352 80) (1232 352 80) (1232 352 352)" + "material" "TERRI/TOOLS/TOOLS_HINT" + "uaxis" "[-1 0 0 128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 156 241" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20133" + side + { + "id" "24835" + "plane" "(1600 512 352) (1328 512 352) (1312 528 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24834" + "plane" "(1616 528 192) (1312 528 192) (1328 512 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24833" + "plane" "(1600 512 192) (1328 512 192) (1328 512 352)" + "material" "PLASTER/PLASTERCEILING_INT_01" + "uaxis" "[-1 0 0 -320] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24832" + "plane" "(1312 528 192) (1616 528 192) (1616 528 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24831" + "plane" "(1328 512 192) (1312 528 192) (1312 528 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24830" + "plane" "(1616 528 192) (1600 512 192) (1600 512 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 142" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20134" + side + { + "id" "24841" + "plane" "(496 784 96) (448 784 96) (448 800 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 12] 0.16" + "vaxis" "[0 -1 0 25] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24840" + "plane" "(496 800 80) (448 800 80) (448 784 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24839" + "plane" "(448 784 80) (448 800 80) (448 800 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24838" + "plane" "(448 800 80) (496 800 80) (496 800 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24837" + "plane" "(496 784 80) (448 784 80) (448 784 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24836" + "plane" "(496 800 80) (496 784 80) (496 784 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 129 150" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20135" + side + { + "id" "24847" + "plane" "(640 784 96) (624 784 96) (624 800 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -56] 0.16" + "vaxis" "[0 -1 0 25] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24846" + "plane" "(640 800 80) (624 800 80) (624 784 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24845" + "plane" "(624 784 80) (624 800 80) (624 800 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24844" + "plane" "(624 800 80) (640 800 80) (640 800 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24843" + "plane" "(640 784 80) (624 784 80) (624 784 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24842" + "plane" "(640 800 80) (640 784 80) (640 784 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 129 150" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20136" + side + { + "id" "24853" + "plane" "(816 784 96) (768 784 96) (768 800 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -60] 0.16" + "vaxis" "[0 -1 0 25] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24852" + "plane" "(816 800 80) (768 800 80) (768 784 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24851" + "plane" "(768 784 80) (768 800 80) (768 800 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24850" + "plane" "(768 800 80) (816 800 80) (816 800 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24849" + "plane" "(816 784 80) (768 784 80) (768 784 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24848" + "plane" "(816 800 80) (816 784 80) (816 784 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 129 150" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20137" + side + { + "id" "24859" + "plane" "(960 784 96) (944 784 96) (944 800 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.16" + "vaxis" "[0 -1 0 25] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24858" + "plane" "(960 800 80) (944 800 80) (944 784 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24857" + "plane" "(944 784 80) (944 800 80) (944 800 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24856" + "plane" "(944 800 80) (960 800 80) (960 800 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24855" + "plane" "(960 784 80) (944 784 80) (944 784 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24854" + "plane" "(960 800 80) (960 784 80) (960 784 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 129 150" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20138" + side + { + "id" "24865" + "plane" "(1216 784 96) (1088 784 96) (1088 800 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -4] 0.16" + "vaxis" "[0 -1 0 25] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24864" + "plane" "(1216 800 80) (1088 800 80) (1088 784 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24863" + "plane" "(1088 784 80) (1088 800 80) (1088 800 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24862" + "plane" "(1088 800 80) (1216 800 80) (1216 800 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24861" + "plane" "(1216 784 80) (1088 784 80) (1088 784 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24860" + "plane" "(1216 800 80) (1216 784 80) (1216 784 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 129 150" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20139" + side + { + "id" "24871" + "plane" "(1456 -64 416) (1456 96 416) (1648 96 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24870" + "plane" "(1456 96 352) (1456 -64 400) (1648 -64 400)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 0.957826 -0.287348 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24869" + "plane" "(1456 96 416) (1456 -64 416) (1456 -64 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24868" + "plane" "(1648 96 352) (1648 -64 400) (1648 -64 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24867" + "plane" "(1456 96 352) (1648 96 352) (1648 96 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24866" + "plane" "(1648 -64 400) (1456 -64 400) (1456 -64 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 120 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20140" + side + { + "id" "24877" + "plane" "(768 176 96) (736 176 96) (736 384 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24876" + "plane" "(768 384 80) (736 384 80) (736 176 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24875" + "plane" "(736 384 80) (768 384 80) (768 384 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24874" + "plane" "(768 176 80) (736 176 80) (736 176 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24873" + "plane" "(768 384 80) (768 176 80) (768 176 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24872" + "plane" "(736 176 80) (736 384 80) (736 384 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 151 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20141" + side + { + "id" "24883" + "plane" "(768 176 192) (736 176 192) (736 336 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24882" + "plane" "(768 336 96) (736 336 96) (736 176 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24881" + "plane" "(736 336 96) (768 336 96) (768 336 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24880" + "plane" "(768 176 96) (736 176 96) (736 176 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24879" + "plane" "(768 336 96) (768 176 96) (768 176 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24878" + "plane" "(736 176 96) (736 336 96) (736 336 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 151 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20170" + side + { + "id" "24889" + "plane" "(1312 352 176) (1648 352 176) (1648 96 176)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24888" + "plane" "(1312 96 80) (1648 96 80) (1648 352 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24887" + "plane" "(1648 352 80) (1648 96 80) (1648 96 176)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24886" + "plane" "(1312 352 80) (1648 352 80) (1648 352 176)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24885" + "plane" "(1648 96 80) (1312 96 80) (1312 96 176)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24884" + "plane" "(1312 96 80) (1312 352 80) (1312 352 176)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20171" + side + { + "id" "24895" + "plane" "(736 176 368) (736 384 368) (768 384 368)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24894" + "plane" "(736 384 352) (736 176 352) (768 192 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24893" + "plane" "(736 176 352) (736 384 352) (736 384 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24892" + "plane" "(768 384 352) (768 192 352) (768 192 368)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24891" + "plane" "(736 384 352) (768 384 352) (768 384 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24890" + "plane" "(768 192 352) (736 176 352) (736 176 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 156 157" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20172" + side + { + "id" "24901" + "plane" "(768 448 368) (768 464 368) (1216 464 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24900" + "plane" "(768 464 352) (768 448 352) (1216 448 352)" + "material" "SOLUTION2/BRIGHTMATS/HOLES" + "uaxis" "[1 0 0 576] 0.25" + "vaxis" "[0 -1 0 255] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24899" + "plane" "(768 448 352) (768 464 352) (768 464 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24898" + "plane" "(1216 464 352) (1216 448 352) (1216 448 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24897" + "plane" "(768 464 352) (1216 464 352) (1216 464 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24896" + "plane" "(1216 448 352) (768 448 352) (768 448 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 156 157" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20173" + side + { + "id" "24906" + "plane" "(1160 504 144) (1080 424 144) (1032 472 96)" + "material" "TERRI/TOOLS/TOOLS_PLAYERCLIP" + "uaxis" "[-0.707105 -0.707104 0 204.803] 0.22097" + "vaxis" "[-0.707104 0.707105 0 426.657] 0.132582" + "rotation" "225" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24905" + "plane" "(1112 552 96) (1032 472 96) (1080 424 100)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24904" + "plane" "(1160 504 100) (1080 424 100) (1080 424 144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24903" + "plane" "(1160 504 144) (1112 552 96) (1160 504 100)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24902" + "plane" "(1080 424 100) (1032 472 96) (1080 424 144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 224 241" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20174" + side + { + "id" "24911" + "plane" "(1088 420 144) (1088 348 144) (1216 348 144)" + "material" "TERRI/TOOLS/TOOLS_PLAYERCLIP" + "uaxis" "[1 0 0 -152] 0.242424" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24910" + "plane" "(1088 348 192) (1088 348 144) (1088 420 144)" + "material" "TERRI/TOOLS/TOOLS_PLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24909" + "plane" "(1216 420 144) (1216 348 144) (1216 348 192)" + "material" "TERRI/TOOLS/TOOLS_PLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24908" + "plane" "(1216 348 192) (1216 348 144) (1088 348 144)" + "material" "TERRI/TOOLS/TOOLS_PLAYERCLIP" + "uaxis" "[1 0 0 -152] 0.242424" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24907" + "plane" "(1088 348 192) (1088 420 144) (1216 420 144)" + "material" "TERRI/TOOLS/TOOLS_PLAYERCLIP" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 426.667] 0.140625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 194 191" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20175" + side + { + "id" "24916" + "plane" "(448 304 96) (448 240 96) (640 240 96)" + "material" "TERRI/TOOLS/TOOLS_PLAYERCLIP" + "uaxis" "[-1 0 0 256] 0.25" + "vaxis" "[0 1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24915" + "plane" "(640 304 96) (640 240 96) (640 240 128)" + "material" "TERRI/TOOLS/TOOLS_PLAYERCLIP" + "uaxis" "[0 -1 0 128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24914" + "plane" "(448 240 128) (448 240 96) (448 304 96)" + "material" "TERRI/TOOLS/TOOLS_PLAYERCLIP" + "uaxis" "[0 -1 0 128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24913" + "plane" "(640 240 128) (640 240 96) (448 240 96)" + "material" "TERRI/TOOLS/TOOLS_PLAYERCLIP" + "uaxis" "[-1 0 0 256] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24912" + "plane" "(448 240 128) (448 304 96) (640 304 96)" + "material" "TERRI/TOOLS/TOOLS_PLAYERCLIP" + "uaxis" "[-1 0 0 350.46] 0.187" + "vaxis" "[0 1 0 -384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 242 115" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20176" + side + { + "id" "24922" + "plane" "(1232 368 352) (1232 528 352) (1312 528 352)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24921" + "plane" "(1232 528 80) (1232 368 80) (1312 368 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24920" + "plane" "(1232 368 80) (1232 528 80) (1232 528 352)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24919" + "plane" "(1312 528 80) (1312 368 80) (1312 368 352)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24918" + "plane" "(1232 528 80) (1312 528 80) (1312 528 352)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24917" + "plane" "(1312 368 80) (1232 368 80) (1232 368 352)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 210 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20177" + side + { + "id" "24928" + "plane" "(1248 352 352) (1232 368 352) (1312 368 352)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24927" + "plane" "(1232 368 80) (1248 352 80) (1312 352 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24926" + "plane" "(1248 352 80) (1232 368 80) (1232 368 352)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24925" + "plane" "(1312 368 80) (1312 352 80) (1312 352 352)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24924" + "plane" "(1232 368 80) (1312 368 80) (1312 368 352)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24923" + "plane" "(1312 352 80) (1248 352 80) (1248 352 352)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 210 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20178" + side + { + "id" "24934" + "plane" "(448 176 80) (448 784 80) (1232 784 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24933" + "plane" "(448 784 64) (448 176 64) (1232 176 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -36.5714] 12.25" + "vaxis" "[0 -1 0 48] 7" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24932" + "plane" "(448 176 64) (448 784 64) (448 784 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24931" + "plane" "(1232 784 64) (1232 176 64) (1232 176 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24930" + "plane" "(448 784 64) (1232 784 64) (1232 784 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24929" + "plane" "(1232 176 64) (448 176 64) (448 176 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 210 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20179" + side + { + "id" "24939" + "plane" "(1088 384 352) (640 384 352) (1088 784 352)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24938" + "plane" "(1088 784 96) (640 384 96) (1088 384 96)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24937" + "plane" "(1088 384 96) (640 384 96) (640 384 352)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24936" + "plane" "(640 384 96) (1088 784 96) (1088 784 352)" + "material" "TERRI/TOOLS/TOOLS_HINT" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24935" + "plane" "(1088 784 96) (1088 384 96) (1088 384 352)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 156 241" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20276" + side + { + "id" "24963" + "plane" "(736 96 352) (736 176 352) (1312 176 352)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24962" + "plane" "(736 176 64) (736 96 64) (1312 96 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -17.7778] 9" + "vaxis" "[0 -1 0 12.8] 1.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24961" + "plane" "(736 96 64) (736 176 64) (736 176 352)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24960" + "plane" "(1312 176 64) (1312 96 64) (1312 96 352)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24959" + "plane" "(736 176 64) (1312 176 64) (1312 176 352)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24958" + "plane" "(1312 96 64) (736 96 64) (736 96 352)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 140 129" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20277" + side + { + "id" "24969" + "plane" "(736 336 192) (736 176 192) (768 192 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24968" + "plane" "(736 176 352) (736 176 192) (736 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24967" + "plane" "(768 336 192) (768 192 192) (768 192 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 1 0 608] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24966" + "plane" "(768 192 352) (768 192 192) (736 176 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24965" + "plane" "(736 176 352) (736 336 352) (768 336 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24964" + "plane" "(736 336 352) (736 336 192) (768 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 226 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20278" + side + { + "id" "24975" + "plane" "(736 80 96) (640 80 96) (640 384 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24974" + "plane" "(736 384 80) (640 384 80) (640 80 80)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24973" + "plane" "(640 384 80) (736 384 80) (736 384 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24972" + "plane" "(736 80 80) (640 80 80) (640 80 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24971" + "plane" "(736 384 80) (736 80 80) (736 80 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24970" + "plane" "(640 80 80) (640 384 80) (640 384 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 151 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20279" + side + { + "id" "24981" + "plane" "(768 320 352) (768 336 352) (1024 336 352)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24980" + "plane" "(768 336 192) (768 320 192) (1024 320 192)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24979" + "plane" "(768 320 192) (768 336 192) (768 336 352)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24978" + "plane" "(1024 336 192) (1024 320 192) (1024 320 352)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24977" + "plane" "(768 336 192) (1024 336 192) (1024 336 352)" + "material" "TERRI/TOOLS/TOOLS_HINT" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24976" + "plane" "(1024 320 192) (768 320 192) (768 320 352)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 104 241" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20280" + side + { + "id" "24987" + "plane" "(656 80 400) (640 80 400) (640 288 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24986" + "plane" "(656 288 352) (640 288 352) (640 80 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24985" + "plane" "(640 288 352) (656 288 352) (656 288 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24984" + "plane" "(656 80 352) (640 80 352) (640 80 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24983" + "plane" "(656 288 352) (656 80 352) (656 80 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24982" + "plane" "(640 80 352) (640 288 352) (640 288 400)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 -1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 151 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20340" + side + { + "id" "24993" + "plane" "(640 -160 416) (448 -160 416) (448 384 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24992" + "plane" "(448 -160 400) (448 384 400) (448 384 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24991" + "plane" "(640 384 400) (448 384 400) (448 -160 400)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 -944] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24990" + "plane" "(640 384 416) (448 384 416) (448 384 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24989" + "plane" "(640 -160 400) (448 -160 400) (448 -160 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24988" + "plane" "(640 384 400) (640 -160 400) (640 -160 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 36] 0.125" + "vaxis" "[0 0 -1 41] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 244 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20344" + side + { + "id" "25017" + "plane" "(768 384 368) (448 384 368) (448 464 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25016" + "plane" "(448 384 352) (448 464 352) (448 464 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25015" + "plane" "(768 464 352) (448 464 352) (448 384 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25014" + "plane" "(768 464 368) (448 464 368) (448 464 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25013" + "plane" "(768 384 352) (448 384 352) (448 384 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25012" + "plane" "(768 464 352) (768 384 352) (768 384 368)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 244 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20345" + side + { + "id" "25023" + "plane" "(656 -256 128) (656 -160 128) (800 -160 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 320] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25022" + "plane" "(656 -160 96) (656 -256 96) (800 -256 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25021" + "plane" "(656 -256 96) (656 -160 96) (656 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25020" + "plane" "(800 -160 96) (800 -256 96) (800 -256 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25019" + "plane" "(656 -160 96) (800 -160 96) (800 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25018" + "plane" "(800 -256 96) (656 -256 96) (656 -256 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 155 232" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20346" + side + { + "id" "25029" + "plane" "(656 -256 388) (344 -256 388) (344 -240 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25028" + "plane" "(640 -240 128) (344 -240 128) (344 -256 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25027" + "plane" "(344 -256 128) (344 -240 128) (344 -240 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25026" + "plane" "(344 -240 128) (640 -240 128) (640 -240 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25025" + "plane" "(656 -256 128) (344 -256 128) (344 -256 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25024" + "plane" "(640 -240 128) (656 -256 128) (656 -256 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 151 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20347" + side + { + "id" "25035" + "plane" "(736 384 96) (736 336 96) (768 336 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25034" + "plane" "(736 336 352) (736 336 96) (736 384 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25033" + "plane" "(768 384 96) (768 336 96) (768 336 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25032" + "plane" "(768 336 352) (768 336 96) (736 336 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25031" + "plane" "(736 336 352) (736 384 352) (768 384 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25030" + "plane" "(736 384 352) (736 384 96) (768 384 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 226 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20410" + side + { + "id" "25041" + "plane" "(796 -864 448) (796 -864 432) (1024 -864 432)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25040" + "plane" "(796 -864 432) (796 -864 448) (796 -1056 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25039" + "plane" "(1024 -864 448) (1024 -864 432) (1024 -1056 432)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -60] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25038" + "plane" "(796 -1056 448) (796 -864 448) (1024 -864 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25037" + "plane" "(1024 -1056 448) (1024 -1056 432) (796 -1056 432)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25036" + "plane" "(1024 -864 432) (796 -864 432) (796 -1056 432)" + "material" "DEV/REFLECTIVITY_40" + "uaxis" "[1 0 0 452] 0.125" + "vaxis" "[0 -1 0 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 132 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20411" + side + { + "id" "25047" + "plane" "(1424 -864 184) (1424 -832 184) (1440 -832 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25046" + "plane" "(1424 -832 92) (1424 -864 92) (1440 -864 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25045" + "plane" "(1424 -864 92) (1424 -832 92) (1424 -832 184)" + "material" "SOLUTION2/OVERLAYS/BLUEWALL" + "uaxis" "[0 1 0 960] 0.25" + "vaxis" "[0 0 -1 368] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25044" + "plane" "(1440 -832 92) (1440 -864 92) (1440 -864 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25043" + "plane" "(1424 -832 92) (1440 -832 92) (1440 -832 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25042" + "plane" "(1440 -864 92) (1424 -864 92) (1424 -864 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 238 207" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20412" + side + { + "id" "25053" + "plane" "(1424 -864 390) (1424 -832 390) (1440 -832 390)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25052" + "plane" "(1424 -832 184) (1424 -864 184) (1440 -864 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25051" + "plane" "(1424 -864 184) (1424 -832 184) (1424 -832 390)" + "material" "SOLUTION2/OVERLAYS/BLUEWALL" + "uaxis" "[0 1 0 832] 0.25" + "vaxis" "[0 0 -1 420.444] 0.27" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25050" + "plane" "(1440 -832 184) (1440 -864 184) (1440 -864 390)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25049" + "plane" "(1424 -832 184) (1440 -832 184) (1440 -832 390)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25048" + "plane" "(1440 -864 184) (1424 -864 184) (1424 -864 390)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 238 207" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20413" + side + { + "id" "25059" + "plane" "(1168 -864 304) (1168 -864 92) (1424 -864 92)" + "material" "SOLUTION2/OVERLAYS/BLUEWALL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 368] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25058" + "plane" "(1168 -864 92) (1168 -864 304) (1168 -880 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25057" + "plane" "(1424 -864 304) (1424 -864 92) (1424 -880 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25056" + "plane" "(1168 -880 304) (1168 -864 304) (1424 -864 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25055" + "plane" "(1424 -880 304) (1424 -880 92) (1168 -880 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25054" + "plane" "(1424 -864 92) (1168 -864 92) (1168 -880 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 132 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20430" + side + { + "id" "25161" + "plane" "(1248 -216 142) (1248 -216 126) (1248 -16 126)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_001_DARKGREY" + "uaxis" "[0 1 0 -444] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25160" + "plane" "(1248 -16 142) (1248 -16 126) (1280 -16 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25159" + "plane" "(1280 -16 126) (1248 -16 126) (1248 -216 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25158" + "plane" "(1280 -16 142) (1280 -16 126) (1280 -216 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25157" + "plane" "(1280 -216 142) (1280 -216 126) (1248 -216 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25156" + "plane" "(1248 -216 142) (1248 -16 142) (1280 -16 142)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 124 161" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20431" + side + { + "id" "25167" + "plane" "(784 -160 128) (656 -160 128) (656 64 128)" + "material" "FLOORS/HR_C/HR_FLOOR_TILE_001" + "uaxis" "[1 0 0 -640] 0.125" + "vaxis" "[0 -1 0 512] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25166" + "plane" "(656 -160 96) (784 -160 96) (784 64 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25165" + "plane" "(784 -160 96) (656 -160 96) (656 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25164" + "plane" "(784 64 96) (784 -160 96) (784 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 55] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25163" + "plane" "(656 64 96) (784 64 96) (784 64 128)" + "material" "FLOORS/HR_C/HR_FLOOR_TILE_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25162" + "plane" "(656 -160 96) (656 64 96) (656 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 217" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20432" + side + { + "id" "25173" + "plane" "(448 -160 128) (448 240 128) (640 240 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25172" + "plane" "(640 240 96) (448 240 96) (448 -160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25171" + "plane" "(448 -160 96) (448 240 96) (448 240 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25170" + "plane" "(448 240 96) (640 240 96) (640 240 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[1 0 0 224] 0.16" + "vaxis" "[0 0 -1 800] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25169" + "plane" "(640 240 96) (640 -160 96) (640 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25168" + "plane" "(640 -160 96) (448 -160 96) (448 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 217" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20433" + side + { + "id" "25179" + "plane" "(817 336 186.71) (817 369 186.71) (1024 369 186.71)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25178" + "plane" "(817 369 95.7105) (817 336 95.7105) (1024 336 95.7105)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25177" + "plane" "(817 336 95.7107) (817 369 95.7107) (817 369 186.711)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25176" + "plane" "(1024 369 95.7107) (1024 336 95.7107) (1024 336 186.711)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25175" + "plane" "(817 369 95.7107) (1024 369 95.7107) (1024 369 186.711)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25174" + "plane" "(1024 336 95.7107) (817 336 95.7107) (817 336 186.711)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 130 127" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20434" + side + { + "id" "25185" + "plane" "(784 64 128) (800 64 128) (800 -160 128)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001" + "uaxis" "[0 1 0 91] 0.125" + "vaxis" "[1 0 0 -87] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25184" + "plane" "(784 -160 96) (800 -160 96) (800 64 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25183" + "plane" "(800 64 96) (800 -160 96) (800 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25182" + "plane" "(784 64 96) (800 64 96) (800 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25181" + "plane" "(800 -160 96) (784 -160 96) (784 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25180" + "plane" "(784 -160 96) (784 64 96) (784 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 55] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 217" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20436" + side + { + "id" "25197" + "plane" "(1328 352 176) (1328 336 176) (1600 336 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25196" + "plane" "(1328 336 192) (1328 336 176) (1328 352 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25195" + "plane" "(1600 352 176) (1600 336 176) (1600 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25194" + "plane" "(1600 336 192) (1600 336 176) (1328 336 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25193" + "plane" "(1328 336 192) (1328 352 192) (1600 352 192)" + "material" "GLASS/HR_G/HR_GLASS_WINDOW_FRAME_001" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 -1 0 -30] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25192" + "plane" "(1328 352 192) (1328 352 176) (1600 352 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20437" + side + { + "id" "25203" + "plane" "(1328 352 64) (1600 352 64) (1600 512 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25202" + "plane" "(1328 512 64) (1328 512 192) (1328 352 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25201" + "plane" "(1600 512 64) (1600 352 64) (1600 352 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25200" + "plane" "(1328 512 64) (1600 512 64) (1600 512 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25199" + "plane" "(1328 512 192) (1600 512 192) (1600 352 192)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25198" + "plane" "(1600 352 64) (1328 352 64) (1328 352 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20438" + side + { + "id" "25209" + "plane" "(1312 352 352) (1312 528 352) (1328 512 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25208" + "plane" "(1312 528 192) (1312 352 192) (1328 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25207" + "plane" "(1312 352 192) (1312 528 192) (1312 528 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25206" + "plane" "(1328 512 192) (1328 336 192) (1328 336 352)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 -1 0 -629.019] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25205" + "plane" "(1312 528 192) (1328 512 192) (1328 512 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25204" + "plane" "(1328 336 192) (1312 352 192) (1312 352 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 241 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20439" + side + { + "id" "25215" + "plane" "(1600 352 352) (1600 512 352) (1616 528 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25214" + "plane" "(1600 512 192) (1600 352 192) (1616 352 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25213" + "plane" "(1600 352 192) (1600 512 192) (1600 512 352)" + "material" "PLASTER/PLASTERCEILING_INT_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25212" + "plane" "(1616 528 192) (1616 352 192) (1616 352 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25211" + "plane" "(1600 512 192) (1616 528 192) (1616 528 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25210" + "plane" "(1616 352 192) (1600 352 192) (1600 352 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 142" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20440" + side + { + "id" "25221" + "plane" "(1680 352 352) (1680 336 352) (1600 336 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25220" + "plane" "(1680 352 192) (1680 336 192) (1680 336 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25219" + "plane" "(1600 336 352) (1680 336 352) (1680 336 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 -160] 0.5" + "vaxis" "[0 0 -1 -273] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25218" + "plane" "(1600 352 192) (1600 336 192) (1680 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25217" + "plane" "(1600 352 352) (1600 336 352) (1600 336 192)" + "material" "GLASS/HR_G/HR_GLASS_WINDOW_FRAME_001" + "uaxis" "[0 0 -1 28] 0.25" + "vaxis" "[0 -1 0 98] 0.25" + "rotation" "270" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25216" + "plane" "(1600 352 192) (1680 352 192) (1680 352 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20441" + side + { + "id" "25228" + "plane" "(1440 -142 221) (1440 -89 221) (1474 -89 221)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25227" + "plane" "(1440 -89 192.125) (1440 -142 192.125) (1492 -142 192.125)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25226" + "plane" "(1440 -142 192.125) (1440 -89 192.125) (1440 -89 221)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25225" + "plane" "(1492 -105 192.125) (1492 -142 192.125) (1492 -142 221)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25224" + "plane" "(1440 -89 192.125) (1474 -89 192.125) (1474 -89 221)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25223" + "plane" "(1492 -142 192.125) (1440 -142 192.125) (1440 -142 221)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25222" + "plane" "(1474 -89 192.125) (1492 -105 192.125) (1492 -105 221)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 106 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20442" + side + { + "id" "25234" + "plane" "(815 432 135) (815 502 135) (944 502 135)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25233" + "plane" "(815 502 95.75) (815 432 95.75) (944 432 95.75)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25232" + "plane" "(815 432 95.75) (815 502 95.75) (815 502 135)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25231" + "plane" "(944 502 95.75) (944 432 95.75) (944 432 135)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25230" + "plane" "(815 502 95.75) (944 502 95.75) (944 502 135)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25229" + "plane" "(944 432 95.75) (815 432 95.75) (815 432 135)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 253 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20445" + side + { + "id" "25252" + "plane" "(1648 194 192) (1648 258 192) (1656 258 192)" + "material" "SOLUTION/CARPETTILEGRAY" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25251" + "plane" "(1648 258 64) (1648 194 64) (1656 194 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25250" + "plane" "(1648 194 64) (1648 258 64) (1648 258 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25249" + "plane" "(1656 258 64) (1656 194 64) (1656 194 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25248" + "plane" "(1648 258 64) (1656 258 64) (1656 258 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25247" + "plane" "(1656 194 64) (1648 194 64) (1648 194 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 154 239" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20446" + side + { + "id" "25258" + "plane" "(1648 39 192) (1648 103 192) (1656 103 192)" + "material" "SOLUTION/CARPETTILEGRAY" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25257" + "plane" "(1648 103 64) (1648 39 64) (1656 39 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25256" + "plane" "(1648 39 64) (1648 103 64) (1648 103 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25255" + "plane" "(1656 103 64) (1656 39 64) (1656 39 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25254" + "plane" "(1648 103 64) (1656 103 64) (1656 103 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25253" + "plane" "(1656 39 64) (1648 39 64) (1648 39 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 176 253" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20447" + side + { + "id" "25264" + "plane" "(512 128 126) (512 144 126) (528 144 126)" + "material" "FLOORS/HR_C/HR_FLOOR_TILE_001" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 -1 0 -544] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25263" + "plane" "(512 144 96) (512 128 96) (528 128 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25262" + "plane" "(512 128 96) (512 144 96) (512 144 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25261" + "plane" "(528 144 96) (528 128 96) (528 128 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25260" + "plane" "(512 144 96) (528 144 96) (528 144 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25259" + "plane" "(528 128 96) (512 128 96) (512 128 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 238 203" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20448" + side + { + "id" "25270" + "plane" "(1648 103 352) (1648 194 352) (1680 194 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25269" + "plane" "(1648 194 192) (1648 194 352) (1648 103 352)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREEN_LIGHT" + "uaxis" "[0 1 0 316] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25268" + "plane" "(1680 103 192) (1680 103 352) (1680 194 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25267" + "plane" "(1648 103 192) (1648 103 352) (1680 103 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25266" + "plane" "(1680 194 192) (1680 194 352) (1648 194 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25265" + "plane" "(1648 194 192) (1648 103 192) (1680 103 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20449" + side + { + "id" "25276" + "plane" "(1648 258 352) (1648 336 352) (1680 336 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25275" + "plane" "(1648 336 192) (1648 336 352) (1648 258 352)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREEN_LIGHT" + "uaxis" "[0 1 0 316] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25274" + "plane" "(1680 258 192) (1680 258 352) (1680 336 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25273" + "plane" "(1680 336 192) (1680 336 352) (1648 336 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25272" + "plane" "(1648 258 192) (1648 258 352) (1680 258 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25271" + "plane" "(1648 336 192) (1648 258 192) (1680 258 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20450" + side + { + "id" "25282" + "plane" "(1648 -64 400) (1648 39 400) (1680 39 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25281" + "plane" "(1648 39 192) (1648 39 400) (1648 -64 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREEN_LIGHT" + "uaxis" "[0 1 0 316] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25280" + "plane" "(1680 -64 192) (1680 -64 400) (1680 39 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25279" + "plane" "(1648 -64 192) (1648 -64 400) (1680 -64 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREEN_LIGHT" + "uaxis" "[-1 0 0 187.998] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25278" + "plane" "(1680 39 192) (1680 39 400) (1648 39 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25277" + "plane" "(1648 39 192) (1648 -64 192) (1680 -64 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20451" + side + { + "id" "25288" + "plane" "(1648 194 352) (1648 258 352) (1680 258 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25287" + "plane" "(1648 258 305) (1648 258 352) (1648 194 352)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREEN_LIGHT" + "uaxis" "[0 1 0 316] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25286" + "plane" "(1680 194 305) (1680 194 352) (1680 258 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25285" + "plane" "(1648 194 305) (1648 194 352) (1680 194 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25284" + "plane" "(1680 258 305) (1680 258 352) (1648 258 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25283" + "plane" "(1648 258 305) (1648 194 305) (1680 194 305)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20452" + side + { + "id" "25294" + "plane" "(1656 258 192) (1656 194 192) (1680 194 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25293" + "plane" "(1656 194 305) (1656 194 192) (1656 258 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25292" + "plane" "(1680 258 305) (1680 258 192) (1680 194 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25291" + "plane" "(1680 194 305) (1680 194 192) (1656 194 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25290" + "plane" "(1656 258 305) (1656 258 192) (1680 258 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25289" + "plane" "(1656 194 305) (1656 258 305) (1680 258 305)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20453" + side + { + "id" "25300" + "plane" "(1648 39 368) (1648 103 368) (1680 103 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25299" + "plane" "(1648 103 305) (1648 103 368) (1648 39 368)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREEN_LIGHT" + "uaxis" "[0 1 0 316] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25298" + "plane" "(1680 39 305) (1680 39 368) (1680 103 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25297" + "plane" "(1648 39 305) (1648 39 368) (1680 39 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25296" + "plane" "(1680 103 305) (1680 103 368) (1648 103 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25295" + "plane" "(1648 103 305) (1648 39 305) (1680 39 305)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20454" + side + { + "id" "25306" + "plane" "(1656 103 192) (1656 39 192) (1680 39 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25305" + "plane" "(1656 39 305) (1656 39 192) (1656 103 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25304" + "plane" "(1680 103 305) (1680 103 192) (1680 39 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25303" + "plane" "(1680 39 305) (1680 39 192) (1656 39 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25302" + "plane" "(1656 103 305) (1656 103 192) (1680 103 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25301" + "plane" "(1656 39 305) (1656 103 305) (1680 103 305)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20455" + side + { + "id" "25312" + "plane" "(1504 128 256) (1504 160 256) (1536 160 256)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25311" + "plane" "(1504 160 192) (1504 128 192) (1536 128 192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25310" + "plane" "(1504 128 192) (1504 160 192) (1504 160 256)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25309" + "plane" "(1536 160 192) (1536 128 192) (1536 128 256)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25308" + "plane" "(1504 160 192) (1536 160 192) (1536 160 256)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25307" + "plane" "(1536 128 192) (1504 128 192) (1504 128 256)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 187" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20456" + side + { + "id" "25318" + "plane" "(1232 64 432) (1232 96 432) (1456 96 432)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25317" + "plane" "(1232 96 64) (1232 64 64) (1440 64 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -32] 3.5" + "vaxis" "[0 -1 0 0] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25316" + "plane" "(1232 64 64) (1232 96 64) (1232 96 432)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25315" + "plane" "(1456 96 64) (1440 64 64) (1440 64 432)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25314" + "plane" "(1232 96 64) (1456 96 64) (1456 96 432)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25313" + "plane" "(1440 64 64) (1232 64 64) (1232 64 432)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[1 0 0 -672] 0.25" + "vaxis" "[0 0 -1 448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 220 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20457" + side + { + "id" "25324" + "plane" "(656 64 432) (640 80 432) (720 80 432)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25323" + "plane" "(640 80 128) (656 64 128) (720 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25322" + "plane" "(656 64 128) (640 80 128) (640 80 432)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25321" + "plane" "(720 80 128) (720 64 128) (720 64 432)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25320" + "plane" "(640 80 128) (720 80 128) (720 80 432)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25319" + "plane" "(720 64 128) (656 64 128) (656 64 432)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 151 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20458" + side + { + "id" "25330" + "plane" "(720 60 328) (720 64 328) (1232 64 328)" + "material" "SOLUTION2/BRIGHTMATS/TRIMS" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25329" + "plane" "(720 64 326) (720 60 326) (1232 60 326)" + "material" "SOLUTION2/BRIGHTMATS/TRIMS" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 -110] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25328" + "plane" "(720 60 326) (720 64 326) (720 64 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25327" + "plane" "(1232 64 326) (1232 60 326) (1232 60 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25326" + "plane" "(720 64 326) (1232 64 326) (1232 64 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25325" + "plane" "(1232 60 326) (720 60 326) (720 60 328)" + "material" "SOLUTION2/BRIGHTMATS/TRIMS" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 141 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20459" + side + { + "id" "25336" + "plane" "(640 48 128) (656 48 128) (656 -144 128)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001" + "uaxis" "[0 1 0 91] 0.125" + "vaxis" "[1 0 0 41] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25335" + "plane" "(640 -144 96) (656 -144 96) (656 48 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25334" + "plane" "(656 48 96) (656 -144 96) (656 -144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25333" + "plane" "(640 48 96) (656 48 96) (656 48 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25332" + "plane" "(656 -144 96) (640 -144 96) (640 -144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25331" + "plane" "(640 -144 96) (640 48 96) (640 48 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 55] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 217" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20460" + side + { + "id" "25342" + "plane" "(640 80 390) (656 64 390) (656 48 390)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25341" + "plane" "(656 64 128) (640 80 128) (640 48 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25340" + "plane" "(640 80 128) (656 64 128) (656 64 390)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25339" + "plane" "(656 48 128) (640 48 128) (640 48 390)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25338" + "plane" "(656 64 128) (656 48 128) (656 48 390)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 -1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25337" + "plane" "(640 48 128) (640 80 128) (640 80 390)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 -1 0 896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 151 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20461" + side + { + "id" "25348" + "plane" "(656 -256 390) (640 -240 390) (640 -144 390)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25347" + "plane" "(656 -144 128) (640 -144 128) (640 -240 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25346" + "plane" "(640 -144 128) (656 -144 128) (656 -144 390)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25345" + "plane" "(656 -256 128) (640 -240 128) (640 -240 390)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25344" + "plane" "(656 -144 128) (656 -256 128) (656 -256 390)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 -1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25343" + "plane" "(640 -240 128) (640 -144 128) (640 -144 390)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 -1 0 64] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 151 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20462" + side + { + "id" "25354" + "plane" "(736 80 352) (640 80 352) (640 384 352)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25353" + "plane" "(736 384 96) (640 384 96) (640 80 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25352" + "plane" "(640 384 96) (736 384 96) (736 384 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25351" + "plane" "(736 80 96) (640 80 96) (640 80 352)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25350" + "plane" "(736 384 96) (736 80 96) (736 80 352)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25349" + "plane" "(640 80 96) (640 384 96) (640 384 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 -1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 151 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20463" + side + { + "id" "25359" + "plane" "(1024 -1056 448) (800 -1056 448) (1024 -864 448)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25358" + "plane" "(1024 -864 92) (800 -1056 92) (1024 -1056 92)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25357" + "plane" "(1024 -1056 92) (800 -1056 92) (800 -1056 448)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25356" + "plane" "(800 -1056 92) (1024 -864 92) (1024 -864 448)" + "material" "TERRI/TOOLS/TOOLS_HINT" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25355" + "plane" "(1024 -864 92) (1024 -1056 92) (1024 -1056 448)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 148 253" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20486" + side + { + "id" "25365" + "plane" "(848 72 320) (720 72 320) (720 80 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25364" + "plane" "(848 80 128) (720 80 128) (720 72 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25363" + "plane" "(848 72 128) (720 72 128) (720 72 320)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[-1 0 0 -96] 0.5" + "vaxis" "[0 0 -1 170.667] 0.75" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25362" + "plane" "(720 80 128) (848 80 128) (848 80 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25361" + "plane" "(720 72 128) (720 80 128) (720 80 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25360" + "plane" "(848 80 128) (848 72 128) (848 72 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "227 232 0" + "groupid" "20485" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20487" + side + { + "id" "25371" + "plane" "(1104 72 320) (976 72 320) (976 80 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25370" + "plane" "(1104 80 128) (976 80 128) (976 72 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25369" + "plane" "(1104 72 128) (976 72 128) (976 72 320)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[-1 0 0 -96] 0.5" + "vaxis" "[0 0 -1 170.667] 0.75" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25368" + "plane" "(976 80 128) (1104 80 128) (1104 80 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25367" + "plane" "(976 72 128) (976 80 128) (976 80 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25366" + "plane" "(1104 80 128) (1104 72 128) (1104 72 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "227 232 0" + "groupid" "20485" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20488" + side + { + "id" "25377" + "plane" "(976 72 320) (848 72 320) (848 80 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25376" + "plane" "(976 80 128) (848 80 128) (848 72 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25375" + "plane" "(976 72 128) (848 72 128) (848 72 320)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[-1 0 0 -96] 0.5" + "vaxis" "[0 0 -1 170.667] 0.75" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25374" + "plane" "(848 80 128) (976 80 128) (976 80 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25373" + "plane" "(848 72 128) (848 80 128) (848 80 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25372" + "plane" "(976 80 128) (976 72 128) (976 72 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "227 232 0" + "groupid" "20485" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20489" + side + { + "id" "25383" + "plane" "(1232 72 320) (1104 72 320) (1104 80 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25382" + "plane" "(1232 80 128) (1104 80 128) (1104 72 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25381" + "plane" "(1232 72 128) (1104 72 128) (1104 72 320)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[-1 0 0 -96] 0.5" + "vaxis" "[0 0 -1 170.667] 0.75" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25380" + "plane" "(1104 80 128) (1232 80 128) (1232 80 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25379" + "plane" "(1104 72 128) (1104 80 128) (1104 80 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25378" + "plane" "(1232 80 128) (1232 72 128) (1232 72 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "227 232 0" + "groupid" "20485" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20523" + side + { + "id" "25389" + "plane" "(720 64 128) (720 80 128) (1232 80 128)" + "material" "SOLUTION2/BRIGHTMATS/TRIMS" + "uaxis" "[-1 0 0 0] 0.15" + "vaxis" "[0 1 0 -94] 0.15" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25388" + "plane" "(720 80 64) (720 64 64) (1232 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25387" + "plane" "(720 64 64) (720 80 64) (720 80 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25386" + "plane" "(1232 80 64) (1232 64 64) (1232 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25385" + "plane" "(720 80 64) (1232 80 64) (1232 80 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25384" + "plane" "(1232 64 64) (720 64 64) (720 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 236 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20591" + side + { + "id" "25395" + "plane" "(720 64 432) (720 80 432) (1232 80 432)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25394" + "plane" "(720 80 326) (720 64 326) (1232 64 326)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25393" + "plane" "(720 64 326) (720 80 326) (720 80 432)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25392" + "plane" "(1232 80 326) (1232 64 326) (1232 64 432)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25391" + "plane" "(720 80 326) (1232 80 326) (1232 80 432)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25390" + "plane" "(1232 64 326) (720 64 326) (720 64 432)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 220 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20592" + side + { + "id" "25401" + "plane" "(1424 -64 432) (1424 -48 432) (1440 -48 432)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25400" + "plane" "(1424 -48 92) (1424 -64 92) (1440 -64 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25399" + "plane" "(1424 -64 92) (1424 -48 92) (1424 -48 432)" + "material" "SOLUTION2/BRIGHTMATS/TRIMS" + "uaxis" "[0 0 1 -170.667] 0.15" + "vaxis" "[0 -1 0 -170.667] 0.15" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25398" + "plane" "(1440 -48 92) (1440 -64 92) (1440 -64 432)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25397" + "plane" "(1424 -48 92) (1440 -48 92) (1440 -48 432)" + "material" "SOLUTION2/BRIGHTMATS/TRIMS" + "uaxis" "[0 0 1 -170.667] 0.15" + "vaxis" "[-1 0 0 170.666] 0.15" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25396" + "plane" "(1440 -64 92) (1424 -64 92) (1424 -64 432)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 107 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20593" + side + { + "id" "25407" + "plane" "(1440 -64 432) (1440 64 432) (1456 96 432)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25406" + "plane" "(1440 64 64) (1440 -64 64) (1456 -64 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 42.6667] 2.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25405" + "plane" "(1440 -64 64) (1440 64 64) (1440 64 432)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25404" + "plane" "(1456 96 64) (1456 -64 64) (1456 -64 432)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25403" + "plane" "(1440 64 64) (1456 96 64) (1456 96 432)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25402" + "plane" "(1456 -64 64) (1440 -64 64) (1440 -64 432)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[1 0 0 -672] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 107 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20594" + side + { + "id" "25413" + "plane" "(656 -64 448) (656 64 448) (1440 64 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25412" + "plane" "(656 64 432) (656 -64 432) (1440 -64 432)" + "material" "SOLUTION2/BRIGHTMATS/HOLES" + "uaxis" "[-1 0 0 576] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25411" + "plane" "(656 -64 432) (656 64 432) (656 64 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25410" + "plane" "(1440 64 432) (1440 -64 432) (1440 -64 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25409" + "plane" "(656 64 432) (1440 64 432) (1440 64 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25408" + "plane" "(1440 -64 432) (656 -64 432) (656 -64 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 107 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20599" + side + { + "id" "25437" + "plane" "(1424 -864 448) (1424 -64 448) (1440 -64 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25436" + "plane" "(1424 -64 390) (1424 -864 390) (1440 -864 390)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25435" + "plane" "(1424 -864 390) (1424 -64 390) (1424 -64 448)" + "material" "SOLUTION2/BRIGHTMATS/HOLES" + "uaxis" "[0 -1 0 128] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25434" + "plane" "(1440 -64 390) (1440 -864 390) (1440 -864 448)" + "material" "SOLUTION2/BRIGHTMATS/HOLES" + "uaxis" "[0 -1 0 128] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25433" + "plane" "(1424 -64 390) (1440 -64 390) (1440 -64 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25432" + "plane" "(1440 -864 390) (1424 -864 390) (1424 -864 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 238 207" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20600" + side + { + "id" "25443" + "plane" "(1664 -64 192) (1680 -64 192) (1680 -928 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_002_COLOR" + "uaxis" "[0 1 0 608] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25442" + "plane" "(1664 -928 64) (1680 -928 64) (1680 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25441" + "plane" "(1680 -64 64) (1680 -928 64) (1680 -928 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25440" + "plane" "(1664 -64 64) (1680 -64 64) (1680 -64 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25439" + "plane" "(1680 -928 64) (1664 -928 64) (1664 -928 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25438" + "plane" "(1664 -928 64) (1664 -64 64) (1664 -64 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 178 115" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20601" + side + { + "id" "25449" + "plane" "(1024 -1056 96) (1024 -880 96) (1040 -880 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25448" + "plane" "(1024 -880 92) (1024 -1056 92) (1040 -1056 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25447" + "plane" "(1024 -1056 92) (1024 -880 92) (1024 -880 96)" + "material" "DEV/REFLECTIVITY_40" + "uaxis" "[0 0 1 -444] 0.125" + "vaxis" "[0 -1 0 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25446" + "plane" "(1040 -880 92) (1040 -1056 92) (1040 -1056 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25445" + "plane" "(1024 -880 92) (1040 -880 92) (1040 -880 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25444" + "plane" "(1040 -1056 92) (1024 -1056 92) (1024 -1056 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 116 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20602" + side + { + "id" "25455" + "plane" "(1024 -624 92) (1024 -624 64) (1440 -624 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -60.0034] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25454" + "plane" "(1024 -624 64) (1024 -624 92) (1024 -864 92)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 4] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25453" + "plane" "(1440 -624 92) (1440 -624 64) (1440 -864 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 32] 0.5" + "vaxis" "[0 0 -1 63] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25452" + "plane" "(1024 -864 92) (1024 -624 92) (1440 -624 92)" + "material" "GROUND/HR_G/HR_GRAVEL_001" + "uaxis" "[1 0 0 -975] 0.125" + "vaxis" "[0 -1 0 128] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25451" + "plane" "(1440 -864 92) (1440 -864 64) (1024 -864 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -0.00170898] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25450" + "plane" "(1440 -624 64) (1024 -624 64) (1024 -864 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 132 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20603" + side + { + "id" "25461" + "plane" "(1168 -880 96) (1040 -880 96) (1040 -864 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25460" + "plane" "(1168 -864 92) (1040 -864 92) (1040 -880 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25459" + "plane" "(1040 -864 92) (1168 -864 92) (1168 -864 96)" + "material" "DEV/REFLECTIVITY_40" + "uaxis" "[0 0 1 -444] 0.125" + "vaxis" "[-1 0 0 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25458" + "plane" "(1168 -880 92) (1040 -880 92) (1040 -880 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25457" + "plane" "(1168 -864 92) (1168 -880 92) (1168 -880 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25456" + "plane" "(1040 -880 92) (1040 -864 92) (1040 -864 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 116 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20604" + side + { + "id" "25467" + "plane" "(512 -624 128) (512 -448 128) (800 -448 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25466" + "plane" "(512 -448 92) (512 -624 92) (800 -624 92)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25465" + "plane" "(512 -624 92) (512 -448 92) (512 -448 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25464" + "plane" "(800 -448 92) (800 -624 92) (800 -624 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25463" + "plane" "(512 -448 92) (800 -448 92) (800 -448 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25462" + "plane" "(800 -624 92) (512 -624 92) (512 -624 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 109 158" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20605" + side + { + "id" "25473" + "plane" "(800 64 92) (800 64 64) (1440 64 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25472" + "plane" "(800 64 64) (800 64 92) (800 -624 92)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 -60] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25471" + "plane" "(1440 64 92) (1440 64 64) (1440 -624 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.5" + "vaxis" "[0 0 -1 63] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25470" + "plane" "(800 -624 92) (800 64 92) (1440 64 92)" + "material" "GROUND/HR_G/HR_GRAVEL_001" + "uaxis" "[1 0 0 -975] 0.125" + "vaxis" "[0 -1 0 128] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25469" + "plane" "(1440 -624 92) (1440 -624 64) (800 -624 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25468" + "plane" "(1440 64 64) (800 64 64) (800 -624 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -16] 10" + "vaxis" "[0 -1 0 5.95349] 10.75" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 132 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20606" + side + { + "id" "25479" + "plane" "(800 -288 120) (800 64 120) (1248 64 120)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -15] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25478" + "plane" "(1248 -288 92) (1248 64 92) (800 64 92)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -15] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25477" + "plane" "(1248 64 92) (1248 -288 92) (1248 -288 120)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 447.999] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25476" + "plane" "(800 64 92) (1248 64 92) (1248 64 120)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -15] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25475" + "plane" "(800 -288 92) (800 64 92) (800 64 120)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 -15] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25474" + "plane" "(1248 -288 92) (800 -288 92) (800 -288 120)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -15] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + editor + { + "color" "0 247 132" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20607" + side + { + "id" "25485" + "plane" "(800 -480 120) (800 -288 120) (1248 -288 120)" + "material" "GROUND/HR_G/HR_GRAVEL_001" + "uaxis" "[1 0 0 -207] 0.125" + "vaxis" "[0 -1 0 128] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25484" + "plane" "(800 -288 92) (800 -480 92) (1248 -480 92)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -15] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25483" + "plane" "(1248 -288 92) (1248 -480 92) (1248 -480 120)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 448] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25482" + "plane" "(800 -480 92) (800 -288 92) (800 -288 120)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 -15] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25481" + "plane" "(1248 -480 92) (800 -480 92) (800 -480 120)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -15] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25480" + "plane" "(800 -288 92) (1248 -288 92) (1248 -288 120)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -15] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + editor + { + "color" "0 151 156" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20608" + side + { + "id" "25491" + "plane" "(1248 -480 120) (1248 -624 120) (800 -624 120)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -15] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25490" + "plane" "(800 -480 92) (800 -624 92) (1248 -624 92)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -15] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25489" + "plane" "(1248 -480 92) (1248 -624 92) (1248 -624 120)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 447.999] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25488" + "plane" "(1248 -624 92) (800 -624 92) (800 -624 120)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25487" + "plane" "(800 -624 92) (800 -480 92) (800 -480 120)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 -15] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25486" + "plane" "(800 -480 92) (1248 -480 92) (1248 -480 120)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -15] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 248" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20609" + side + { + "id" "25497" + "plane" "(1040 -864 128) (1040 -864 96) (1152 -864 96)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25496" + "plane" "(1040 -864 96) (1040 -864 128) (1040 -880 128)" + "material" "SOLUTION/OUTSIDE_WALL_WHITE" + "uaxis" "[0 1 0 -700] 0.125" + "vaxis" "[0 0 -1 448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25495" + "plane" "(1152 -864 128) (1152 -864 96) (1152 -880 96)" + "material" "SOLUTION/OUTSIDE_WALL_WHITE" + "uaxis" "[0 1 0 -512] 0.5" + "vaxis" "[0 0 -1 -273] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25494" + "plane" "(1040 -880 128) (1040 -864 128) (1152 -864 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25493" + "plane" "(1152 -880 128) (1152 -880 96) (1040 -880 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25492" + "plane" "(1152 -864 96) (1040 -864 96) (1040 -880 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 132 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20610" + side + { + "id" "25503" + "plane" "(1024 -864 304) (1024 -864 92) (1040 -864 92)" + "material" "DEV/REFLECTIVITY_40" + "uaxis" "[1 0 0 196] 0.125" + "vaxis" "[0 0 -1 448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25502" + "plane" "(1024 -864 92) (1024 -864 304) (1024 -880 304)" + "material" "DEV/REFLECTIVITY_40" + "uaxis" "[0 1 0 -444] 0.125" + "vaxis" "[0 0 -1 448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25501" + "plane" "(1040 -864 304) (1040 -864 92) (1040 -880 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25500" + "plane" "(1024 -880 304) (1024 -864 304) (1040 -864 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25499" + "plane" "(1040 -880 304) (1040 -880 92) (1024 -880 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25498" + "plane" "(1040 -864 92) (1024 -864 92) (1024 -880 92)" + "material" "DEV/REFLECTIVITY_40" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 132 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20611" + side + { + "id" "25509" + "plane" "(1152 -864 304) (1152 -864 96) (1168 -864 96)" + "material" "DEV/REFLECTIVITY_40" + "uaxis" "[1 0 0 -316] 0.125" + "vaxis" "[0 0 -1 448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25508" + "plane" "(1152 -864 96) (1152 -864 304) (1152 -880 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25507" + "plane" "(1168 -864 304) (1168 -864 96) (1168 -880 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25506" + "plane" "(1152 -880 304) (1152 -864 304) (1168 -864 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25505" + "plane" "(1168 -880 304) (1168 -880 96) (1152 -880 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25504" + "plane" "(1168 -864 96) (1152 -864 96) (1152 -880 96)" + "material" "DEV/REFLECTIVITY_40" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 132 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20612" + side + { + "id" "25515" + "plane" "(800 -624 92) (800 -624 64) (1024 -624 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25514" + "plane" "(800 -624 64) (800 -624 92) (800 -1056 92)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 4] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25513" + "plane" "(1024 -624 92) (1024 -624 64) (1024 -1056 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 32] 0.5" + "vaxis" "[0 0 -1 63] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25512" + "plane" "(800 -1056 92) (800 -624 92) (1024 -624 92)" + "material" "GROUND/HR_G/HR_GRAVEL_001" + "uaxis" "[1 0 0 -207] 0.125" + "vaxis" "[0 -1 0 128] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25511" + "plane" "(1024 -1056 92) (1024 -1056 64) (800 -1056 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25510" + "plane" "(1024 -624 64) (800 -624 64) (800 -1056 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 132 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20613" + side + { + "id" "25521" + "plane" "(1024 -880 304) (1024 -880 128) (1040 -880 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25520" + "plane" "(1024 -880 128) (1024 -880 304) (1024 -1040 304)" + "material" "SOLUTION2/GARAGE/BUMPWALL_WHITE" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25519" + "plane" "(1040 -880 304) (1040 -880 128) (1040 -1040 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25518" + "plane" "(1024 -1040 304) (1024 -880 304) (1040 -880 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25517" + "plane" "(1040 -1040 304) (1040 -1040 128) (1024 -1040 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25516" + "plane" "(1040 -880 128) (1024 -880 128) (1024 -1040 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 132 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20614" + side + { + "id" "25527" + "plane" "(1152 -864 304) (1152 -864 128) (1152 -880 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25526" + "plane" "(1152 -864 128) (1152 -864 304) (1040 -864 304)" + "material" "SOLUTION2/GARAGE/BUMPWALL_WHITE" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25525" + "plane" "(1152 -880 304) (1152 -880 128) (1040 -880 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25524" + "plane" "(1040 -864 304) (1152 -864 304) (1152 -880 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25523" + "plane" "(1040 -880 304) (1040 -880 128) (1040 -864 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25522" + "plane" "(1040 -880 128) (1152 -880 128) (1152 -864 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 132 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20615" + side + { + "id" "25533" + "plane" "(352 -672 128) (352 -480 128) (512 -480 128)" + "material" "DEV/VALUESAND30" + "uaxis" "[1 0 0 320] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25532" + "plane" "(352 -480 96) (352 -672 96) (512 -672 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25531" + "plane" "(352 -672 96) (352 -480 96) (352 -480 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25530" + "plane" "(512 -480 96) (512 -672 96) (512 -672 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25529" + "plane" "(352 -480 96) (512 -480 96) (512 -480 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25528" + "plane" "(512 -672 96) (352 -672 96) (352 -672 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 222" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20616" + side + { + "id" "25539" + "plane" "(352 -512 128) (352 -672 128) (128 -672 64)" + "material" "DEV/VALUESAND30" + "uaxis" "[1 0 0 320] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25538" + "plane" "(352 -672 32) (352 -512 32) (128 -512 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25537" + "plane" "(128 -512 64) (128 -672 64) (128 -672 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25536" + "plane" "(352 -672 128) (352 -512 128) (352 -512 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25535" + "plane" "(352 -512 128) (128 -512 64) (128 -512 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25534" + "plane" "(128 -672 64) (352 -672 128) (352 -672 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 249" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20617" + side + { + "id" "25545" + "plane" "(1024 -880 128) (1024 -880 96) (1040 -880 96)" + "material" "SOLUTION/OUTSIDE_WALL_WHITE" + "uaxis" "[1 0 0 196] 0.125" + "vaxis" "[0 0 -1 448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25544" + "plane" "(1024 -880 96) (1024 -880 128) (1024 -1040 128)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25543" + "plane" "(1040 -880 128) (1040 -880 96) (1040 -1040 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25542" + "plane" "(1024 -1040 128) (1024 -880 128) (1040 -880 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25541" + "plane" "(1040 -1040 128) (1040 -1040 96) (1024 -1040 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25540" + "plane" "(1040 -880 96) (1024 -880 96) (1024 -1040 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 132 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20619" + side + { + "id" "25557" + "plane" "(1440 -64 192) (1664 -64 192) (1664 -992 192)" + "material" "SOLUTION2/OFFICE/CARPET/CARPET_WHITE_WEAVE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25556" + "plane" "(1440 -992 64) (1664 -992 64) (1664 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25555" + "plane" "(1664 -64 64) (1664 -992 64) (1664 -992 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25554" + "plane" "(1440 -64 64) (1664 -64 64) (1664 -64 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25553" + "plane" "(1664 -992 64) (1440 -992 64) (1440 -992 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25552" + "plane" "(1440 -992 64) (1440 -64 64) (1440 -64 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 178 115" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20620" + side + { + "id" "25563" + "plane" "(1424 -832 184) (1424 -64 184) (1440 -64 184)" + "material" "SOLUTION2/GARAGE/BUMPWALL_WHITE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25562" + "plane" "(1424 -64 92) (1424 -832 92) (1440 -832 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25561" + "plane" "(1424 -832 92) (1424 -64 92) (1424 -64 184)" + "material" "SOLUTION2/OVERLAYS/BLUEWALL" + "uaxis" "[0 1 0 960] 0.25" + "vaxis" "[0 0 -1 368] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25560" + "plane" "(1440 -64 92) (1440 -832 92) (1440 -832 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25559" + "plane" "(1424 -64 92) (1440 -64 92) (1440 -64 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25558" + "plane" "(1440 -832 92) (1424 -832 92) (1424 -832 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 238 207" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "22880" + side + { + "id" "25880" + "plane" "(928 -288 126) (1120 -288 126) (1120 -480 126)" + "material" "LIQUIDS/GREECE_WATER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25881" + "plane" "(928 -480 120) (1120 -480 120) (1120 -288 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25882" + "plane" "(928 -288 126) (928 -480 126) (928 -480 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25883" + "plane" "(1120 -288 120) (1120 -480 120) (1120 -480 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25884" + "plane" "(1120 -288 126) (928 -288 126) (928 -288 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25885" + "plane" "(1120 -480 120) (928 -480 120) (928 -480 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 140 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23160" + side + { + "id" "26234" + "plane" "(1072 -301 0) (1107 -336 0) (1120 -288 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26235" + "plane" "(1120 -288 128) (1107 -336 128) (1072 -301 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26236" + "plane" "(1107 -336 0) (1107 -336 128) (1120 -288 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26237" + "plane" "(1072 -301 128) (1072 -301 0) (1120 -288 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26239" + "plane" "(1072 -301 128) (1107 -336 128) (1107 -336 0)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "23159" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23161" + side + { + "id" "26240" + "plane" "(1072 -301 0) (1120 -288 0) (1024 -288 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26241" + "plane" "(1120 -288 128) (1072 -301 128) (1024 -288 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26242" + "plane" "(1072 -301 0) (1072 -301 128) (1120 -288 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26244" + "plane" "(1120 -288 128) (1024 -288 128) (1024 -288 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26245" + "plane" "(1024 -288 128) (1072 -301 128) (1072 -301 0)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "23159" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23162" + side + { + "id" "26246" + "plane" "(976 -301 0) (1024 -288 0) (928 -288 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26247" + "plane" "(928 -288 128) (1024 -288 128) (976 -301 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26249" + "plane" "(976 -301 128) (976 -301 0) (928 -288 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26250" + "plane" "(1024 -288 128) (928 -288 128) (928 -288 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26251" + "plane" "(976 -301 128) (1024 -288 128) (1024 -288 0)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "23159" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23163" + side + { + "id" "26252" + "plane" "(941 -336 0) (976 -301 0) (928 -288 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26253" + "plane" "(928 -288 128) (976 -301 128) (941 -336 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26254" + "plane" "(976 -301 0) (976 -301 128) (928 -288 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26255" + "plane" "(941 -336 128) (941 -336 0) (928 -288 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26257" + "plane" "(941 -336 128) (976 -301 128) (976 -301 0)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "23159" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23164" + side + { + "id" "26258" + "plane" "(941 -336 0) (928 -288 0) (928 -384 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26259" + "plane" "(928 -288 128) (941 -336 128) (928 -384 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26260" + "plane" "(941 -336 0) (941 -336 128) (928 -288 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26262" + "plane" "(928 -288 128) (928 -384 128) (928 -384 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26263" + "plane" "(928 -384 128) (941 -336 128) (941 -336 0)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "23159" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23165" + side + { + "id" "26264" + "plane" "(941 -432 0) (928 -384 0) (928 -480 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26265" + "plane" "(928 -480 128) (928 -384 128) (941 -432 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26267" + "plane" "(941 -432 128) (941 -432 0) (928 -480 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26268" + "plane" "(928 -384 128) (928 -480 128) (928 -480 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26269" + "plane" "(941 -432 128) (928 -384 128) (928 -384 0)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "23159" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23166" + side + { + "id" "26270" + "plane" "(941 -432 0) (928 -480 0) (976 -467 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26271" + "plane" "(928 -480 128) (941 -432 128) (976 -467 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26272" + "plane" "(941 -432 0) (941 -432 128) (928 -480 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26273" + "plane" "(976 -467 128) (976 -467 0) (928 -480 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26275" + "plane" "(976 -467 128) (941 -432 128) (941 -432 0)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "23159" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23167" + side + { + "id" "26276" + "plane" "(976 -467 0) (928 -480 0) (1024 -480 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26277" + "plane" "(928 -480 128) (976 -467 128) (1024 -480 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26278" + "plane" "(976 -467 0) (976 -467 128) (928 -480 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26280" + "plane" "(928 -480 128) (1024 -480 128) (1024 -480 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26281" + "plane" "(1024 -480 128) (976 -467 128) (976 -467 0)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "23159" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23168" + side + { + "id" "26282" + "plane" "(1072 -467 0) (1024 -480 0) (1120 -480 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26283" + "plane" "(1120 -480 128) (1024 -480 128) (1072 -467 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26285" + "plane" "(1072 -467 128) (1072 -467 0) (1120 -480 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26286" + "plane" "(1024 -480 128) (1120 -480 128) (1120 -480 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26287" + "plane" "(1072 -467 128) (1024 -480 128) (1024 -480 0)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "23159" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23169" + side + { + "id" "26288" + "plane" "(1107 -432 0) (1072 -467 0) (1120 -480 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26289" + "plane" "(1120 -480 128) (1072 -467 128) (1107 -432 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26290" + "plane" "(1072 -467 0) (1072 -467 128) (1120 -480 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26291" + "plane" "(1107 -432 128) (1107 -432 0) (1120 -480 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26293" + "plane" "(1107 -432 128) (1072 -467 128) (1072 -467 0)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "23159" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23170" + side + { + "id" "26294" + "plane" "(1107 -432 0) (1120 -480 0) (1120 -384 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26295" + "plane" "(1120 -480 128) (1107 -432 128) (1120 -384 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26296" + "plane" "(1107 -432 0) (1107 -432 128) (1120 -480 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26298" + "plane" "(1120 -480 128) (1120 -384 128) (1120 -384 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26299" + "plane" "(1120 -384 128) (1107 -432 128) (1107 -432 0)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "23159" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23171" + side + { + "id" "26300" + "plane" "(1107 -336 0) (1120 -384 0) (1120 -288 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26301" + "plane" "(1120 -288 128) (1120 -384 128) (1107 -336 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26303" + "plane" "(1107 -336 128) (1107 -336 0) (1120 -288 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26304" + "plane" "(1120 -384 128) (1120 -288 128) (1120 -288 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26305" + "plane" "(1107 -336 128) (1120 -384 128) (1120 -384 0)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "23159" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23341" + side + { + "id" "26497" + "plane" "(352 -480 128) (352 -256 128) (512 -256 128)" + "material" "SOLUTION2/GARAGE/BUMPWALL_WHITE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26496" + "plane" "(352 -256 96) (352 -480 96) (512 -480 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26495" + "plane" "(352 -480 96) (352 -256 96) (352 -256 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26494" + "plane" "(512 -256 96) (512 -480 96) (512 -480 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26493" + "plane" "(352 -256 96) (512 -256 96) (512 -256 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26492" + "plane" "(512 -480 96) (352 -480 96) (352 -480 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 222" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23345" + side + { + "id" "26498" + "plane" "(512 -448 304) (520 -448 304) (520 -456 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26499" + "plane" "(512 -456 160) (520 -456 160) (520 -448 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26500" + "plane" "(512 -448 304) (512 -456 304) (512 -456 160)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26501" + "plane" "(520 -448 160) (520 -456 160) (520 -456 304)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26502" + "plane" "(520 -448 304) (512 -448 304) (512 -448 160)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26503" + "plane" "(520 -456 160) (512 -456 160) (512 -456 304)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23380" + side + { + "id" "26587" + "plane" "(512 -528 304) (520 -528 304) (520 -544 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26586" + "plane" "(512 -544 160) (520 -544 160) (520 -528 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26585" + "plane" "(512 -528 304) (512 -544 304) (512 -544 160)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26584" + "plane" "(520 -528 160) (520 -544 160) (520 -544 304)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26583" + "plane" "(520 -528 304) (512 -528 304) (512 -528 160)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26582" + "plane" "(520 -544 160) (512 -544 160) (512 -544 304)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23385" + side + { + "id" "26599" + "plane" "(512 -456 304) (520 -456 304) (520 -528 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26598" + "plane" "(512 -528 160) (520 -528 160) (520 -456 160)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26597" + "plane" "(512 -456 304) (512 -528 304) (512 -528 160)" + "material" "GLASS/HR_G/HR_GLASS_PANEL_001" + "uaxis" "[0 1 0 170.667] 0.140625" + "vaxis" "[0 0 -1 56.8889] 0.28125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26596" + "plane" "(520 -456 160) (520 -528 160) (520 -528 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26595" + "plane" "(520 -456 304) (512 -456 304) (512 -456 160)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26594" + "plane" "(520 -528 160) (512 -528 160) (512 -528 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23389" + side + { + "id" "26611" + "plane" "(512 -544 304) (520 -544 304) (520 -616 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26610" + "plane" "(512 -616 160) (520 -616 160) (520 -544 160)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26609" + "plane" "(512 -544 304) (512 -616 304) (512 -616 160)" + "material" "GLASS/HR_G/HR_GLASS_PANEL_001" + "uaxis" "[0 1 0 284.444] 0.140625" + "vaxis" "[0 0 -1 56.8889] 0.28125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26608" + "plane" "(520 -544 160) (520 -616 160) (520 -616 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26607" + "plane" "(520 -544 304) (512 -544 304) (512 -544 160)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26606" + "plane" "(520 -616 160) (512 -616 160) (512 -616 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23393" + side + { + "id" "26623" + "plane" "(512 -616 304) (520 -616 304) (520 -624 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26622" + "plane" "(512 -624 160) (520 -624 160) (520 -616 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26621" + "plane" "(512 -616 304) (512 -624 304) (512 -624 160)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26620" + "plane" "(520 -616 160) (520 -624 160) (520 -624 304)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26619" + "plane" "(520 -616 304) (512 -616 304) (512 -616 160)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26618" + "plane" "(520 -624 160) (512 -624 160) (512 -624 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23396" + side + { + "id" "26635" + "plane" "(464 -880 304) (464 -640 304) (480 -640 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9959] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26634" + "plane" "(464 -640 128) (464 -880 128) (480 -880 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9959] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26633" + "plane" "(464 -880 128) (464 -640 128) (464 -640 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26632" + "plane" "(480 -640 128) (480 -880 128) (480 -880 304)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 128] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26631" + "plane" "(464 -640 128) (480 -640 128) (480 -640 304)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 192] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26630" + "plane" "(480 -880 128) (464 -880 128) (464 -880 304)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 192] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 194 159" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23422" + side + { + "id" "26695" + "plane" "(792 -448 304) (800 -448 304) (800 -456 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26694" + "plane" "(792 -456 160) (800 -456 160) (800 -448 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26693" + "plane" "(792 -448 304) (792 -456 304) (792 -456 160)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26692" + "plane" "(800 -448 160) (800 -456 160) (800 -456 304)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26691" + "plane" "(800 -448 304) (792 -448 304) (792 -448 160)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26690" + "plane" "(800 -456 160) (792 -456 160) (792 -456 304)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23425" + side + { + "id" "26707" + "plane" "(792 -616 304) (800 -616 304) (800 -624 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26706" + "plane" "(792 -624 160) (800 -624 160) (800 -616 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26705" + "plane" "(792 -616 304) (792 -624 304) (792 -624 160)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26704" + "plane" "(800 -616 160) (800 -624 160) (800 -624 304)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26703" + "plane" "(800 -616 304) (792 -616 304) (792 -616 160)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26702" + "plane" "(800 -624 160) (792 -624 160) (792 -624 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23430" + side + { + "id" "26719" + "plane" "(792 -528 304) (800 -528 304) (800 -544 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26718" + "plane" "(792 -544 160) (800 -544 160) (800 -528 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26717" + "plane" "(792 -528 304) (792 -544 304) (792 -544 160)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26716" + "plane" "(800 -528 160) (800 -544 160) (800 -544 304)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26715" + "plane" "(800 -528 304) (792 -528 304) (792 -528 160)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26714" + "plane" "(800 -544 160) (792 -544 160) (792 -544 304)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23433" + side + { + "id" "26731" + "plane" "(648 -448 304) (664 -448 304) (664 -456 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26730" + "plane" "(648 -456 160) (664 -456 160) (664 -448 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26729" + "plane" "(648 -448 304) (648 -456 304) (648 -456 160)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26728" + "plane" "(664 -448 160) (664 -456 160) (664 -456 304)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26727" + "plane" "(664 -448 304) (648 -448 304) (648 -448 160)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26726" + "plane" "(664 -456 160) (648 -456 160) (648 -456 304)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23444" + side + { + "id" "26761" + "plane" "(792 -544 304) (800 -544 304) (800 -616 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26760" + "plane" "(792 -616 160) (800 -616 160) (800 -544 160)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26759" + "plane" "(792 -544 304) (792 -616 304) (792 -616 160)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 4] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26758" + "plane" "(800 -544 160) (800 -616 160) (800 -616 304)" + "material" "GLASS/HR_G/HR_GLASS_PANEL_001" + "uaxis" "[0 1 0 284.444] 0.140625" + "vaxis" "[0 0 -1 56.8889] 0.28125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26757" + "plane" "(800 -544 304) (792 -544 304) (792 -544 160)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26756" + "plane" "(800 -616 160) (792 -616 160) (792 -616 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23445" + side + { + "id" "26767" + "plane" "(792 -456 304) (800 -456 304) (800 -528 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26766" + "plane" "(792 -528 160) (800 -528 160) (800 -456 160)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26765" + "plane" "(792 -456 304) (792 -528 304) (792 -528 160)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 4] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26764" + "plane" "(800 -456 160) (800 -528 160) (800 -528 304)" + "material" "GLASS/HR_G/HR_GLASS_PANEL_001" + "uaxis" "[0 1 0 170.667] 0.140625" + "vaxis" "[0 0 -1 56.8889] 0.28125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26763" + "plane" "(800 -456 304) (792 -456 304) (792 -456 160)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26762" + "plane" "(800 -528 160) (792 -528 160) (792 -528 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23448" + side + { + "id" "26791" + "plane" "(520 -448 304) (648 -448 304) (648 -456 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26790" + "plane" "(520 -456 160) (648 -456 160) (648 -448 160)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26789" + "plane" "(520 -448 304) (520 -456 304) (520 -456 160)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 -60] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26788" + "plane" "(648 -448 160) (648 -456 160) (648 -456 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26787" + "plane" "(648 -448 304) (520 -448 304) (520 -448 160)" + "material" "GLASS/HR_G/HR_GLASS_PANEL_001" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 56.8889] 0.28125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26786" + "plane" "(648 -456 160) (520 -456 160) (520 -456 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23456" + side + { + "id" "26803" + "plane" "(664 -448 304) (792 -448 304) (792 -456 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26802" + "plane" "(664 -456 160) (792 -456 160) (792 -448 160)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26801" + "plane" "(664 -448 304) (664 -456 304) (664 -456 160)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 -60] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26800" + "plane" "(792 -448 160) (792 -456 160) (792 -456 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26799" + "plane" "(792 -448 304) (664 -448 304) (664 -448 160)" + "material" "GLASS/HR_G/HR_GLASS_PANEL_001" + "uaxis" "[1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 56.8889] 0.28125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26798" + "plane" "(792 -456 160) (664 -456 160) (664 -456 304)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23532" + side + { + "id" "26876" + "plane" "(1688 -64 400) (1688 -72 392) (1680 -72 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26877" + "plane" "(1688 -72 200) (1688 -64 192) (1680 -64 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26878" + "plane" "(1680 -72 392) (1680 -72 200) (1680 -64 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26879" + "plane" "(1688 -72 200) (1688 -72 392) (1688 -64 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26880" + "plane" "(1680 -64 400) (1680 -64 192) (1688 -64 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26881" + "plane" "(1680 -72 200) (1680 -72 392) (1688 -72 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23537" + side + { + "id" "26893" + "plane" "(1680 -384 400) (1680 -376 392) (1688 -376 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26892" + "plane" "(1680 -376 200) (1680 -384 192) (1688 -384 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26891" + "plane" "(1680 -384 400) (1680 -384 192) (1680 -376 200)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26890" + "plane" "(1688 -384 192) (1688 -384 400) (1688 -376 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26889" + "plane" "(1688 -384 400) (1688 -384 192) (1680 -384 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26888" + "plane" "(1688 -376 200) (1688 -376 392) (1680 -376 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23539" + side + { + "id" "26905" + "plane" "(1688 -72 200) (1688 -376 200) (1680 -376 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26904" + "plane" "(1688 -384 192) (1688 -64 192) (1680 -64 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26903" + "plane" "(1680 -64 192) (1680 -72 200) (1680 -376 200)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26902" + "plane" "(1688 -72 200) (1688 -64 192) (1688 -384 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26901" + "plane" "(1680 -384 192) (1680 -376 200) (1688 -376 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26900" + "plane" "(1680 -72 200) (1680 -64 192) (1688 -64 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23543" + side + { + "id" "26917" + "plane" "(1680 -72 392) (1680 -376 392) (1688 -376 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26916" + "plane" "(1680 -384 400) (1680 -64 400) (1688 -64 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26915" + "plane" "(1680 -384 400) (1680 -376 392) (1680 -72 392)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26914" + "plane" "(1688 -376 392) (1688 -384 400) (1688 -64 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26913" + "plane" "(1688 -384 400) (1688 -376 392) (1680 -376 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26912" + "plane" "(1688 -72 392) (1688 -64 400) (1680 -64 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23545" + side + { + "id" "26929" + "plane" "(1696 -392 392) (1688 -392 392) (1680 -384 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26928" + "plane" "(1688 -384 192) (1680 -384 192) (1688 -392 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26927" + "plane" "(1688 -392 200) (1680 -384 192) (1680 -384 400)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26926" + "plane" "(1696 -392 392) (1688 -384 400) (1688 -384 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26925" + "plane" "(1680 -384 192) (1688 -384 192) (1688 -384 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26924" + "plane" "(1688 -392 392) (1696 -392 392) (1696 -392 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23576" + side + { + "id" "26995" + "plane" "(1688 -392 200) (1696 -392 200) (1784 -480 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26994" + "plane" "(1688 -384 192) (1680 -384 192) (1792 -496 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26993" + "plane" "(1680 -384 192) (1688 -392 200) (1784 -488 200)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26992" + "plane" "(1792 -488 192) (1784 -480 200) (1696 -392 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26991" + "plane" "(1688 -384 192) (1696 -392 200) (1688 -392 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26990" + "plane" "(1792 -496 192) (1784 -488 200) (1784 -480 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23578" + side + { + "id" "27031" + "plane" "(2112 -496 400) (2104 -496 392) (2104 -488 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27030" + "plane" "(2104 -496 200) (2112 -496 192) (2112 -488 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27029" + "plane" "(2112 -496 400) (2112 -496 192) (2104 -496 200)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27028" + "plane" "(2112 -488 192) (2112 -488 400) (2104 -488 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27027" + "plane" "(2112 -488 400) (2112 -488 192) (2112 -496 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27026" + "plane" "(2104 -488 200) (2104 -488 392) (2104 -496 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23579" + side + { + "id" "27037" + "plane" "(1800 -488 200) (2104 -488 200) (2104 -496 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27036" + "plane" "(2112 -488 192) (1792 -488 192) (1792 -496 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27035" + "plane" "(1792 -496 192) (1800 -496 200) (2104 -496 200)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27034" + "plane" "(1800 -488 200) (1792 -488 192) (2112 -488 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27033" + "plane" "(2112 -496 192) (2104 -496 200) (2104 -488 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27032" + "plane" "(1800 -496 200) (1792 -496 192) (1792 -488 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23580" + side + { + "id" "27043" + "plane" "(1792 -488 400) (1800 -488 392) (1800 -496 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27042" + "plane" "(1800 -488 200) (1792 -488 192) (1792 -496 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27041" + "plane" "(1800 -496 392) (1800 -496 200) (1792 -496 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27040" + "plane" "(1800 -488 200) (1800 -488 392) (1792 -488 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27039" + "plane" "(1792 -496 400) (1792 -496 192) (1792 -488 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27038" + "plane" "(1800 -496 200) (1800 -496 392) (1800 -488 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23581" + side + { + "id" "27049" + "plane" "(1800 -496 392) (2104 -496 392) (2104 -488 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27048" + "plane" "(2112 -496 400) (1792 -496 400) (1792 -488 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27047" + "plane" "(2112 -496 400) (2104 -496 392) (1800 -496 392)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27046" + "plane" "(2104 -488 392) (2112 -488 400) (1792 -488 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27045" + "plane" "(2112 -488 400) (2104 -488 392) (2104 -496 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27044" + "plane" "(1800 -488 392) (1792 -488 400) (1792 -496 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23590" + side + { + "id" "27061" + "plane" "(1792 -488 400) (1792 -496 400) (1784 -488 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27060" + "plane" "(1784 -480 200) (1784 -488 200) (1792 -496 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27059" + "plane" "(1784 -488 392) (1792 -496 400) (1792 -496 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27058" + "plane" "(1784 -480 200) (1792 -488 192) (1792 -488 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27057" + "plane" "(1792 -496 400) (1792 -488 400) (1792 -488 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27056" + "plane" "(1784 -488 200) (1784 -480 200) (1784 -480 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23605" + side + { + "id" "27073" + "plane" "(1784 -488 392) (1784 -480 392) (1696 -392 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27072" + "plane" "(1792 -488 400) (1792 -496 400) (1680 -384 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27071" + "plane" "(1792 -496 400) (1784 -488 392) (1688 -392 392)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27070" + "plane" "(1688 -384 400) (1696 -392 392) (1784 -480 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27069" + "plane" "(1680 -384 400) (1688 -392 392) (1696 -392 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27068" + "plane" "(1792 -488 400) (1784 -480 392) (1784 -488 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23607" + side + { + "id" "27085" + "plane" "(1728 -664.21 336) (1728 -576.21 336) (1736 -576.21 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -0.841309] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27084" + "plane" "(1728 -576.21 192) (1728 -664.21 192) (1736 -664.21 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -0.841309] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27083" + "plane" "(1728 -664.21 192) (1728 -576.21 192) (1728 -576.21 336)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27082" + "plane" "(1736 -576.21 192) (1736 -664.21 192) (1736 -664.21 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.841309] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27081" + "plane" "(1728 -576.21 192) (1736 -576.21 192) (1736 -576.21 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27080" + "plane" "(1736 -664.21 192) (1728 -664.21 192) (1728 -664.21 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 109 190" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23613" + side + { + "id" "27097" + "plane" "(1736 -572.21 336) (1780 -496 336) (1786.93 -500 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.866025 -0.5 0 -22.1012] 0.25" + "vaxis" "[-0.5 -0.866025 0 49.8054] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27096" + "plane" "(1780 -496 192) (1736 -572.21 192) (1742.93 -576.21 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.866025 -0.5 0 -22.1012] 0.25" + "vaxis" "[-0.5 -0.866025 0 49.8054] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27095" + "plane" "(1736 -572.21 192) (1780 -496 192) (1780 -496 336)" + "material" "DEV/GRAYGRID" + "uaxis" "[0.5 0.866025 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27094" + "plane" "(1786.93 -500 192) (1742.93 -576.21 192) (1742.93 -576.21 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.5 0.866025 0 -49.8054] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27093" + "plane" "(1780 -496 192) (1786.93 -500 192) (1786.93 -500 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0.866025 -0.5 0 -22.1012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27092" + "plane" "(1742.93 -576.21 192) (1736 -572.21 192) (1736 -572.21 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0.866025 -0.5 0 -22.1012] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 109 190" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23618" + side + { + "id" "27098" + "plane" "(1680 -72 392) (1688 -72 392) (1688 -376 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27099" + "plane" "(1680 -376 200) (1688 -376 200) (1688 -72 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27100" + "plane" "(1680 -72 392) (1680 -376 392) (1680 -376 200)" + "material" "GLASS/HR_G/HR_GLASS_PANEL_001" + "uaxis" "[0 1 0 121.263] 0.59375" + "vaxis" "[0 0 -1 21.3334] 0.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27101" + "plane" "(1688 -72 200) (1688 -376 200) (1688 -376 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27102" + "plane" "(1688 -72 392) (1680 -72 392) (1680 -72 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27103" + "plane" "(1688 -376 200) (1680 -376 200) (1680 -376 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 249 114" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23621" + side + { + "id" "27115" + "plane" "(1696 -392 392) (1784 -480 392) (1784 -488 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27114" + "plane" "(1784 -480 200) (1696 -392 200) (1688 -392 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27113" + "plane" "(1784 -488 392) (1784 -488 200) (1688 -392 200)" + "material" "GLASS/HR_G/HR_GLASS_PANEL_001" + "uaxis" "[0 1 0 42.6667] 0.1875" + "vaxis" "[0 0 -1 21.3334] 0.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27112" + "plane" "(1784 -480 200) (1784 -480 392) (1696 -392 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27111" + "plane" "(1688 -392 392) (1688 -392 200) (1696 -392 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27110" + "plane" "(1784 -488 200) (1784 -488 392) (1784 -480 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 249 114" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23625" + side + { + "id" "27127" + "plane" "(1800 -496 392) (1800 -488 392) (2104 -488 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27126" + "plane" "(2104 -496 200) (2104 -488 200) (1800 -488 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27125" + "plane" "(1800 -496 392) (2104 -496 392) (2104 -496 200)" + "material" "GLASS/HR_G/HR_GLASS_PANEL_001" + "uaxis" "[-1 0 0 471.579] 0.59375" + "vaxis" "[0 0 -1 21.3334] 0.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27124" + "plane" "(1800 -488 200) (2104 -488 200) (2104 -488 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27123" + "plane" "(1800 -488 392) (1800 -496 392) (1800 -496 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27122" + "plane" "(2104 -488 200) (2104 -496 200) (2104 -496 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 249 114" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23647" + side + { + "id" "27139" + "plane" "(1648 -64 416) (1680 -64 416) (1680 -384 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27138" + "plane" "(1648 -416 400) (1680 -384 400) (1680 -64 400)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27137" + "plane" "(1648 -64 400) (1648 -64 416) (1648 -416 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27136" + "plane" "(1680 -384 400) (1680 -384 416) (1680 -64 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27135" + "plane" "(1680 -64 400) (1680 -64 416) (1648 -64 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27134" + "plane" "(1648 -416 400) (1648 -416 416) (1680 -384 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 120 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23653" + side + { + "id" "27151" + "plane" "(1792 -496 416) (1760 -528 416) (1648 -416 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27150" + "plane" "(1680 -384 400) (1648 -416 400) (1760 -528 400)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -96] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27149" + "plane" "(1760 -528 416) (1760 -528 400) (1648 -416 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27148" + "plane" "(1680 -384 416) (1680 -384 400) (1792 -496 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27147" + "plane" "(1648 -416 416) (1648 -416 400) (1680 -384 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27146" + "plane" "(1792 -496 416) (1792 -496 400) (1760 -528 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 120 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23655" + side + { + "id" "27163" + "plane" "(1760 -528 416) (1792 -496 416) (2112 -496 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27162" + "plane" "(2112 -528 400) (2112 -496 400) (1792 -496 400)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27161" + "plane" "(1760 -528 400) (1760 -528 416) (2112 -528 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27160" + "plane" "(2112 -496 400) (2112 -496 416) (1792 -496 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27159" + "plane" "(2112 -528 400) (2112 -528 416) (2112 -496 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27158" + "plane" "(1792 -496 400) (1792 -496 416) (1760 -528 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 120 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23660" + side + { + "id" "27175" + "plane" "(1760 -528 416) (1760 -672 416) (1648 -672 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27174" + "plane" "(1760 -672 400) (1760 -528 400) (1648 -416 400)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27173" + "plane" "(1648 -416 416) (1648 -672 416) (1648 -672 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27172" + "plane" "(1760 -672 416) (1760 -528 416) (1760 -528 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27171" + "plane" "(1760 -528 416) (1648 -416 416) (1648 -416 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27170" + "plane" "(1648 -672 416) (1760 -672 416) (1760 -672 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 120 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23663" + side + { + "id" "27187" + "plane" "(2112 -672 416) (1760 -672 416) (1760 -528 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27186" + "plane" "(2112 -528 400) (1760 -528 400) (1760 -672 400)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -448] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27185" + "plane" "(1760 -672 416) (1760 -672 400) (1760 -528 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27184" + "plane" "(2112 -528 416) (2112 -528 400) (2112 -672 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27183" + "plane" "(1760 -528 416) (1760 -528 400) (2112 -528 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27182" + "plane" "(2112 -672 416) (2112 -672 400) (1760 -672 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 120 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23672" + side + { + "id" "27223" + "plane" "(1648 -64 196) (1680 -64 196) (1680 -384 196)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27222" + "plane" "(1648 -416 192) (1680 -384 192) (1680 -64 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27221" + "plane" "(1648 -64 192) (1648 -64 196) (1648 -416 196)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27220" + "plane" "(1680 -384 192) (1680 -384 196) (1680 -64 196)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27219" + "plane" "(1680 -64 192) (1680 -64 196) (1648 -64 196)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27218" + "plane" "(1648 -416 192) (1648 -416 196) (1680 -384 196)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 120 217" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23673" + side + { + "id" "27229" + "plane" "(1792 -496 196) (1760 -528 196) (1648 -416 196)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27228" + "plane" "(1680 -384 192) (1648 -416 192) (1760 -528 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -96] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27227" + "plane" "(1760 -528 196) (1760 -528 192) (1648 -416 192)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27226" + "plane" "(1680 -384 196) (1680 -384 192) (1792 -496 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27225" + "plane" "(1648 -416 196) (1648 -416 192) (1680 -384 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27224" + "plane" "(1792 -496 196) (1792 -496 192) (1760 -528 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 120 217" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23674" + side + { + "id" "27235" + "plane" "(1760 -528 196) (1792 -496 196) (2112 -496 196)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27234" + "plane" "(2112 -528 192) (2112 -496 192) (1792 -496 192)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27233" + "plane" "(1760 -528 192) (1760 -528 196) (2112 -528 196)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27232" + "plane" "(2112 -496 192) (2112 -496 196) (1792 -496 196)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27231" + "plane" "(2112 -528 192) (2112 -528 196) (2112 -496 196)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27230" + "plane" "(1792 -496 192) (1792 -496 196) (1760 -528 196)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 120 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23740" + side + { + "id" "27344" + "plane" "(512 -2368 32) (512 -2592 64) (128 -2592 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27345" + "plane" "(512 -2592 32) (512 -2368 32) (128 -2368 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27346" + "plane" "(128 -2592 64) (128 -2592 32) (128 -2368 32)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27347" + "plane" "(512 -2592 32) (512 -2592 64) (512 -2368 32)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27349" + "plane" "(128 -2592 32) (128 -2592 64) (512 -2592 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 220" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23783" + side + { + "id" "27455" + "plane" "(128 -3291.19 64) (128 -2688 64) (512 -2688 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[512 -2688 64]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0.794684 0.0421952 1.27149 0.780738 -0.746192 1.04098 0.583753 -1.14168 0.778337 0.48746 -1.30462 0.557097 0.390015 -1.37812 0.445731 0.366404 -1.40766 0.366404 0.349218 -1.42537 0.310416 0.297606 -1.44618 0.264539 0.292074 -1.45262 0.233659" + "row2" "1.14146 0.152052 0.961227 1.14568 -0.493112 0.833222 1.00119 -0.895608 0.66746 0.868788 -1.10912 0.514837 0.762294 -1.22148 0.420576 0.700254 -1.27947 0.350127 0.638604 -1.32358 0.30052 0.598748 -1.35073 0.258918 0.560551 -1.37219 0.22997" + "row3" "1.28939 0.263768 0.719658 1.32833 -0.249497 0.65061 1.24512 -0.627252 0.553386 1.13309 -0.868133 0.460919 1.0471 -1.00205 0.386621 0.962185 -1.10244 0.329892 0.901364 -1.1647 0.284641 0.845705 -1.21326 0.250579 0.804442 -1.24598 0.224496" + "row4" "1.33971 0.358364 0.571612 1.40098 -0.049002 0.533708 1.37721 -0.365371 0.468836 1.30899 -0.609228 0.406677 1.23183 -0.78021 0.351951 1.16806 -0.889814 0.306377 1.10493 -0.977892 0.269907 1.0584 -1.03542 0.240205 1.01207 -1.08587 0.215907" + "row5" "1.34914 0.453587 0.473381 1.42571 0.137307 0.445534 1.43672 -0.148454 0.404711 1.40667 -0.375765 0.360683 1.36289 -0.539357 0.318804 1.31124 -0.671019 0.283512 1.26407 -0.766527 0.254085 1.21829 -0.844641 0.228787 1.17935 -0.903508 0.206903" + "row6" "1.33661 0.546428 0.406059 1.42201 0.284345 0.383463 1.45723 0.0411623 0.353267 1.45654 -0.157112 0.322184 1.43555 -0.323497 0.290745 1.4063 -0.45093 0.262655 1.37234 -0.556897 0.237806 1.33922 -0.639782 0.217171 1.30692 -0.708909 0.198519" + "row7" "1.30875 0.640771 0.355778 1.39941 0.421381 0.337788 1.45102 0.21292 0.314951 1.47105 0.0356505 0.291092 1.47125 -0.119707 0.266634 1.45967 -0.244621 0.244004 1.44182 -0.34804 0.223662 1.4197 -0.438201 0.205967 1.39798 -0.509454 0.190017" + "row8" "1.27306 0.726657 0.318265 1.36567 0.541163 0.303481 1.4264 0.366067 0.28528 1.46153 0.208118 0.265733 1.47799 0.0697577 0.246332 1.48175 -0.0494253 0.227962 1.47735 -0.151284 0.21105 1.46798 -0.238168 0.195731 1.45578 -0.312412 0.181972" + } + distances + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "9.43772 11.5276 15.4175 21.5402 26.922 32.7507 38.6578 45.362 51.3568" + "row2" "24.9681 28.8039 35.9572 46.6167 57.0646 68.5465 79.8617 92.6935 104.362" + "row3" "50.0238 55.3327 65.0541 78.1048 93.1143 109.127 126.475 143.667 160.36" + "row4" "83.9731 89.9368 102.381 118.03 136.383 156.67 177.839 199.83 222.318" + "row5" "126.748 134.67 148.254 166.351 188.204 211.632 236.142 262.252 289.991" + "row6" "177.314 187.763 203.812 223.475 247.639 274.124 302.768 331.536 362.685" + "row7" "236.103 248.677 266.708 288.569 315.038 344.257 375.567 407.832 442.066" + "row8" "301.636 316.329 336.512 361.265 389.718 421.123 454.868 490.47 527.554" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5" + "row1" "0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5" + "row2" "0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5" + "row3" "0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5" + "row4" "0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5" + "row5" "0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5" + "row6" "0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5" + "row7" "0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5" + "row8" "0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5 0 0 1.5" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "27454" + "plane" "(128 -2688 -32) (128 -3291.2 -32) (512 -3291.19 -32)" + "material" "CONCRETE/CONCRETEFLOOR005A" + "uaxis" "[-1 0 0 2816] 0.25" + "vaxis" "[0 1 0 11154.1] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27453" + "plane" "(512 -2688 -32) (512 -3291.2 -32) (512 -3291.19 64)" + "material" "CONCRETE/CONCRETEFLOOR005A" + "uaxis" "[0 -1 0 -11154.1] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27452" + "plane" "(128 -3291.19 -32) (128 -2688 -32) (128 -2688 64)" + "material" "CONCRETE/CONCRETEFLOOR005A" + "uaxis" "[0 -1 0 -11154.1] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27451" + "plane" "(512 -3291.19 -32) (128 -3291.19 -32) (128 -3291.19 64)" + "material" "CONCRETE/CONCRETEFLOOR005A" + "uaxis" "[-1 0 0 2816] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27450" + "plane" "(128 -2688 -32) (512 -2688 -32) (512 -2688 64)" + "material" "CONCRETE/CONCRETEFLOOR005A" + "uaxis" "[-1 0 0 2816] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 173 190" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23855" + side + { + "id" "27564" + "plane" "(192 -2048 320) (448 -2048 320) (448 -2080 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27565" + "plane" "(192 -2080 288) (448 -2080 288) (448 -2048 288)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27566" + "plane" "(192 -2048 320) (192 -2080 320) (192 -2080 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27567" + "plane" "(448 -2048 288) (448 -2080 288) (448 -2080 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27568" + "plane" "(448 -2048 320) (192 -2048 320) (192 -2048 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27569" + "plane" "(448 -2080 288) (192 -2080 288) (192 -2080 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 114 127" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23858" + side + { + "id" "27570" + "plane" "(496 -2288 288) (512 -2288 288) (512 -2304 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27571" + "plane" "(496 -2304 32) (512 -2304 32) (512 -2288 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27572" + "plane" "(496 -2288 288) (496 -2304 288) (496 -2304 32)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27573" + "plane" "(512 -2288 32) (512 -2304 32) (512 -2304 288)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27574" + "plane" "(512 -2288 288) (496 -2288 288) (496 -2288 32)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27575" + "plane" "(512 -2304 32) (496 -2304 32) (496 -2304 288)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 117" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23859" + side + { + "id" "27587" + "plane" "(-8 -2400 288) (8 -2400 288) (8 -2416 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27586" + "plane" "(-8 -2416 32) (8 -2416 32) (8 -2400 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27585" + "plane" "(-8 -2400 288) (-8 -2416 288) (-8 -2416 32)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27584" + "plane" "(8 -2400 32) (8 -2416 32) (8 -2416 288)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27583" + "plane" "(8 -2400 288) (-8 -2400 288) (-8 -2400 32)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27582" + "plane" "(8 -2416 32) (-8 -2416 32) (-8 -2416 288)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 117" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14512" + side + { + "id" "10452" + "plane" "(736 -2016 32) (512 -2016 32) (512 -1856 32)" + "material" "SOLUTION/GHERR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10451" + "plane" "(736 -1856 0) (512 -1856 0) (512 -2016 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10450" + "plane" "(512 -2016 0) (512 -1856 0) (512 -1856 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10449" + "plane" "(512 -1856 0) (736 -1856 0) (736 -1856 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10448" + "plane" "(736 -2016 0) (512 -2016 0) (512 -2016 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10447" + "plane" "(736 -1856 0) (736 -2016 0) (736 -2016 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 110 111" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14513" + side + { + "id" "10458" + "plane" "(512 -1856 32) (512 -1536 32) (736 -1536 32)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10457" + "plane" "(512 -1536 0) (512 -1856 0) (736 -1856 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10456" + "plane" "(512 -1856 0) (512 -1536 0) (512 -1536 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10455" + "plane" "(736 -1536 0) (736 -1856 0) (736 -1856 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10454" + "plane" "(512 -1536 0) (736 -1536 0) (736 -1536 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10453" + "plane" "(736 -1856 0) (512 -1856 0) (512 -1856 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14514" + side + { + "id" "10464" + "plane" "(1024 -1728 128) (1024 -1536 128) (1280 -1536 128)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 -320] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10463" + "plane" "(1024 -1536 96) (1024 -1728 96) (1280 -1728 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40] 0.25" + "vaxis" "[0 -1 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10462" + "plane" "(1024 -1728 96) (1024 -1536 96) (1024 -1536 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10461" + "plane" "(1280 -1536 96) (1280 -1728 96) (1280 -1728 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10460" + "plane" "(1024 -1536 96) (1280 -1536 96) (1280 -1536 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10459" + "plane" "(1280 -1728 96) (1024 -1728 96) (1024 -1728 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 122" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14515" + side + { + "id" "10470" + "plane" "(928 -1728 80) (832 -1728 80) (832 -1536 80)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 -896] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10469" + "plane" "(928 -1536 32) (832 -1536 32) (832 -1728 32)" + "material" "DEV/DEV_MEASURESTAIRS01A" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 -144] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10468" + "plane" "(832 -1536 32) (928 -1536 32) (928 -1536 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10467" + "plane" "(928 -1728 32) (832 -1728 32) (832 -1728 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10466" + "plane" "(832 -1728 32) (832 -1536 32) (832 -1536 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10465" + "plane" "(928 -1536 32) (928 -1728 32) (928 -1728 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 230 219" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14524" + side + { + "id" "20909" + "plane" "(440 -1344 32) (440 -1120 32) (800 -1120 32)" + "material" "FLOORS/HR_C/HR_FLOOR_TILE_001" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 -1 0 -544] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "20908" + "plane" "(440 -1120 0) (440 -1344 0) (800 -1344 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20907" + "plane" "(440 -1344 0) (440 -1120 0) (440 -1120 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20906" + "plane" "(800 -1120 0) (800 -1344 0) (800 -1344 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20905" + "plane" "(440 -1120 0) (800 -1120 0) (800 -1120 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20904" + "plane" "(800 -1344 0) (440 -1344 0) (440 -1344 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 123 204" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14525" + side + { + "id" "20915" + "plane" "(800 -1384 32) (800 -1072 32) (1024 -1072 32)" + "material" "SOLUTION2/OFFICE/CARPET/CARPET_BLACK_WEAVE" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 -192] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "20914" + "plane" "(800 -1072 0) (800 -1384 0) (1024 -1384 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20913" + "plane" "(800 -1384 0) (800 -1072 0) (800 -1072 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20912" + "plane" "(1024 -1072 0) (1024 -1384 0) (1024 -1384 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20911" + "plane" "(800 -1072 0) (1024 -1072 0) (1024 -1072 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20910" + "plane" "(1024 -1384 0) (800 -1384 0) (800 -1384 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 124" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12317" + side + { + "id" "8494" + "plane" "(-480 -2080 288) (-32 -2080 288) (-32 -2112 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8493" + "plane" "(-480 -2112 160) (-32 -2112 160) (-32 -2080 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8492" + "plane" "(-480 -2080 288) (-480 -2112 288) (-480 -2112 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8491" + "plane" "(-32 -2080 160) (-32 -2112 160) (-32 -2112 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8490" + "plane" "(-32 -2080 288) (-480 -2080 288) (-480 -2080 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8489" + "plane" "(-32 -2112 160) (-480 -2112 160) (-480 -2112 288)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12327" + side + { + "id" "8530" + "plane" "(-31.9999 -2112 288) (0 -2112 288) (0 -2208 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8529" + "plane" "(-31.9999 -2208 32) (0 -2208 32) (0 -2112 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8528" + "plane" "(-31.9999 -2112 288) (-31.9999 -2208 288) (-31.9999 -2208 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8527" + "plane" "(0 -2112 32) (0 -2208 32) (0 -2208 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8526" + "plane" "(0 -2112 288) (-31.9999 -2112 288) (-31.9999 -2112 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8525" + "plane" "(0 -2208 32) (-31.9999 -2208 32) (-31.9999 -2208 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12333" + side + { + "id" "8542" + "plane" "(0 -2560 96) (128 -2560 96) (128 -2592 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8541" + "plane" "(0 -2592 32) (128 -2592 32) (128 -2560 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8540" + "plane" "(0 -2560 96) (0 -2592 96) (0 -2592 32)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8539" + "plane" "(128 -2560 32) (128 -2592 32) (128 -2592 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8538" + "plane" "(128 -2560 96) (0 -2560 96) (0 -2560 32)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8537" + "plane" "(128 -2592 32) (0 -2592 32) (0 -2592 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12336" + side + { + "id" "9088" + "plane" "(-224 -2560 40) (-256 -2592 40) (-512 -2336 40)" + "material" "SOLUTION2/OUTDOOR/PATH" + "uaxis" "[0.707107 -0.707107 0 -266] 0.5" + "vaxis" "[-0.707107 -0.707107 0 -301] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9087" + "plane" "(-256 -2592 32) (-224 -2560 32) (-480 -2304 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9086" + "plane" "(-512 -2336 40) (-512 -2336 32) (-480 -2304 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9085" + "plane" "(-256 -2592 32) (-256 -2592 40) (-224 -2560 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9084" + "plane" "(-480 -2304 40) (-480 -2304 32) (-224 -2560 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9083" + "plane" "(-512 -2336 32) (-512 -2336 40) (-256 -2592 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12343" + side + { + "id" "9094" + "plane" "(-256 -2592 48) (-288 -2624 48) (-544 -2368 48)" + "material" "SOLUTION2/OUTDOOR/PATH" + "uaxis" "[0.707107 -0.707107 0 -266] 0.5" + "vaxis" "[-0.707107 -0.707107 0 -301] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9093" + "plane" "(-288 -2624 40) (-256 -2592 40) (-512 -2336 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9092" + "plane" "(-544 -2368 48) (-544 -2368 40) (-512 -2336 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9091" + "plane" "(-288 -2624 40) (-288 -2624 48) (-256 -2592 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9090" + "plane" "(-512 -2336 48) (-512 -2336 40) (-256 -2592 40)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9089" + "plane" "(-544 -2368 40) (-544 -2368 48) (-288 -2624 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12348" + side + { + "id" "9100" + "plane" "(-320 -2656 56) (-576 -2400 56) (-544 -2368 56)" + "material" "SOLUTION2/OUTDOOR/PATH" + "uaxis" "[0.707107 -0.707107 0 -266] 0.5" + "vaxis" "[-0.707107 -0.707107 0 -301] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9099" + "plane" "(-288 -2624 48) (-544 -2368 48) (-576 -2400 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9098" + "plane" "(-576 -2400 48) (-544 -2368 48) (-544 -2368 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9097" + "plane" "(-320 -2656 56) (-288 -2624 56) (-288 -2624 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9096" + "plane" "(-544 -2368 48) (-288 -2624 48) (-288 -2624 56)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9095" + "plane" "(-576 -2400 56) (-320 -2656 56) (-320 -2656 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12350" + side + { + "id" "9106" + "plane" "(-352 -2688 64) (-608 -2432 64) (-576 -2400 64)" + "material" "SOLUTION2/OUTDOOR/PATH" + "uaxis" "[0.707107 -0.707107 0 -266] 0.5" + "vaxis" "[-0.707107 -0.707107 0 -301] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9105" + "plane" "(-320 -2656 56) (-576 -2400 56) (-608 -2432 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9104" + "plane" "(-608 -2432 56) (-576 -2400 56) (-576 -2400 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9103" + "plane" "(-352 -2688 64) (-320 -2656 64) (-320 -2656 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9102" + "plane" "(-576 -2400 56) (-320 -2656 56) (-320 -2656 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9101" + "plane" "(-608 -2432 64) (-352 -2688 64) (-352 -2688 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12360" + side + { + "id" "8662" + "plane" "(-352 -3424 64) (-352 -2688 64) (0 -2688 64)" + "material" "SOLUTION2/OUTDOOR/PATH" + "uaxis" "[1 0 0 192] 0.25" + "vaxis" "[0 -1 0 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8661" + "plane" "(-352 -2688 32) (-352 -3424 32) (0 -3424 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8660" + "plane" "(-352 -3424 32) (-352 -2688 32) (-352 -2688 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8659" + "plane" "(0 -2688 32) (0 -3424 32) (0 -3424 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8658" + "plane" "(-352 -2688 32) (0 -2688 32) (0 -2688 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8657" + "plane" "(0 -3424 32) (-352 -3424 32) (-352 -3424 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12405" + side + { + "id" "8674" + "plane" "(-352 -2688 64) (-512 -2688 64) (-688 -2512 64)" + "material" "SOLUTION2/OUTDOOR/PATH" + "uaxis" "[0.707107 -0.707107 0 -266] 0.5" + "vaxis" "[-0.707107 -0.707107 0 -301] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8673" + "plane" "(-512 -2688 32) (-352 -2688 32) (-608 -2432 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8672" + "plane" "(-688 -2512 64) (-688 -2512 32) (-608 -2432 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8671" + "plane" "(-512 -2688 32) (-512 -2688 64) (-352 -2688 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8670" + "plane" "(-608 -2432 64) (-608 -2432 32) (-352 -2688 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8669" + "plane" "(-688 -2512 32) (-688 -2512 64) (-512 -2688 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12408" + side + { + "id" "8686" + "plane" "(-1120 -3296 64) (-1472 -3296 64) (-688 -2512 64)" + "material" "SOLUTION2/OUTDOOR/PATH" + "uaxis" "[0.707107 -0.707107 0 -266] 0.5" + "vaxis" "[-0.707107 -0.707107 0 -301] 0.5" + "rotation" "-45" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8685" + "plane" "(-1472 -3296 32) (-1120 -3296 32) (-512 -2688 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8684" + "plane" "(-688 -2512 32) (-688 -2512 64) (-1472 -3296 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8683" + "plane" "(-1120 -3296 32) (-1120 -3296 64) (-512 -2688 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 26.9653] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8682" + "plane" "(-512 -2688 32) (-512 -2688 64) (-688 -2512 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8681" + "plane" "(-1472 -3296 32) (-1472 -3296 64) (-1120 -3296 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12421" + side + { + "id" "8698" + "plane" "(-512 -2272 160) (-480 -2272 160) (-480 -2304 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8697" + "plane" "(-512 -2304 32) (-480 -2304 32) (-480 -2272 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8696" + "plane" "(-512 -2272 160) (-512 -2304 160) (-512 -2304 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8695" + "plane" "(-480 -2272 32) (-480 -2304 32) (-480 -2304 160)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8694" + "plane" "(-480 -2272 160) (-512 -2272 160) (-512 -2272 32)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8693" + "plane" "(-480 -2304 32) (-512 -2304 32) (-512 -2304 160)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12424" + side + { + "id" "8710" + "plane" "(-512 -2112 192) (-480 -2112 192) (-480 -2304 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8709" + "plane" "(-512 -2304 160) (-480 -2304 160) (-480 -2112 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8708" + "plane" "(-512 -2112 192) (-512 -2304 192) (-512 -2304 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8707" + "plane" "(-480 -2112 160) (-480 -2304 160) (-480 -2304 192)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8706" + "plane" "(-480 -2112 192) (-512 -2112 192) (-512 -2112 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8705" + "plane" "(-480 -2304 160) (-512 -2304 160) (-512 -2304 192)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12427" + side + { + "id" "8722" + "plane" "(0 -2304 32) (-480 -2304 32) (-480 -2112 32)" + "material" "DEV/VALUESAND40" + "uaxis" "[1 0 0 0] 200" + "vaxis" "[0 -1 0 0] 200" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8721" + "plane" "(0 -2112 0) (-480 -2112 0) (-480 -2304 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8720" + "plane" "(-480 -2304 32) (-480 -2304 0) (-480 -2112 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8719" + "plane" "(0 -2112 32) (0 -2112 0) (0 -2304 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8718" + "plane" "(-480 -2112 32) (-480 -2112 0) (0 -2112 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8717" + "plane" "(0 -2304 32) (0 -2304 0) (-480 -2304 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12433" + side + { + "id" "8734" + "plane" "(-512 -2112 160) (-480 -2112 160) (-480 -2144 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8733" + "plane" "(-512 -2144 32) (-480 -2144 32) (-480 -2112 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8732" + "plane" "(-512 -2112 160) (-512 -2144 160) (-512 -2144 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8731" + "plane" "(-480 -2112 32) (-480 -2144 32) (-480 -2144 160)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8730" + "plane" "(-480 -2112 160) (-512 -2112 160) (-512 -2112 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8729" + "plane" "(-480 -2144 32) (-512 -2144 32) (-512 -2144 160)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12453" + side + { + "id" "8775" + "plane" "(-128 -2560 32) (-128 -2688 32) (0 -2688 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8774" + "plane" "(-128 -2688 32) (-128 -2560 32) (-128 -2688 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8773" + "plane" "(0 -2560 32) (0 -2688 32) (0 -2688 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8772" + "plane" "(0 -2688 32) (-128 -2688 32) (-128 -2688 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8771" + "plane" "(0 -2688 64) (-128 -2688 64) (-128 -2560 32)" + "material" "SOLUTION2/OUTDOOR/PATH" + "uaxis" "[1 0 0 192] 0.25" + "vaxis" "[0 -0.970142 0.242536 2.94116] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12470" + side + { + "id" "8781" + "plane" "(-128 -2656 56) (-320 -2656 56) (-288 -2624 56)" + "material" "SOLUTION2/OUTDOOR/PATH" + "uaxis" "[1 0 0 192] 0.25" + "vaxis" "[0 -1 0 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8780" + "plane" "(-128 -2624 48) (-288 -2624 48) (-320 -2656 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8779" + "plane" "(-320 -2656 48) (-288 -2624 48) (-288 -2624 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8778" + "plane" "(-288 -2624 48) (-128 -2624 48) (-128 -2624 56)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8777" + "plane" "(-128 -2656 48) (-320 -2656 48) (-320 -2656 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8776" + "plane" "(-128 -2624 48) (-128 -2656 48) (-128 -2656 56)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12471" + side + { + "id" "8787" + "plane" "(-128 -2624 48) (-288 -2624 48) (-256 -2592 48)" + "material" "SOLUTION2/OUTDOOR/PATH" + "uaxis" "[1 0 0 192] 0.25" + "vaxis" "[0 -1 0 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8786" + "plane" "(-128 -2592 40) (-256 -2592 40) (-288 -2624 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8785" + "plane" "(-288 -2624 40) (-256 -2592 40) (-256 -2592 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8784" + "plane" "(-256 -2592 40) (-128 -2592 40) (-128 -2592 48)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8783" + "plane" "(-128 -2624 40) (-288 -2624 40) (-288 -2624 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8782" + "plane" "(-128 -2592 40) (-128 -2624 40) (-128 -2624 48)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12472" + side + { + "id" "8793" + "plane" "(-128 -2592 40) (-256 -2592 40) (-224 -2560 40)" + "material" "SOLUTION2/OUTDOOR/PATH" + "uaxis" "[1 0 0 192] 0.25" + "vaxis" "[0 -1 0 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8792" + "plane" "(-128 -2560 32) (-224 -2560 32) (-256 -2592 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8791" + "plane" "(-256 -2592 32) (-224 -2560 32) (-224 -2560 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8790" + "plane" "(-224 -2560 32) (-128 -2560 32) (-128 -2560 40)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8789" + "plane" "(-128 -2592 32) (-256 -2592 32) (-256 -2592 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8788" + "plane" "(-128 -2560 32) (-128 -2592 32) (-128 -2592 40)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12473" + side + { + "id" "8799" + "plane" "(-128 -2688 64) (-352 -2688 64) (-320 -2656 64)" + "material" "SOLUTION2/OUTDOOR/PATH" + "uaxis" "[1 0 0 192] 0.25" + "vaxis" "[0 -1 0 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8798" + "plane" "(-128 -2656 56) (-320 -2656 56) (-352 -2688 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8797" + "plane" "(-352 -2688 56) (-320 -2656 56) (-320 -2656 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8796" + "plane" "(-320 -2656 56) (-128 -2656 56) (-128 -2656 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8795" + "plane" "(-128 -2688 56) (-352 -2688 56) (-352 -2688 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8794" + "plane" "(-128 -2656 56) (-128 -2688 56) (-128 -2688 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12476" + side + { + "id" "8811" + "plane" "(-480 -2080 160) (-352 -2080 160) (-352 -2112 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8810" + "plane" "(-480 -2112 32) (-352 -2112 32) (-352 -2080 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8809" + "plane" "(-480 -2080 160) (-480 -2112 160) (-480 -2112 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8808" + "plane" "(-352 -2080 32) (-352 -2112 32) (-352 -2112 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8807" + "plane" "(-352 -2080 160) (-480 -2080 160) (-480 -2080 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8806" + "plane" "(-352 -2112 32) (-480 -2112 32) (-480 -2112 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12479" + side + { + "id" "8823" + "plane" "(-160 -2080 160) (-32 -2080 160) (-32 -2112 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8822" + "plane" "(-160 -2112 32) (-32 -2112 32) (-32 -2080 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8821" + "plane" "(-160 -2080 160) (-160 -2112 160) (-160 -2112 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8820" + "plane" "(-32 -2080 32) (-32 -2112 32) (-32 -2112 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8819" + "plane" "(-32 -2080 160) (-160 -2080 160) (-160 -2080 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8818" + "plane" "(-32 -2112 32) (-160 -2112 32) (-160 -2112 160)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12518" + side + { + "id" "8878" + "plane" "(-352 -2112 160) (-352 -2080 160) (-160 -2080 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8877" + "plane" "(-352 -2080 32) (-352 -2112 32) (-320 -2144 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8876" + "plane" "(-352 -2112 32) (-352 -2080 32) (-352 -2080 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8875" + "plane" "(-160 -2080 32) (-160 -2112 32) (-160 -2112 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8874" + "plane" "(-352 -2080 32) (-160 -2080 32) (-160 -2080 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8873" + "plane" "(-320 -2144 32) (-352 -2112 32) (-352 -2112 160)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8872" + "plane" "(-160 -2112 32) (-192 -2144 32) (-192 -2144 160)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8871" + "plane" "(-192 -2144 32) (-224 -2160 32) (-224 -2160 160)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8870" + "plane" "(-288 -2160 32) (-320 -2144 32) (-320 -2144 160)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8869" + "plane" "(-224 -2160 32) (-288 -2160 32) (-288 -2160 160)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12519" + side + { + "id" "8890" + "plane" "(-48 -2208 288) (-6.19888e-05 -2208 288) (-6.19888e-05 -2256 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8889" + "plane" "(-48 -2256 32) (-6.19888e-05 -2256 32) (-6.19888e-05 -2208 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8888" + "plane" "(-48 -2208 288) (-48 -2256 288) (-48 -2256 32)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8887" + "plane" "(-6.19888e-05 -2208 32) (-6.19888e-05 -2256 32) (-6.19888e-05 -2256 288)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8886" + "plane" "(-6.19888e-05 -2208 288) (-48 -2208 288) (-48 -2208 32)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8885" + "plane" "(-6.19888e-05 -2256 32) (-48 -2256 32) (-48 -2256 288)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12521" + side + { + "id" "8902" + "plane" "(-512 -2144 288) (-480 -2144 288) (-480 -2272 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8901" + "plane" "(-512 -2272 192) (-480 -2272 192) (-480 -2144 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8900" + "plane" "(-512 -2144 288) (-512 -2272 288) (-512 -2272 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8899" + "plane" "(-480 -2144 192) (-480 -2272 192) (-480 -2272 288)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8898" + "plane" "(-480 -2144 288) (-512 -2144 288) (-512 -2144 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8897" + "plane" "(-480 -2272 192) (-512 -2272 192) (-512 -2272 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12532" + side + { + "id" "8914" + "plane" "(128 -2560 32) (0 -2560 32) (0 -2304 32)" + "material" "DEV/VALUESAND40" + "uaxis" "[1 0 0 0] 200" + "vaxis" "[0 -1 0 0] 200" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8913" + "plane" "(128 -2304 0) (0 -2304 0) (0 -2560 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8912" + "plane" "(0 -2560 32) (0 -2560 0) (0 -2304 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8911" + "plane" "(128 -2304 32) (128 -2304 0) (128 -2560 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8910" + "plane" "(0 -2304 32) (0 -2304 0) (128 -2304 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8909" + "plane" "(128 -2560 32) (128 -2560 0) (0 -2560 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12554" + side + { + "id" "8926" + "plane" "(-736 -2496 352) (-864 -2624 352) (-1024 -2464 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8925" + "plane" "(-896 -2336 96) (-1024 -2464 96) (-864 -2624 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8924" + "plane" "(-864 -2624 96) (-1024 -2464 96) (-1024 -2464 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8923" + "plane" "(-736 -2496 352) (-896 -2336 288) (-896 -2336 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8922" + "plane" "(-1024 -2464 96) (-896 -2336 96) (-896 -2336 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8921" + "plane" "(-864 -2624 352) (-736 -2496 352) (-736 -2496 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12559" + side + { + "id" "8938" + "plane" "(-640 -2336 352) (-768 -2464 352) (-928 -2304 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8937" + "plane" "(-800 -2176 96) (-928 -2304 96) (-768 -2464 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8936" + "plane" "(-768 -2464 96) (-928 -2304 96) (-928 -2304 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8935" + "plane" "(-640 -2336 352) (-800 -2176 288) (-800 -2176 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8934" + "plane" "(-928 -2304 96) (-800 -2176 96) (-800 -2176 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8933" + "plane" "(-768 -2464 352) (-640 -2336 352) (-640 -2336 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12564" + side + { + "id" "8950" + "plane" "(-672 -2272 288) (-512 -2272 288) (-512 -2304 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8949" + "plane" "(-672 -2304 32) (-512 -2304 32) (-512 -2272 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8948" + "plane" "(-672 -2272 288) (-672 -2304 288) (-672 -2304 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8947" + "plane" "(-512 -2272 32) (-512 -2304 32) (-512 -2304 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8946" + "plane" "(-512 -2272 288) (-672 -2272 288) (-672 -2272 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8945" + "plane" "(-512 -2304 32) (-672 -2304 32) (-672 -2304 288)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12580" + side + { + "id" "8962" + "plane" "(-512 -2272 288) (-480 -2272 288) (-480 -2304 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8961" + "plane" "(-512 -2304 192) (-480 -2304 192) (-480 -2272 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8960" + "plane" "(-512 -2272 288) (-512 -2304 288) (-512 -2304 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8959" + "plane" "(-480 -2272 192) (-480 -2304 192) (-480 -2304 288)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8958" + "plane" "(-480 -2272 288) (-512 -2272 288) (-512 -2272 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8957" + "plane" "(-480 -2304 192) (-512 -2304 192) (-512 -2304 288)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12602" + side + { + "id" "8974" + "plane" "(-512 -2112 288) (-480 -2112 288) (-480 -2144 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8973" + "plane" "(-512 -2144 192) (-480 -2144 192) (-480 -2112 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8972" + "plane" "(-512 -2112 288) (-512 -2144 288) (-512 -2144 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8971" + "plane" "(-480 -2112 192) (-480 -2144 192) (-480 -2144 288)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8970" + "plane" "(-480 -2112 288) (-512 -2112 288) (-512 -2112 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8969" + "plane" "(-480 -2144 192) (-512 -2144 192) (-512 -2144 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12677" + side + { + "id" "9022" + "plane" "(-512 -2080 352) (0 -2080 352) (0 -2416 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9021" + "plane" "(-512 -2304 288) (-384 -2368 288) (-256 -2400 288)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9020" + "plane" "(-512 -2080 288) (-512 -2080 352) (-512 -2304 352)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9019" + "plane" "(0 -2080 288) (0 -2080 352) (-512 -2080 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9018" + "plane" "(-256 -2400 288) (-256 -2400 352) (0 -2416 352)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9017" + "plane" "(-512 -2304 288) (-512 -2304 352) (-384 -2368 352)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9016" + "plane" "(-384 -2368 288) (-384 -2368 352) (-256 -2400 352)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9015" + "plane" "(0 -2416 288) (0 -2416 352) (0 -2080 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "230 107 0" + "groupid" "12683" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12678" + side + { + "id" "9030" + "plane" "(512 -2080 352) (512 -2304 352) (384 -2368 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9029" + "plane" "(256 -2400 288) (384 -2368 288) (512 -2304 288)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9028" + "plane" "(512 -2304 288) (512 -2304 352) (512 -2080 352)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9027" + "plane" "(512 -2080 288) (512 -2080 352) (0 -2080 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9026" + "plane" "(0 -2416 288) (0 -2416 352) (256 -2400 352)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9025" + "plane" "(384 -2368 288) (384 -2368 352) (512 -2304 352)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9024" + "plane" "(256 -2400 288) (256 -2400 352) (384 -2368 352)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9023" + "plane" "(0 -2080 288) (0 -2080 352) (0 -2416 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "230 107 0" + "groupid" "12683" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12690" + side + { + "id" "9058" + "plane" "(-1184 -2304 96) (-512 -2304 96) (-512 -2336 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9057" + "plane" "(-512 -2304 0) (-1184 -2304 0) (-832 -2656 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9056" + "plane" "(-512 -2304 0) (-512 -2304 96) (-1184 -2304 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9055" + "plane" "(-512 -2336 96) (-512 -2336 0) (-832 -2656 0)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9054" + "plane" "(-512 -2336 0) (-512 -2336 96) (-512 -2304 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9053" + "plane" "(-832 -2656 96) (-832 -2656 0) (-1184 -2304 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12993" + side + { + "id" "9305" + "plane" "(1024 -2816 608) (1024 -2784 608) (1056 -2784 608)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9304" + "plane" "(1024 -2784 32) (1024 -2816 32) (1056 -2816 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9303" + "plane" "(1024 -2816 32) (1024 -2784 32) (1024 -2784 608)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9302" + "plane" "(1056 -2784 32) (1056 -2816 32) (1056 -2816 608)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9301" + "plane" "(1024 -2784 32) (1056 -2784 32) (1056 -2784 608)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9300" + "plane" "(1056 -2816 32) (1024 -2816 32) (1024 -2816 608)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13002" + side + { + "id" "9311" + "plane" "(0 -2240 288) (0 -2080 288) (128 -2080 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9310" + "plane" "(0 -2080 32) (0 -2240 32) (128 -2240 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9309" + "plane" "(0 -2240 32) (0 -2080 32) (0 -2080 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9308" + "plane" "(0 -2080 32) (128 -2080 32) (128 -2080 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9307" + "plane" "(128 -2240 32) (0 -2240 32) (0 -2240 288)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9306" + "plane" "(128 -2080 32) (128 -2240 32) (128 -2240 288)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13177" + side + { + "id" "9503" + "plane" "(512 -2560 32) (512 -2080 32) (640 -2080 32)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9502" + "plane" "(512 -2080 0) (512 -2560 0) (640 -2560 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9501" + "plane" "(512 -2560 0) (512 -2080 0) (512 -2080 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9500" + "plane" "(640 -2080 0) (640 -2560 0) (640 -2560 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9499" + "plane" "(512 -2080 0) (640 -2080 0) (640 -2080 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9498" + "plane" "(640 -2560 0) (512 -2560 0) (512 -2560 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13182" + side + { + "id" "9515" + "plane" "(896 -2560 32) (896 -2080 32) (1024 -2080 32)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9514" + "plane" "(896 -2080 0) (896 -2560 0) (1024 -2560 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9513" + "plane" "(896 -2560 0) (896 -2080 0) (896 -2080 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9512" + "plane" "(1024 -2080 0) (1024 -2560 0) (1024 -2560 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9511" + "plane" "(896 -2080 0) (1024 -2080 0) (1024 -2080 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9510" + "plane" "(1024 -2560 0) (896 -2560 0) (896 -2560 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13183" + side + { + "id" "9527" + "plane" "(896 -2560 32) (640 -2560 32) (640 -2432 32)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9526" + "plane" "(896 -2432 0) (640 -2432 0) (640 -2560 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9525" + "plane" "(640 -2560 32) (640 -2560 0) (640 -2432 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9524" + "plane" "(896 -2432 32) (896 -2432 0) (896 -2560 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9523" + "plane" "(640 -2432 32) (640 -2432 0) (896 -2432 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9522" + "plane" "(896 -2560 32) (896 -2560 0) (640 -2560 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13186" + side + { + "id" "9539" + "plane" "(640 -2432 32) (640 -2080 32) (896 -2080 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9538" + "plane" "(640 -2080 0) (640 -2432 0) (896 -2432 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9537" + "plane" "(640 -2432 0) (640 -2080 0) (640 -2080 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9536" + "plane" "(896 -2080 0) (896 -2432 0) (896 -2432 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9535" + "plane" "(640 -2080 0) (896 -2080 0) (896 -2080 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9534" + "plane" "(896 -2432 0) (640 -2432 0) (640 -2432 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13428" + side + { + "id" "9909" + "plane" "(496 -1840 288) (128 -1840 288) (128 -1536 288)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9908" + "plane" "(128 -1536 32) (128 -1840 32) (496 -1840 32)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9907" + "plane" "(128 -1840 32) (128 -1536 32) (128 -1536 288)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9906" + "plane" "(128 -1536 32) (496 -1840 32) (496 -1840 288)" + "material" "TERRI/TOOLS/TOOLS_HINT" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9905" + "plane" "(496 -1840 32) (128 -1840 32) (128 -1840 288)" + "material" "TERRI/TOOLS/TOOLS_INVISKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13430" + side + { + "id" "9915" + "plane" "(220 -1344 328) (404 -1344 328) (404 -1416 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9914" + "plane" "(220 -1416 288) (404 -1416 288) (404 -1344 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9913" + "plane" "(220 -1344 328) (220 -1416 328) (220 -1416 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9912" + "plane" "(404 -1344 288) (404 -1416 288) (404 -1416 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9911" + "plane" "(404 -1344 328) (220 -1344 328) (220 -1344 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9910" + "plane" "(404 -1416 288) (220 -1416 288) (220 -1416 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13429" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13431" + side + { + "id" "9921" + "plane" "(128 -1416 328) (496 -1416 328) (496 -1920 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9920" + "plane" "(128 -1920 288) (496 -1920 288) (496 -1416 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9919" + "plane" "(128 -1416 328) (128 -1920 328) (128 -1920 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9918" + "plane" "(496 -1416 288) (496 -1920 288) (496 -1920 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9917" + "plane" "(496 -1416 328) (128 -1416 328) (128 -1416 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9916" + "plane" "(496 -1920 288) (128 -1920 288) (128 -1920 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13429" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13432" + side + { + "id" "9927" + "plane" "(220 -1920 328) (404 -1920 328) (404 -1992 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9926" + "plane" "(220 -1992 288) (404 -1992 288) (404 -1920 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9925" + "plane" "(220 -1920 328) (220 -1992 328) (220 -1992 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9924" + "plane" "(404 -1920 288) (404 -1992 288) (404 -1992 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9923" + "plane" "(404 -1920 328) (220 -1920 328) (220 -1920 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9922" + "plane" "(404 -1992 288) (220 -1992 288) (220 -1992 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13429" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13433" + side + { + "id" "9933" + "plane" "(128 -1992 328) (496 -1992 328) (496 -2032 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9932" + "plane" "(128 -2032 288) (496 -2032 288) (496 -1992 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 -224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9931" + "plane" "(128 -1992 328) (128 -2032 328) (128 -2032 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9930" + "plane" "(496 -1992 288) (496 -2032 288) (496 -2032 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9929" + "plane" "(496 -1992 328) (128 -1992 328) (128 -1992 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9928" + "plane" "(496 -2032 288) (128 -2032 288) (128 -2032 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13434" + side + { + "id" "9939" + "plane" "(496 -1504 288) (496 -1344 288) (512 -1344 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9938" + "plane" "(496 -1344 48) (496 -1504 48) (512 -1504 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9937" + "plane" "(496 -1504 48) (496 -1344 48) (496 -1344 288)" + "material" "SOLUTION2/GARAGE/BUMPWALL_WHITE" + "uaxis" "[0 1 0 -768] 0.125" + "vaxis" "[0 0 -1 -255] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9936" + "plane" "(512 -1344 48) (512 -1504 48) (512 -1504 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 -384] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9935" + "plane" "(496 -1344 48) (512 -1344 48) (512 -1344 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9934" + "plane" "(512 -1504 48) (496 -1504 48) (496 -1504 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[-1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13435" + side + { + "id" "9945" + "plane" "(496 -1440 48) (496 -1344 48) (512 -1344 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9944" + "plane" "(496 -1344 32) (496 -1440 32) (512 -1440 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9943" + "plane" "(496 -1440 32) (496 -1344 32) (496 -1344 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[0 1 0 -828] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9942" + "plane" "(512 -1344 32) (512 -1440 32) (512 -1440 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[0 -1 0 580.002] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9941" + "plane" "(496 -1344 32) (512 -1344 32) (512 -1344 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9940" + "plane" "(512 -1440 32) (496 -1440 32) (496 -1440 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[-1 0 0 -188] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13436" + side + { + "id" "9951" + "plane" "(128 -1368 288) (128 -1328 288) (192 -1328 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9950" + "plane" "(128 -1328 32) (128 -1368 32) (192 -1368 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9949" + "plane" "(192 -1328 32) (192 -1368 32) (192 -1368 288)" + "material" "SOLUTION2/GARAGE/BUMPWALL_BLUE" + "uaxis" "[0 -1 0 -127.998] 0.125" + "vaxis" "[0 0 1 -255] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9948" + "plane" "(128 -1368 32) (128 -1328 32) (128 -1328 288)" + "material" "SOLUTION2/GARAGE/BUMPWALL_BLUE" + "uaxis" "[0 1 0 -640] 0.125" + "vaxis" "[0 0 1 -255] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9947" + "plane" "(192 -1368 32) (128 -1368 32) (128 -1368 288)" + "material" "SOLUTION2/GARAGE/BUMPWALL_BLUE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 1 -255] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9946" + "plane" "(128 -1328 32) (192 -1328 32) (192 -1328 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 512] 0.25" + "vaxis" "[0 0 -1 832] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13437" + side + { + "id" "9957" + "plane" "(503 -1568 208) (505 -1568 208) (505 -1808 208)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9956" + "plane" "(503 -1808 32) (505 -1808 32) (505 -1568 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9955" + "plane" "(503 -1568 208) (503 -1808 208) (503 -1808 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 34.1333] 3.75" + "vaxis" "[0 0 -1 11.6364] 2.75" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9954" + "plane" "(505 -1568 32) (505 -1808 32) (505 -1808 208)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 34.1333] 3.75" + "vaxis" "[0 0 -1 11.6364] 2.75" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9953" + "plane" "(505 -1568 208) (503 -1568 208) (503 -1568 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9952" + "plane" "(505 -1808 32) (503 -1808 32) (503 -1808 208)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13438" + side + { + "id" "9963" + "plane" "(496 -1568 48) (496 -1440 48) (512 -1440 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9962" + "plane" "(496 -1440 32) (496 -1568 32) (512 -1568 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9961" + "plane" "(496 -1568 32) (496 -1440 32) (496 -1440 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[0 1 0 196] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9960" + "plane" "(512 -1440 32) (512 -1568 32) (512 -1568 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[0 -1 0 -443.998] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9959" + "plane" "(496 -1440 32) (512 -1440 32) (512 -1440 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9958" + "plane" "(512 -1568 32) (496 -1568 32) (496 -1568 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[-1 0 0 -188] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13439" + side + { + "id" "9969" + "plane" "(496 -1840 48) (496 -1808 48) (512 -1808 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9968" + "plane" "(496 -1808 32) (496 -1840 32) (512 -1840 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9967" + "plane" "(496 -1840 32) (496 -1808 32) (496 -1808 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[0 1 0 196] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9966" + "plane" "(512 -1808 32) (512 -1840 32) (512 -1840 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[0 -1 0 -955.995] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9965" + "plane" "(496 -1808 32) (512 -1808 32) (512 -1808 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[1 0 0 -827.996] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9964" + "plane" "(512 -1840 32) (496 -1840 32) (496 -1840 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[-1 0 0 -315.998] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13440" + side + { + "id" "9975" + "plane" "(496 -2016 288) (496 -1504 288) (512 -1504 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9974" + "plane" "(496 -1504 240) (496 -2016 240) (512 -2016 240)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 552.296] 0.27" + "vaxis" "[1 0 0 -576] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9973" + "plane" "(496 -2016 240) (496 -1504 240) (496 -1504 288)" + "material" "SOLUTION2/OUTDOOR/PARKINGCRETE" + "uaxis" "[0 1 0 896] 0.25" + "vaxis" "[0 0 -1 960] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9972" + "plane" "(512 -1504 240) (512 -2016 240) (512 -2016 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 552.296] 0.27" + "vaxis" "[0 0 -1 320] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9971" + "plane" "(496 -1504 240) (512 -1504 240) (512 -1504 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9970" + "plane" "(512 -2016 240) (496 -2016 240) (496 -2016 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13441" + side + { + "id" "9981" + "plane" "(128 -2048 48) (128 -2016 48) (192 -2016 48)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9980" + "plane" "(128 -2016 32) (128 -2048 32) (192 -2048 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9979" + "plane" "(128 -2048 32) (128 -2016 32) (128 -2016 48)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9978" + "plane" "(192 -2016 32) (192 -2048 32) (192 -2048 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[0 -1 0 -699.992] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9977" + "plane" "(128 -2016 32) (192 -2016 32) (192 -2016 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[1 0 0 -443.994] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9976" + "plane" "(192 -2048 32) (128 -2048 32) (128 -2048 48)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13442" + side + { + "id" "9987" + "plane" "(448 -2048 48) (448 -2016 48) (512 -2016 48)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9986" + "plane" "(448 -2016 32) (448 -2048 32) (512 -2048 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9985" + "plane" "(448 -2048 32) (448 -2016 32) (448 -2016 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[0 1 0 836.002] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9984" + "plane" "(512 -2016 32) (512 -2048 32) (512 -2048 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[0 -1 0 -187.994] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9983" + "plane" "(448 -2016 32) (512 -2016 32) (512 -2016 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[1 0 0 -443.996] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9982" + "plane" "(512 -2048 32) (448 -2048 32) (448 -2048 48)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13443" + side + { + "id" "9993" + "plane" "(128 -2048 288) (128 -2016 288) (192 -2016 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9992" + "plane" "(128 -2016 48) (128 -2048 48) (192 -2048 48)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9991" + "plane" "(128 -2048 48) (128 -2016 48) (128 -2016 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9990" + "plane" "(192 -2016 48) (192 -2048 48) (192 -2048 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 -1 0 -896] 0.25" + "vaxis" "[0 0 -1 832] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9989" + "plane" "(128 -2016 48) (192 -2016 48) (192 -2016 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 -768] 0.25" + "vaxis" "[0 0 -1 832] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9988" + "plane" "(192 -2048 48) (128 -2048 48) (128 -2048 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13444" + side + { + "id" "9999" + "plane" "(448 -2048 288) (448 -2016 288) (512 -2016 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9998" + "plane" "(448 -2016 48) (448 -2048 48) (512 -2048 48)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9997" + "plane" "(448 -2048 48) (448 -2016 48) (448 -2016 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 992] 0.25" + "vaxis" "[0 0 -1 832] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9996" + "plane" "(512 -2016 48) (512 -2048 48) (512 -2048 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 -1 0 -896] 0.25" + "vaxis" "[0 0 -1 832] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9995" + "plane" "(448 -2016 48) (512 -2016 48) (512 -2016 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 832] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9994" + "plane" "(512 -2048 48) (448 -2048 48) (448 -2048 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13445" + side + { + "id" "10005" + "plane" "(640 -2016 288) (704 -2016 288) (704 -2048 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10004" + "plane" "(640 -2048 32) (704 -2048 32) (704 -2016 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10003" + "plane" "(640 -2016 288) (640 -2048 288) (640 -2048 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 448] 0.5" + "vaxis" "[0 0 -1 192] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10002" + "plane" "(704 -2016 32) (704 -2048 32) (704 -2048 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10001" + "plane" "(704 -2016 288) (640 -2016 288) (640 -2016 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.5" + "vaxis" "[0 0 -1 192] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10000" + "plane" "(704 -2048 32) (640 -2048 32) (640 -2048 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13446" + side + { + "id" "10011" + "plane" "(192 -1344 32) (448 -1344 32) (448 -2016 32)" + "material" "CONCRETE/BAGGAGE_CONCRETEFLOORA" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10010" + "plane" "(192 -2016 0) (448 -2016 0) (448 -1344 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10009" + "plane" "(448 -1344 0) (448 -2016 0) (448 -2016 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10008" + "plane" "(448 -2016 0) (192 -2016 0) (192 -2016 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10007" + "plane" "(192 -1344 0) (448 -1344 0) (448 -1344 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10006" + "plane" "(192 -2016 0) (192 -1344 0) (192 -1344 32)" + "material" "SOLUTION/BRICKFLOOR" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13447" + side + { + "id" "10017" + "plane" "(736 -2016 32) (512 -2016 32) (512 -1856 32)" + "material" "SOLUTION/GHERR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10016" + "plane" "(736 -1856 0) (512 -1856 0) (512 -2016 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10015" + "plane" "(512 -2016 0) (512 -1856 0) (512 -1856 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10014" + "plane" "(512 -1856 0) (736 -1856 0) (736 -1856 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10013" + "plane" "(736 -2016 0) (512 -2016 0) (512 -2016 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10012" + "plane" "(736 -1856 0) (736 -2016 0) (736 -2016 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13448" + side + { + "id" "10023" + "plane" "(512 -1856 32) (512 -1536 32) (736 -1536 32)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10022" + "plane" "(512 -1536 0) (512 -1856 0) (736 -1856 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10021" + "plane" "(512 -1856 0) (512 -1536 0) (512 -1536 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10020" + "plane" "(736 -1536 0) (736 -1856 0) (736 -1856 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10019" + "plane" "(512 -1536 0) (736 -1536 0) (736 -1536 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10018" + "plane" "(736 -1856 0) (512 -1856 0) (512 -1856 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13450" + side + { + "id" "10035" + "plane" "(128 -2016 32) (704 -2016 32) (704 -2080 32)" + "material" "CONCRETE/BAGGAGE_CONCRETEFLOORA" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10034" + "plane" "(128 -2080 0) (704 -2080 0) (704 -2016 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10033" + "plane" "(704 -2016 0) (704 -2080 0) (704 -2080 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10032" + "plane" "(704 -2080 0) (128 -2080 0) (128 -2080 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10031" + "plane" "(128 -2016 0) (704 -2016 0) (704 -2016 32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_GRAVEL_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10030" + "plane" "(128 -2080 0) (128 -2016 0) (128 -2016 32)" + "material" "SOLUTION/BRICKFLOOR" + "uaxis" "[0 1 0 128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13451" + side + { + "id" "10041" + "plane" "(512 -2040 288) (640 -2040 288) (640 -2048 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10040" + "plane" "(512 -2048 168) (640 -2048 168) (640 -2040 168)" + "material" "DEV/REFLECTIVITY_20" + "uaxis" "[1 0 0 -460] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10039" + "plane" "(512 -2040 288) (512 -2048 288) (512 -2048 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10038" + "plane" "(640 -2040 168) (640 -2048 168) (640 -2048 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10037" + "plane" "(640 -2040 288) (512 -2040 288) (512 -2040 168)" + "material" "DEV/REFLECTIVITY_20" + "uaxis" "[1 0 0 -460] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10036" + "plane" "(640 -2048 168) (512 -2048 168) (512 -2048 288)" + "material" "DEV/REFLECTIVITY_20" + "uaxis" "[1 0 0 -460] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13452" + side + { + "id" "10047" + "plane" "(496 -2016 240) (496 -1840 240) (512 -1840 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10046" + "plane" "(496 -1840 176) (496 -2016 176) (512 -2016 176)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 320] 0.5" + "vaxis" "[-1 0 0 352] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10045" + "plane" "(496 -2016 176) (496 -1840 176) (496 -1840 240)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10044" + "plane" "(512 -1840 176) (512 -2016 176) (512 -2016 240)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 320] 0.5" + "vaxis" "[0 0 -1 192] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10043" + "plane" "(496 -1840 176) (512 -1840 176) (512 -1840 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10042" + "plane" "(512 -2016 176) (496 -2016 176) (496 -2016 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13453" + side + { + "id" "10053" + "plane" "(496 -1840 240) (496 -1808 240) (512 -1808 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10052" + "plane" "(496 -1808 48) (496 -1840 48) (512 -1840 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10051" + "plane" "(496 -1840 48) (496 -1808 48) (496 -1808 240)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10050" + "plane" "(512 -1808 48) (512 -1840 48) (512 -1840 240)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10049" + "plane" "(496 -1808 48) (512 -1808 48) (512 -1808 240)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 -63.998] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10048" + "plane" "(512 -1840 48) (496 -1840 48) (496 -1840 240)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[-1 0 0 -320] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13454" + side + { + "id" "10059" + "plane" "(496 -1568 240) (496 -1504 240) (512 -1504 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10058" + "plane" "(496 -1504 48) (496 -1568 48) (512 -1568 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10057" + "plane" "(496 -1568 48) (496 -1504 48) (496 -1504 240)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 128] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10056" + "plane" "(512 -1504 48) (512 -1568 48) (512 -1568 240)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 128] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10055" + "plane" "(496 -1504 48) (512 -1504 48) (512 -1504 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10054" + "plane" "(512 -1568 48) (496 -1568 48) (496 -1568 240)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[-1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13455" + side + { + "id" "10065" + "plane" "(496 -1808 240) (496 -1568 240) (512 -1568 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10064" + "plane" "(496 -1568 208) (496 -1808 208) (512 -1808 208)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 552.296] 0.27" + "vaxis" "[1 0 0 -576] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10063" + "plane" "(496 -1808 208) (496 -1568 208) (496 -1568 240)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 552.296] 0.27" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10062" + "plane" "(512 -1568 208) (512 -1808 208) (512 -1808 240)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 552.296] 0.27" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10061" + "plane" "(496 -1568 208) (512 -1568 208) (512 -1568 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10060" + "plane" "(512 -1808 208) (496 -1808 208) (496 -1808 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13456" + side + { + "id" "10071" + "plane" "(448 -1344 32) (512 -1344 32) (512 -2016 32)" + "material" "SOLUTION2/OUTDOOR/PATH" + "uaxis" "[1 0 0 -256] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10070" + "plane" "(448 -2016 0) (512 -2016 0) (512 -1344 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10069" + "plane" "(512 -1344 0) (512 -2016 0) (512 -2016 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10068" + "plane" "(512 -2016 0) (448 -2016 0) (448 -2016 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10067" + "plane" "(448 -1344 0) (512 -1344 0) (512 -1344 32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_GRAVEL_BLEND_001" + "uaxis" "[1 0 0 -192] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10066" + "plane" "(448 -2016 0) (448 -1344 0) (448 -1344 32)" + "material" "SOLUTION/BRICKFLOOR" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13457" + side + { + "id" "10077" + "plane" "(128 -1344 32) (192 -1344 32) (192 -2016 32)" + "material" "SOLUTION2/OUTDOOR/PATH" + "uaxis" "[1 0 0 -768] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10076" + "plane" "(128 -2016 0) (192 -2016 0) (192 -1344 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10075" + "plane" "(192 -1344 0) (192 -2016 0) (192 -2016 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10074" + "plane" "(192 -2016 0) (128 -2016 0) (128 -2016 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10073" + "plane" "(128 -1344 0) (192 -1344 0) (192 -1344 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10072" + "plane" "(128 -2016 0) (128 -1344 0) (128 -1344 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13485" + side + { + "id" "10089" + "plane" "(404 -1344 328) (496 -1344 328) (496 -1416 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10088" + "plane" "(404 -1416 288) (496 -1416 288) (496 -1344 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10087" + "plane" "(404 -1344 328) (404 -1416 328) (404 -1416 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10086" + "plane" "(496 -1344 288) (496 -1416 288) (496 -1416 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10085" + "plane" "(496 -1344 328) (404 -1344 328) (404 -1344 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10084" + "plane" "(496 -1416 288) (404 -1416 288) (404 -1416 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13484" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13486" + side + { + "id" "10095" + "plane" "(128 -1344 328) (220 -1344 328) (220 -1416 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10094" + "plane" "(128 -1416 288) (220 -1416 288) (220 -1344 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 208] 0.25" + "vaxis" "[0 -1 0 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10093" + "plane" "(128 -1344 328) (128 -1416 328) (128 -1416 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10092" + "plane" "(220 -1344 288) (220 -1416 288) (220 -1416 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 29.8772] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10091" + "plane" "(220 -1344 328) (128 -1344 328) (128 -1344 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10090" + "plane" "(220 -1416 288) (128 -1416 288) (128 -1416 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13484" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13488" + side + { + "id" "10101" + "plane" "(128 -1920 328) (220 -1920 328) (220 -1992 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10100" + "plane" "(128 -1992 288) (220 -1992 288) (220 -1920 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 208] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10099" + "plane" "(128 -1920 328) (128 -1992 328) (128 -1992 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10098" + "plane" "(220 -1920 288) (220 -1992 288) (220 -1992 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 29.8772] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10097" + "plane" "(220 -1920 328) (128 -1920 328) (128 -1920 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 29.8772] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10096" + "plane" "(220 -1992 288) (128 -1992 288) (128 -1992 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13487" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13489" + side + { + "id" "10107" + "plane" "(404 -1920 328) (496 -1920 328) (496 -1992 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10106" + "plane" "(404 -1992 288) (496 -1992 288) (496 -1920 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10105" + "plane" "(404 -1920 328) (404 -1992 328) (404 -1992 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 29.8772] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10104" + "plane" "(496 -1920 288) (496 -1992 288) (496 -1992 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10103" + "plane" "(496 -1920 328) (404 -1920 328) (404 -1920 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 29.8772] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10102" + "plane" "(496 -1992 288) (404 -1992 288) (404 -1992 328)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "groupid" "13487" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14212" + side + { + "id" "10119" + "plane" "(512 -2592 96) (512 -2560 96) (768 -2560 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10118" + "plane" "(512 -2560 32) (512 -2592 32) (768 -2592 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10117" + "plane" "(512 -2592 32) (512 -2560 32) (512 -2560 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10116" + "plane" "(768 -2560 32) (768 -2592 32) (768 -2592 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10115" + "plane" "(512 -2560 32) (768 -2560 32) (768 -2560 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10114" + "plane" "(768 -2592 32) (512 -2592 32) (512 -2592 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 135" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14216" + side + { + "id" "10131" + "plane" "(512 -2592 32) (128 -2592 32) (128 -2080 32)" + "material" "DEV/VALUESAND40" + "uaxis" "[1 0 0 0] 200" + "vaxis" "[0 -1 0 0] 200" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10130" + "plane" "(512 -2080 0) (128 -2080 0) (128 -2592 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10129" + "plane" "(128 -2592 32) (128 -2592 0) (128 -2080 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10128" + "plane" "(512 -2080 32) (512 -2080 0) (512 -2592 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10127" + "plane" "(128 -2080 32) (128 -2080 0) (512 -2080 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10126" + "plane" "(512 -2592 32) (512 -2592 0) (128 -2592 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14223" + side + { + "id" "10143" + "plane" "(128 -2304 32) (0 -2304 32) (0 -2240 32)" + "material" "DEV/VALUESAND40" + "uaxis" "[1 0 0 0] 200" + "vaxis" "[0 -1 0 0] 200" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10142" + "plane" "(128 -2240 0) (0 -2240 0) (0 -2304 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10141" + "plane" "(0 -2304 32) (0 -2304 0) (0 -2240 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10140" + "plane" "(128 -2240 32) (128 -2240 0) (128 -2304 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10139" + "plane" "(0 -2240 32) (0 -2240 0) (128 -2240 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10138" + "plane" "(128 -2304 32) (128 -2304 0) (0 -2304 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "11948" + side + { + "id" "8188" + "plane" "(-1536 -192 416) (-1536 -128 416) (-1440 -128 416)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8187" + "plane" "(-1536 -128 64) (-1536 -192 64) (-1440 -192 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8186" + "plane" "(-1536 -192 64) (-1536 -128 64) (-1536 -128 416)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8185" + "plane" "(-1440 -128 64) (-1440 -192 64) (-1440 -192 416)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8184" + "plane" "(-1536 -128 64) (-1440 -128 64) (-1440 -128 416)" + "material" "DEV/DEV_MEASUREICE01" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8183" + "plane" "(-1440 -192 64) (-1536 -192 64) (-1536 -192 416)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 189 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "11952" + side + { + "id" "8200" + "plane" "(-1824 -192 416) (-1824 -128 416) (-1728 -128 416)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8199" + "plane" "(-1824 -128 64) (-1824 -192 64) (-1728 -192 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8198" + "plane" "(-1824 -192 64) (-1824 -128 64) (-1824 -128 416)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8197" + "plane" "(-1728 -128 64) (-1728 -192 64) (-1728 -192 416)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8196" + "plane" "(-1824 -128 64) (-1728 -128 64) (-1728 -128 416)" + "material" "DEV/DEV_MEASUREICE01" + "uaxis" "[1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8195" + "plane" "(-1728 -192 64) (-1824 -192 64) (-1824 -192 416)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 189 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "11954" + side + { + "id" "8212" + "plane" "(-1728 -192 416) (-1728 -128 416) (-1536 -128 416)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8211" + "plane" "(-1728 -128 192) (-1728 -192 192) (-1536 -192 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8210" + "plane" "(-1728 -192 192) (-1728 -128 192) (-1728 -128 416)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8209" + "plane" "(-1536 -128 192) (-1536 -192 192) (-1536 -192 416)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8208" + "plane" "(-1728 -128 192) (-1536 -128 192) (-1536 -128 416)" + "material" "DEV/DEV_MEASUREICE01" + "uaxis" "[1 0 0 -224] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8207" + "plane" "(-1536 -192 192) (-1728 -192 192) (-1728 -192 416)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 189 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "11957" + side + { + "id" "8224" + "plane" "(-1728 -192 192) (-1728 -128 192) (-1536 -128 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8223" + "plane" "(-1728 -128 64) (-1728 -192 64) (-1536 -192 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8222" + "plane" "(-1728 -192 64) (-1728 -128 64) (-1728 -128 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8221" + "plane" "(-1536 -128 64) (-1536 -192 64) (-1536 -192 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8220" + "plane" "(-1728 -128 64) (-1536 -128 64) (-1536 -128 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8219" + "plane" "(-1536 -192 64) (-1728 -192 64) (-1728 -192 192)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 189 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "11960" + side + { + "id" "8236" + "plane" "(-2016 -128 448) (-2016 576 448) (-1088 576 448)" + "material" "DEV/DEV_MEASUREICE01" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8235" + "plane" "(-2016 576 416) (-2016 -128 416) (-1088 -128 416)" + "material" "DEV/DEV_MEASUREICE01" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8234" + "plane" "(-2016 -128 416) (-2016 576 416) (-2016 576 448)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8233" + "plane" "(-1088 576 416) (-1088 -128 416) (-1088 -128 448)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8232" + "plane" "(-2016 576 416) (-1088 576 416) (-1088 576 448)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8231" + "plane" "(-1088 -128 416) (-2016 -128 416) (-2016 -128 448)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "11733" + side + { + "id" "8123" + "plane" "(-1728 -704 416) (-1664 -704 416) (-1664 -1536 416)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8124" + "plane" "(-1728 -1536 64) (-1664 -1536 64) (-1664 -704 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8125" + "plane" "(-1728 -704 416) (-1728 -1536 416) (-1728 -1536 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8126" + "plane" "(-1664 -704 64) (-1664 -1536 64) (-1664 -1536 416)" + "material" "DEV/DEV_MEASUREWALL01C" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8127" + "plane" "(-1664 -704 416) (-1728 -704 416) (-1728 -704 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8128" + "plane" "(-1664 -1536 64) (-1728 -1536 64) (-1728 -1536 416)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 189 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "11734" + side + { + "id" "8140" + "plane" "(-1344 -704 416) (-1280 -704 416) (-1280 -1536 416)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8139" + "plane" "(-1344 -1536 64) (-1280 -1536 64) (-1280 -704 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8138" + "plane" "(-1344 -704 416) (-1344 -1536 416) (-1344 -1536 64)" + "material" "DEV/DEV_MEASUREWALL01C" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8137" + "plane" "(-1280 -704 64) (-1280 -1536 64) (-1280 -1536 416)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8136" + "plane" "(-1280 -704 416) (-1344 -704 416) (-1344 -704 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8135" + "plane" "(-1280 -1536 64) (-1344 -1536 64) (-1344 -1536 416)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 189 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "11735" + side + { + "id" "8152" + "plane" "(-1728 -384 416) (-1280 -384 416) (-1280 -448 416)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8151" + "plane" "(-1728 -448 64) (-1280 -448 64) (-1280 -384 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8150" + "plane" "(-1728 -384 416) (-1728 -448 416) (-1728 -448 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8149" + "plane" "(-1280 -384 64) (-1280 -448 64) (-1280 -448 416)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8148" + "plane" "(-1280 -384 416) (-1728 -384 416) (-1728 -384 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8147" + "plane" "(-1280 -448 64) (-1728 -448 64) (-1728 -448 416)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 189 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "11738" + side + { + "id" "8164" + "plane" "(-1408 -704 272) (-1344 -704 272) (-1344 -1536 272)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8163" + "plane" "(-1408 -1536 256) (-1344 -1536 256) (-1344 -704 256)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8162" + "plane" "(-1408 -704 272) (-1408 -1536 272) (-1408 -1536 256)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8161" + "plane" "(-1344 -704 256) (-1344 -1536 256) (-1344 -1536 272)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8160" + "plane" "(-1344 -704 272) (-1408 -704 272) (-1408 -704 256)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8159" + "plane" "(-1344 -1536 256) (-1408 -1536 256) (-1408 -1536 272)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 189 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "11741" + side + { + "id" "8176" + "plane" "(-1664 -704 272) (-1600 -704 272) (-1600 -1536 272)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8175" + "plane" "(-1664 -1536 256) (-1600 -1536 256) (-1600 -704 256)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8174" + "plane" "(-1664 -704 272) (-1664 -1536 272) (-1664 -1536 256)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8173" + "plane" "(-1600 -704 256) (-1600 -1536 256) (-1600 -1536 272)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8172" + "plane" "(-1600 -704 272) (-1664 -704 272) (-1664 -704 256)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8171" + "plane" "(-1600 -1536 256) (-1664 -1536 256) (-1664 -1536 272)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 189 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "9499" + side + { + "id" "7659" + "plane" "(112 -896 320) (112 -672 320) (128 -672 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7658" + "plane" "(112 -672 64) (112 -896 64) (128 -896 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7657" + "plane" "(112 -896 64) (112 -672 64) (112 -672 320)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 -1 0 981] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7656" + "plane" "(128 -672 64) (128 -896 64) (128 -896 320)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 -171] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7655" + "plane" "(112 -672 64) (128 -672 64) (128 -672 320)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[1 0 0 21] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7654" + "plane" "(128 -896 64) (112 -896 64) (112 -896 320)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[1 0 0 21] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "9584" + side + { + "id" "7762" + "plane" "(-64 -383.988 64) (-64 -544 64) (-128 -544 64)" + "material" "DEV/VALUESAND30" + "uaxis" "[1 0 0 320] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7761" + "plane" "(-128 -544 32) (-64 -544 32) (-64 -384.003 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7760" + "plane" "(-64 -384.003 32) (-64 -544 32) (-64 -544 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7759" + "plane" "(-64 -544 32) (-128 -544 32) (-128 -544 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7758" + "plane" "(-128 -544 32) (-64 -384.003 32) (-64 -384.003 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 -1 0 661] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "9591" + side + { + "id" "7792" + "plane" "(-128 -704 64) (-64 -704 64) (-64 -928 64)" + "material" "DEV/VALUESAND30" + "uaxis" "[1 0 0 320] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7791" + "plane" "(-64 -928 32) (-64 -704 32) (-128 -704 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7790" + "plane" "(-64 -704 32) (-64 -928 32) (-64 -928 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7789" + "plane" "(-128 -704 32) (-64 -704 32) (-64 -704 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7788" + "plane" "(-64 -928 32) (-128 -704 32) (-128 -704 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 661] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "9599" + side + { + "id" "7826" + "plane" "(-128 -704 64) (-128 -544 64) (-64 -544 64)" + "material" "DEV/VALUESAND30" + "uaxis" "[1 0 0 320] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7825" + "plane" "(-128 -544 32) (-128 -704 32) (-64 -704 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7824" + "plane" "(-128 -704 32) (-128 -544 32) (-128 -544 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7823" + "plane" "(-64 -544 32) (-64 -704 32) (-64 -704 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7822" + "plane" "(-128 -544 32) (-64 -544 32) (-64 -544 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7821" + "plane" "(-64 -704 32) (-128 -704 32) (-128 -704 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8145" + side + { + "id" "5457" + "plane" "(352 32 320) (352 -512 320) (128 -512 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5456" + "plane" "(352 -512 64) (352 32 64) (128 32 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5455" + "plane" "(128 32 320) (128 -512 320) (128 -512 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 -1 0 661] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5454" + "plane" "(352 -512 320) (352 32 320) (352 32 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 -875] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5453" + "plane" "(352 32 320) (128 32 320) (128 32 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[1 0 0 -43] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5452" + "plane" "(128 -512 320) (352 -512 320) (352 -512 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[1 0 0 -43] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8162" + side + { + "id" "5520" + "plane" "(-320 -352 288) (-416 -448 288) (-416 -352 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5519" + "plane" "(-320 -352 32) (-416 -352 32) (-416 -448 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5518" + "plane" "(-416 -352 288) (-416 -448 288) (-416 -448 32)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 21] 0.5" + "vaxis" "[0 0 -1 64] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5517" + "plane" "(-320 -352 288) (-416 -352 288) (-416 -352 32)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[1 0 0 277] 0.5" + "vaxis" "[0 0 -1 64] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5516" + "plane" "(-416 -448 288) (-320 -352 288) (-320 -352 32)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0.707107 0.707107 0 282.881] 0.5" + "vaxis" "[0 0 -1 64] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8168" + side + { + "id" "5532" + "plane" "(-320 -192 288) (-320 -352 288) (-640 -352 288)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5531" + "plane" "(-320 -352 32) (-320 -192 32) (-640 -192 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5530" + "plane" "(-640 -192 288) (-640 -352 288) (-640 -352 32)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 -1 0 277] 0.5" + "vaxis" "[0 0 -1 64] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5529" + "plane" "(-320 -352 288) (-320 -192 288) (-320 -192 32)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 -491] 0.5" + "vaxis" "[0 0 -1 64] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5528" + "plane" "(-320 -192 288) (-640 -192 288) (-640 -192 32)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[1 0 0 277] 0.5" + "vaxis" "[0 0 -1 64] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5527" + "plane" "(-640 -352 288) (-320 -352 288) (-320 -352 32)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[1 0 0 277] 0.5" + "vaxis" "[0 0 -1 64] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8204" + side + { + "id" "5583" + "plane" "(-672 -32 320) (-672 -192 320) (-832 -192 320)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5582" + "plane" "(-672 -192 64) (-672 -32 64) (-832 -32 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5581" + "plane" "(-832 -32 320) (-832 -192 320) (-832 -192 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 -1 0 -427] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5580" + "plane" "(-672 -192 320) (-672 -32 320) (-672 -32 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 213] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5579" + "plane" "(-672 -32 320) (-832 -32 320) (-832 -32 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[1 0 0 917] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5578" + "plane" "(-832 -192 320) (-672 -192 320) (-672 -192 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[1 0 0 917] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8644" + side + { + "id" "6315" + "plane" "(-320 -352 32) (-320 -288 32) (-160 -288 32)" + "material" "DEV/VALUESAND30" + "uaxis" "[1 0 0 320] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6314" + "plane" "(-320 -288 0) (-320 -352 0) (-160 -384 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6313" + "plane" "(-320 -288 0) (-320 -288 32) (-320 -352 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6312" + "plane" "(-160 -288 0) (-160 -288 32) (-320 -288 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6311" + "plane" "(-320 -352 0) (-320 -352 32) (-160 -384 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6310" + "plane" "(-160 -384 0) (-160 -384 32) (-160 -288 32)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8725" + side + { + "id" "6461" + "plane" "(-160 -1472 64) (-160 -1664 64) (-320 -1664 64)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 896] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6460" + "plane" "(-160 -1664 32) (-160 -1472 32) (-320 -1472 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6459" + "plane" "(-320 -1472 64) (-320 -1664 64) (-320 -1664 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6458" + "plane" "(-160 -1664 64) (-160 -1472 64) (-160 -1472 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6457" + "plane" "(-160 -1472 64) (-320 -1472 64) (-320 -1472 32)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[1 0 0 661] 0.5" + "vaxis" "[0 0 -1 64] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6456" + "plane" "(-320 -1664 64) (-160 -1664 64) (-160 -1664 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8727" + side + { + "id" "6473" + "plane" "(-32 -1504 65) (-32 -1632 65) (-192 -1632 65)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -83] 0.5" + "vaxis" "[0 -1 0 64] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6472" + "plane" "(-32 -1632 64) (-32 -1504 64) (-192 -1504 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6471" + "plane" "(-192 -1504 65) (-192 -1632 65) (-192 -1632 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6470" + "plane" "(-32 -1632 65) (-32 -1504 65) (-32 -1504 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6469" + "plane" "(-32 -1504 65) (-192 -1504 65) (-192 -1504 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6468" + "plane" "(-192 -1632 65) (-32 -1632 65) (-32 -1632 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8974" + side + { + "id" "6733" + "plane" "(-64 -1312 64) (-64 -896 64) (-32 -896 64)" + "material" "DEV/VALUESAND30" + "uaxis" "[1 0 0 320] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6732" + "plane" "(-64 -896 32) (-64 -1312 32) (-32 -1312 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6731" + "plane" "(-64 -1312 32) (-64 -896 32) (-64 -896 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 661] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6730" + "plane" "(-32 -896 32) (-32 -1312 32) (-32 -1312 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6729" + "plane" "(-64 -896 32) (-32 -896 32) (-32 -896 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6728" + "plane" "(-32 -1312 32) (-64 -1312 32) (-64 -1312 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8976" + side + { + "id" "6745" + "plane" "(-64 -1504 64) (-64 -1312 64) (64 -1312 64)" + "material" "DEV/VALUESAND30" + "uaxis" "[1 0 0 320] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6744" + "plane" "(-64 -1312 32) (-64 -1504 32) (64 -1504 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6743" + "plane" "(-64 -1504 32) (-64 -1312 32) (-64 -1312 64)" + "material" "VALLEY/NATURE/DESERT_WALL" + "uaxis" "[0 1 0 661] 0.5" + "vaxis" "[0 0 -1 128] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6742" + "plane" "(64 -1312 32) (64 -1504 32) (64 -1504 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6741" + "plane" "(-64 -1312 32) (64 -1312 32) (64 -1312 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6740" + "plane" "(64 -1504 32) (-64 -1504 32) (-64 -1504 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3104" + side + { + "id" "5271" + "plane" "(-1.52588e-05 -2304 32) (-1.52588e-05 -2560 32) (-224 -2560 32)" + "material" "DEV/VALUESAND40" + "uaxis" "[1 0 0 0] 200" + "vaxis" "[0 -1 0 0] 200" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5270" + "plane" "(-1.52588e-05 -2560 0) (-1.52588e-05 -2304 0) (-480 -2304 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5269" + "plane" "(-480 -2304 32) (-224 -2560 32) (-224 -2560 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5268" + "plane" "(-1.52588e-05 -2560 32) (-1.52588e-05 -2304 32) (-1.52588e-05 -2304 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5267" + "plane" "(-1.52588e-05 -2304 32) (-480 -2304 32) (-480 -2304 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5266" + "plane" "(-224 -2560 32) (-1.52588e-05 -2560 32) (-1.52588e-05 -2560 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1913" + side + { + "id" "21017" + "plane" "(1408 -1216 192) (1408 -992 192) (1664 -992 192)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "21016" + "plane" "(1408 -992 96) (1408 -1216 96) (1664 -1216 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "21015" + "plane" "(1408 -1216 96) (1408 -992 96) (1408 -992 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "21014" + "plane" "(1664 -992 96) (1664 -1216 96) (1664 -1216 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "21013" + "plane" "(1408 -992 96) (1664 -992 96) (1664 -992 192)" + "material" "VALLEY/DEV/DEV_ROCK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "21012" + "plane" "(1664 -1216 96) (1408 -1216 96) (1408 -1216 192)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1972" + side + { + "id" "3551" + "plane" "(128 672 128) (160 704 128) (288 576 128)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 384] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3550" + "plane" "(160 704 64) (128 672 64) (256 544 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3549" + "plane" "(128 672 64) (160 704 64) (160 704 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3548" + "plane" "(288 576 64) (256 544 64) (256 544 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3547" + "plane" "(160 704 64) (288 576 64) (288 576 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3546" + "plane" "(256 544 64) (128 672 64) (128 672 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1981" + side + { + "id" "3570" + "plane" "(-288 384 128) (-288 672 128) (128 672 128)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 768] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3569" + "plane" "(-288 672 96) (-288 384 96) (256 384 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3568" + "plane" "(-288 384 96) (-288 672 96) (-288 672 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3567" + "plane" "(256 544 96) (256 384 96) (256 384 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3566" + "plane" "(-288 672 96) (128 672 96) (128 672 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3565" + "plane" "(256 384 96) (-288 384 96) (-288 384 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3564" + "plane" "(128 672 96) (256 544 96) (256 544 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1983" + side + { + "id" "3582" + "plane" "(-256 64 128) (-256 384 128) (128 384 128)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 768] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3581" + "plane" "(-256 384 96) (-256 64 96) (128 64 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3580" + "plane" "(-256 64 96) (-256 384 96) (-256 384 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3579" + "plane" "(128 384 96) (128 64 96) (128 64 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3578" + "plane" "(-256 384 96) (128 384 96) (128 384 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3577" + "plane" "(128 64 96) (-256 64 96) (-256 64 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1986" + side + { + "id" "3594" + "plane" "(-128 64 64) (0 64 64) (0 32 64)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 -1 0 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3593" + "plane" "(-128 32 32) (0 32 32) (0 64 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3592" + "plane" "(-128 64 64) (-128 32 64) (-128 32 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3591" + "plane" "(0 64 32) (0 32 32) (0 32 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3590" + "plane" "(0 64 64) (-128 64 64) (-128 64 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3589" + "plane" "(0 32 32) (-128 32 32) (-128 32 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1988" + side + { + "id" "3606" + "plane" "(-352 32 64) (128 32 64) (128 -192 64)" + "material" "DEV/VALUESAND30" + "uaxis" "[1 0 0 320] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3605" + "plane" "(-352 -192 32) (128 -192 32) (128 32 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3604" + "plane" "(-352 32 64) (-352 -192 64) (-352 -192 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3603" + "plane" "(128 32 32) (128 -192 32) (128 -192 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3602" + "plane" "(128 32 64) (-352 32 64) (-352 32 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3601" + "plane" "(128 -192 32) (-352 -192 32) (-352 -192 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1995" + side + { + "id" "3618" + "plane" "(-64 -896 64) (-64 -192 64) (128 -192 64)" + "material" "DEV/VALUESAND30" + "uaxis" "[1 0 0 320] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3617" + "plane" "(-64 -192 32) (-64 -896 32) (128 -896 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3616" + "plane" "(-64 -896 32) (-64 -192 32) (-64 -192 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3615" + "plane" "(128 -192 32) (128 -896 32) (128 -896 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3614" + "plane" "(-64 -192 32) (128 -192 32) (128 -192 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3613" + "plane" "(128 -896 32) (-64 -896 32) (-64 -896 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2039" + side + { + "id" "3752" + "plane" "(-1280 -1632 64) (-416 -1632 64) (-416 -1856 64)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 896] 0.25" + "vaxis" "[0 -1 0 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3751" + "plane" "(-1280 -1856 0) (-416 -1856 0) (-416 -1632 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3750" + "plane" "(-1280 -1632 64) (-1280 -1856 64) (-1280 -1856 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3749" + "plane" "(-416 -1632 0) (-416 -1856 0) (-416 -1856 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3748" + "plane" "(-416 -1632 64) (-1280 -1632 64) (-1280 -1632 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3747" + "plane" "(-416 -1856 0) (-1280 -1856 0) (-1280 -1856 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2042" + side + { + "id" "3764" + "plane" "(-1280 -1536 64) (-1088 -1536 64) (-1088 -1632 64)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 384] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3763" + "plane" "(-1280 -1632 0) (-1088 -1632 0) (-1088 -1536 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3762" + "plane" "(-1280 -1536 64) (-1280 -1632 64) (-1280 -1632 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3761" + "plane" "(-1088 -1536 0) (-1088 -1632 0) (-1088 -1632 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3760" + "plane" "(-1088 -1536 64) (-1280 -1536 64) (-1280 -1536 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3759" + "plane" "(-1088 -1632 0) (-1280 -1632 0) (-1280 -1632 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2044" + side + { + "id" "3776" + "plane" "(-1376 -1536 64) (-1280 -1536 64) (-1280 -1760 64)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 768] 0.25" + "vaxis" "[0 -1 0 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3775" + "plane" "(-1376 -1760 0) (-1280 -1760 0) (-1280 -1536 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3774" + "plane" "(-1376 -1536 64) (-1376 -1760 64) (-1376 -1760 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3773" + "plane" "(-1280 -1536 0) (-1280 -1760 0) (-1280 -1760 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3772" + "plane" "(-1280 -1536 64) (-1376 -1536 64) (-1376 -1536 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3771" + "plane" "(-1280 -1760 0) (-1376 -1760 0) (-1376 -1760 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2046" + side + { + "id" "3788" + "plane" "(-1632 -1312 64) (-1088 -1312 64) (-1088 -1536 64)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3787" + "plane" "(-1632 -1536 0) (-1088 -1536 0) (-1088 -1312 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3786" + "plane" "(-1632 -1312 64) (-1632 -1536 64) (-1632 -1536 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3785" + "plane" "(-1088 -1312 0) (-1088 -1536 0) (-1088 -1536 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3784" + "plane" "(-1088 -1312 64) (-1632 -1312 64) (-1632 -1312 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3783" + "plane" "(-1088 -1536 0) (-1632 -1536 0) (-1632 -1536 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2049" + side + { + "id" "3800" + "plane" "(-1632 -672 64) (-1376 -672 64) (-1376 -1312 64)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3799" + "plane" "(-1632 -1312 0) (-1376 -1312 0) (-1376 -672 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3798" + "plane" "(-1632 -672 64) (-1632 -1312 64) (-1632 -1312 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3797" + "plane" "(-1376 -672 0) (-1376 -1312 0) (-1376 -1312 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3796" + "plane" "(-1376 -672 64) (-1632 -672 64) (-1632 -672 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3795" + "plane" "(-1376 -1312 0) (-1632 -1312 0) (-1632 -1312 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2051" + side + { + "id" "3812" + "plane" "(-1376 -928 64) (-1312 -928 64) (-1312 -1152 64)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3811" + "plane" "(-1376 -1152 0) (-1312 -1152 0) (-1312 -928 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3810" + "plane" "(-1376 -928 64) (-1376 -1152 64) (-1376 -1152 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3809" + "plane" "(-1312 -928 0) (-1312 -1152 0) (-1312 -1152 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3808" + "plane" "(-1312 -928 64) (-1376 -928 64) (-1376 -928 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3807" + "plane" "(-1312 -1152 0) (-1376 -1152 0) (-1376 -1152 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2054" + side + { + "id" "3824" + "plane" "(-2048 -448 64) (-1088 -448 64) (-1088 -672 64)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3823" + "plane" "(-2048 -672 0) (-1088 -672 0) (-1088 -448 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3822" + "plane" "(-2048 -448 64) (-2048 -672 64) (-2048 -672 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3821" + "plane" "(-1088 -448 0) (-1088 -672 0) (-1088 -672 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3820" + "plane" "(-1088 -448 64) (-2048 -448 64) (-2048 -448 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3819" + "plane" "(-1088 -672 0) (-2048 -672 0) (-2048 -672 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2057" + side + { + "id" "3836" + "plane" "(-2304 -448 96) (-2048 -448 96) (-2048 -672 96)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3835" + "plane" "(-2304 -672 0) (-2048 -672 0) (-2048 -448 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3834" + "plane" "(-2304 -448 96) (-2304 -672 96) (-2304 -672 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3833" + "plane" "(-2048 -448 0) (-2048 -672 0) (-2048 -672 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3832" + "plane" "(-2048 -448 96) (-2304 -448 96) (-2304 -448 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3831" + "plane" "(-2048 -672 0) (-2304 -672 0) (-2304 -672 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2062" + side + { + "id" "3848" + "plane" "(-2368 128 96) (-2048 128 96) (-2048 -448 96)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 640] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3847" + "plane" "(-2368 -448 0) (-2048 -448 0) (-2048 128 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3846" + "plane" "(-2368 128 96) (-2368 -448 96) (-2368 -448 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3845" + "plane" "(-2048 128 0) (-2048 -448 0) (-2048 -448 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3844" + "plane" "(-2048 128 96) (-2368 128 96) (-2368 128 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3843" + "plane" "(-2048 -448 0) (-2368 -448 0) (-2368 -448 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2065" + side + { + "id" "3860" + "plane" "(-1408 96 64) (-1088 96 64) (-1088 -448 64)" + "material" "DEV/DEV_MEASUREICE01" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3859" + "plane" "(-1408 -448 0) (-1088 -448 0) (-1088 96 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3858" + "plane" "(-1408 96 64) (-1408 -448 64) (-1408 -448 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3857" + "plane" "(-1088 96 0) (-1088 -448 0) (-1088 -448 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3856" + "plane" "(-1088 96 64) (-1408 96 64) (-1408 96 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3855" + "plane" "(-1088 -448 0) (-1408 -448 0) (-1408 -448 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2069" + side + { + "id" "3872" + "plane" "(-1824 96 64) (-1440 96 64) (-1440 -128 64)" + "material" "DEV/DEV_MEASUREICE01" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3871" + "plane" "(-1824 -128 0) (-1440 -128 0) (-1440 96 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3870" + "plane" "(-1824 96 64) (-1824 -128 64) (-1824 -128 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3869" + "plane" "(-1440 96 0) (-1440 -128 0) (-1440 -128 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3868" + "plane" "(-1440 96 64) (-1824 96 64) (-1824 96 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3867" + "plane" "(-1440 -128 0) (-1824 -128 0) (-1824 -128 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2071" + side + { + "id" "3884" + "plane" "(-2016 544 64) (-1088 544 64) (-1088 96 64)" + "material" "DEV/DEV_MEASUREICE01" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3883" + "plane" "(-2016 96 0) (-1088 96 0) (-1088 544 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3882" + "plane" "(-2016 544 64) (-2016 96 64) (-2016 96 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3881" + "plane" "(-1088 544 0) (-1088 96 0) (-1088 96 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3880" + "plane" "(-1088 544 64) (-2016 544 64) (-2016 544 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3879" + "plane" "(-1088 96 0) (-2016 96 0) (-2016 96 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2077" + side + { + "id" "3896" + "plane" "(-1088 288 32) (-736 288 32) (-736 32 32)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -896] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3895" + "plane" "(-1088 32 0) (-736 32 0) (-736 288 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3894" + "plane" "(-1088 288 32) (-1088 32 32) (-1088 32 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3893" + "plane" "(-736 288 0) (-736 32 0) (-736 32 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3892" + "plane" "(-736 288 32) (-1088 288 32) (-1088 288 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3891" + "plane" "(-736 32 0) (-1088 32 0) (-1088 32 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2081" + side + { + "id" "3908" + "plane" "(-1088 480 64) (-672 480 64) (-672 288 64)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3907" + "plane" "(-1088 288 0) (-672 288 0) (-672 480 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3906" + "plane" "(-1088 480 64) (-1088 288 64) (-1088 288 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3905" + "plane" "(-672 480 0) (-672 288 0) (-672 288 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3904" + "plane" "(-672 480 64) (-1088 480 64) (-1088 480 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3903" + "plane" "(-672 288 0) (-1088 288 0) (-1088 288 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2089" + side + { + "id" "3920" + "plane" "(-672 480 64) (-448 480 64) (-448 -192 64)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3919" + "plane" "(-672 -192 0) (-448 -192 0) (-448 480 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3918" + "plane" "(-672 480 64) (-672 -192 64) (-672 -192 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3917" + "plane" "(-448 480 0) (-448 -192 0) (-448 -192 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3916" + "plane" "(-448 480 64) (-672 480 64) (-672 480 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3915" + "plane" "(-448 -192 0) (-672 -192 0) (-672 -192 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2095" + side + { + "id" "3932" + "plane" "(-448 32 64) (-352 32 64) (-352 -160 64)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3931" + "plane" "(-448 -160 32) (-352 -160 32) (-352 32 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3930" + "plane" "(-448 32 64) (-448 -160 64) (-448 -160 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3929" + "plane" "(-352 32 32) (-352 -160 32) (-352 -160 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3928" + "plane" "(-352 32 64) (-448 32 64) (-448 32 32)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3927" + "plane" "(-352 -160 32) (-448 -160 32) (-448 -160 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2097" + side + { + "id" "3944" + "plane" "(-1792 896 64) (-1440 896 64) (-1440 544 64)" + "material" "DEV/DEV_MEASUREICE01" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3943" + "plane" "(-1792 544 0) (-1440 544 0) (-1440 896 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3942" + "plane" "(-1792 896 64) (-1792 544 64) (-1792 544 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3941" + "plane" "(-1440 896 0) (-1440 544 0) (-1440 544 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3940" + "plane" "(-1440 896 64) (-1792 896 64) (-1792 896 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3939" + "plane" "(-1440 544 0) (-1792 544 0) (-1792 544 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2099" + side + { + "id" "3956" + "plane" "(-1440 768 64) (-1056 768 64) (-1056 576 64)" + "material" "DEV/DEV_MEASUREICE01" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3955" + "plane" "(-1440 576 0) (-1056 576 0) (-1056 768 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3954" + "plane" "(-1440 768 64) (-1440 576 64) (-1440 576 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3953" + "plane" "(-1056 768 0) (-1056 576 0) (-1056 576 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3952" + "plane" "(-1056 768 64) (-1440 768 64) (-1440 768 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3951" + "plane" "(-1056 576 0) (-1440 576 0) (-1440 576 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2104" + side + { + "id" "3968" + "plane" "(-1056 576 64) (-1056 768 64) (-704 768 64)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 896] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3967" + "plane" "(-1056 768 0) (-1056 576 0) (-704 576 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3966" + "plane" "(-1056 576 0) (-1056 768 0) (-1056 768 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3965" + "plane" "(-704 768 0) (-704 576 0) (-704 576 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3964" + "plane" "(-1056 768 0) (-704 768 0) (-704 768 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3963" + "plane" "(-704 576 0) (-1056 576 0) (-1056 576 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2106" + side + { + "id" "3980" + "plane" "(-256 928 128) (-256 1600 128) (480 1600 128)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3979" + "plane" "(-256 1600 64) (-256 928 64) (480 928 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3978" + "plane" "(-256 928 64) (-256 1600 64) (-256 1600 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3977" + "plane" "(480 1600 64) (480 928 64) (480 928 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3976" + "plane" "(-256 1600 64) (480 1600 64) (480 1600 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3975" + "plane" "(480 928 64) (-256 928 64) (-256 928 128)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2108" + side + { + "id" "3992" + "plane" "(160 864 96) (160 928 96) (480 928 96)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3991" + "plane" "(160 928 64) (160 864 64) (480 864 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3990" + "plane" "(160 864 64) (160 928 64) (160 928 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3989" + "plane" "(480 928 64) (480 864 64) (480 864 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3988" + "plane" "(160 928 64) (480 928 64) (480 928 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3987" + "plane" "(480 864 64) (160 864 64) (160 864 96)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2136" + side + { + "id" "4047" + "plane" "(-800 -1984 64) (-800 -1856 64) (-672 -1856 64)" + "material" "VALLEY/DEV/DEV_GRAVEL" + "uaxis" "[1 0 0 896] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4046" + "plane" "(-800 -1856 0) (-800 -1984 0) (-672 -1856 0)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4045" + "plane" "(-800 -1984 0) (-800 -1856 0) (-800 -1856 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4044" + "plane" "(-800 -1856 0) (-672 -1856 0) (-672 -1856 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4043" + "plane" "(-672 -1856 0) (-800 -1984 0) (-800 -1984 64)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 201" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + hidden + { + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(1.52588e-05 -3072 16) (1.52588e-05 -2112 16) (384 -2112 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(1.52588e-05 -2112 0) (1.52588e-05 -3072 0) (384 -3072 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(1.52588e-05 -3072 0) (1.52588e-05 -2112 0) (1.52588e-05 -2112 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(384 -2112 0) (384 -3072 0) (384 -3072 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(384 -3072 0) (1.52588e-05 -3072 0) (1.52588e-05 -3072 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(1.52588e-05 -2112 0) (384 -2112 0) (384 -2112 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "3" + side + { + "id" "1610" + "plane" "(-1088 32 256) (-1088 288 256) (-672 288 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1609" + "plane" "(-1088 288 224) (-1088 32 224) (-672 32 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1608" + "plane" "(-1088 32 224) (-1088 288 224) (-1088 288 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1607" + "plane" "(-672 288 224) (-672 32 224) (-672 32 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1606" + "plane" "(-1088 288 224) (-672 288 224) (-672 288 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1605" + "plane" "(-672 32 224) (-1088 32 224) (-1088 32 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "4" + side + { + "id" "1616" + "plane" "(512 -2056 32) (512 -1856 32) (648 -1856 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1615" + "plane" "(648 -1856 0) (512 -1856 0) (512 -2056 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1614" + "plane" "(512 -2056 0) (512 -1856 0) (512 -1856 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1613" + "plane" "(512 -1856 0) (648 -1856 0) (648 -1856 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1612" + "plane" "(648 -2056 0) (512 -2056 0) (512 -2056 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1611" + "plane" "(648 -1856 0) (648 -2056 0) (648 -2056 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "5" + side + { + "id" "1622" + "plane" "(464 -1856 32) (176 -1856 32) (176 -1712 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1621" + "plane" "(176 -1712 0) (176 -1856 0) (464 -1856 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1620" + "plane" "(176 -1856 0) (176 -1712 0) (176 -1712 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1619" + "plane" "(464 -1856 0) (176 -1856 0) (176 -1856 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1618" + "plane" "(464 -1712 0) (464 -1856 0) (464 -1856 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1617" + "plane" "(176 -1712 0) (464 -1712 0) (464 -1712 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "6" + side + { + "id" "1628" + "plane" "(176 -1680 32) (176 -1552 32) (464 -1552 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1627" + "plane" "(464 -1552 0) (176 -1552 0) (176 -1680 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1626" + "plane" "(176 -1552 0) (464 -1552 0) (464 -1552 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1625" + "plane" "(176 -1680 0) (176 -1552 0) (176 -1552 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1624" + "plane" "(464 -1552 0) (464 -1680 0) (464 -1680 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1623" + "plane" "(464 -1680 0) (176 -1680 0) (176 -1680 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "7" + side + { + "id" "1634" + "plane" "(496 -1375 32) (496 -1552 32) (176 -1552 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1633" + "plane" "(176 -1552 0) (496 -1552 0) (496 -1375 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1632" + "plane" "(496 -1375 0) (496 -1552 0) (496 -1552 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1631" + "plane" "(496 -1552 0) (176 -1552 0) (176 -1552 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1630" + "plane" "(176 -1375 0) (496 -1375 0) (496 -1375 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1629" + "plane" "(176 -1552 0) (176 -1375 0) (176 -1375 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "8" + side + { + "id" "1640" + "plane" "(160 -1344 32) (496 -1344 32) (496 -1375 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 6] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1639" + "plane" "(496 -1375 0) (496 -1344 0) (160 -1344 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1638" + "plane" "(496 -1344 0) (496 -1375 0) (496 -1375 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1637" + "plane" "(160 -1344 0) (496 -1344 0) (496 -1344 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1636" + "plane" "(160 -1375 0) (160 -1344 0) (160 -1344 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1635" + "plane" "(496 -1375 0) (160 -1375 0) (160 -1375 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "9" + side + { + "id" "1646" + "plane" "(176 -1712 32) (176 -1680 32) (464 -1680 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1645" + "plane" "(176 -1680 0) (176 -1712 0) (464 -1712 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1644" + "plane" "(176 -1712 0) (176 -1680 0) (176 -1680 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1643" + "plane" "(464 -1680 0) (464 -1712 0) (464 -1712 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1642" + "plane" "(176 -1680 0) (464 -1680 0) (464 -1680 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1641" + "plane" "(464 -1712 0) (176 -1712 0) (176 -1712 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "10" + side + { + "id" "1652" + "plane" "(149 -2080 32) (149 -1552 32) (176 -1552 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1651" + "plane" "(149 -1552 0) (149 -2080 0) (176 -2080 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1650" + "plane" "(149 -2080 0) (149 -1552 0) (149 -1552 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1649" + "plane" "(149 -1552 0) (176 -1552 0) (176 -1552 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1648" + "plane" "(176 -2080 0) (149 -2080 0) (149 -2080 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1647" + "plane" "(176 -1552 0) (176 -2080 0) (176 -2080 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "11" + side + { + "id" "1658" + "plane" "(528 -1824 32) (528 -1400 32) (752 -1400 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1657" + "plane" "(528 -1400 0) (528 -1824 0) (752 -1824 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1656" + "plane" "(528 -1824 0) (528 -1400 0) (528 -1400 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1655" + "plane" "(752 -1400 0) (752 -1824 0) (752 -1824 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1654" + "plane" "(528 -1400 0) (752 -1400 0) (752 -1400 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1653" + "plane" "(752 -1824 0) (528 -1824 0) (528 -1824 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "12" + side + { + "id" "1664" + "plane" "(752 -1400 32) (1112 -1400 32) (1112 -1544 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1663" + "plane" "(752 -1544 0) (1112 -1544 0) (1112 -1400 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1662" + "plane" "(752 -1400 32) (752 -1544 32) (752 -1544 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1661" + "plane" "(1112 -1400 0) (1112 -1544 0) (1112 -1544 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1660" + "plane" "(1112 -1400 32) (752 -1400 32) (752 -1400 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1659" + "plane" "(1112 -1544 0) (752 -1544 0) (752 -1544 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "13" + side + { + "id" "1670" + "plane" "(752 -1720 32) (752 -1544 32) (1112 -1544 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1669" + "plane" "(752 -1544 0) (752 -1720 0) (1112 -1720 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1668" + "plane" "(752 -1720 0) (752 -1544 0) (752 -1544 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1667" + "plane" "(1112 -1544 0) (1112 -1720 0) (1112 -1720 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1666" + "plane" "(752 -1544 0) (1112 -1544 0) (1112 -1544 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1665" + "plane" "(1112 -1720 0) (752 -1720 0) (752 -1720 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "14" + side + { + "id" "1676" + "plane" "(408 -1344 32) (312 -1344 32) (312 -1305 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -79] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "1675" + "plane" "(312 -1305 0) (312 -1344 0) (408 -1344 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1674" + "plane" "(408 -1344 0) (312 -1344 0) (312 -1344 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1673" + "plane" "(312 -1344 0) (312 -1305 0) (312 -1305 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1672" + "plane" "(408 -1305 0) (408 -1344 0) (408 -1344 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1671" + "plane" "(312 -1305 0) (408 -1305 0) (408 -1305 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "15" + side + { + "id" "1682" + "plane" "(312 -1344 32) (192 -1344 32) (192 -1280 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -79] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "1681" + "plane" "(192 -1280 0) (192 -1344 0) (312 -1344 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1680" + "plane" "(312 -1344 0) (192 -1344 0) (192 -1344 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1679" + "plane" "(192 -1344 0) (192 -1280 0) (192 -1280 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1678" + "plane" "(192 -1280 0) (312 -1280 0) (312 -1280 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1677" + "plane" "(312 -1280 0) (312 -1344 0) (312 -1344 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "16" + side + { + "id" "1688" + "plane" "(128 -1344 32) (128 -1113 32) (192 -1113 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -79] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "1687" + "plane" "(128 -1113 0) (128 -1344 0) (192 -1344 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1686" + "plane" "(128 -1344 0) (128 -1113 0) (128 -1113 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1685" + "plane" "(192 -1113 0) (192 -1344 0) (192 -1344 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1684" + "plane" "(128 -1113 0) (192 -1113 0) (192 -1113 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1683" + "plane" "(192 -1344 0) (128 -1344 0) (128 -1344 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "17" + side + { + "id" "1694" + "plane" "(160 -1552 32) (128 -1552 32) (128 -1344 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -79] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "1693" + "plane" "(160 -1344 0) (128 -1344 0) (128 -1552 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1692" + "plane" "(128 -1344 0) (160 -1344 0) (160 -1344 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1691" + "plane" "(160 -1552 0) (128 -1552 0) (128 -1552 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1690" + "plane" "(160 -1344 0) (160 -1552 0) (160 -1552 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1689" + "plane" "(128 -1552 0) (128 -1344 0) (128 -1344 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "18" + side + { + "id" "1700" + "plane" "(176 -1552 32) (160 -1552 32) (160 -1375 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1699" + "plane" "(160 -1375 0) (160 -1552 0) (176 -1552 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1698" + "plane" "(176 -1552 0) (160 -1552 0) (160 -1552 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1697" + "plane" "(160 -1552 0) (160 -1375 0) (160 -1375 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1696" + "plane" "(160 -1375 0) (176 -1375 0) (176 -1375 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1695" + "plane" "(176 -1375 0) (176 -1552 0) (176 -1552 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "19" + side + { + "id" "1706" + "plane" "(128 -1536 32) (-360 -1536 32) (-360 -920 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -79] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[128 -920 32]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0.998051 0 0.0416021 -0.99845 0.0332817 0 0.998051 0 0 0.998051 0 0.242278 0.969113 -0.0151424 0 0.000314342 -0.999999 0.000314335 0.00125734 -0.999998 0 0.998051 0 0 0.998051 0" + "row1" "-0.06231 0.99696 -0.0155775 0.0356639 -0.998588 0.0356639 -0.00390193 0.998895 -0.0156077 0.0312005 0.998416 -0.0156002 0.242333 0.969332 -0.0201944 0 1.59155e-05 -1 7.95775e-06 3.1831e-05 -1 0 0.998903 -0.0156079 0.242278 0.969113 -0.0151424" + "row2" "0 0 0 0.0346842 -0.998905 0.0277473 0 0 0 0 0 0 1.18615e-05 0 -1 0 0 -1 3.05176e-06 0 -1 0 0 -1 0 0 0" + "row3" "0 0 0 0.0346842 -0.998905 0.0277473 0 0 0 0 0 -1 6.10352e-06 0 -1 0 0 -1 4.13594e-06 -3.30875e-05 -1 0 0 -1 0 0 0" + "row4" "0 0 0 0.0227149 -0.999456 0.0198755 0 0 -0.999998 0 0 -1 4.57764e-06 0 -1 0 0 -1 0 -0.999024 0 0 0 0 0 0 0" + "row5" "0 0 0 0.0283878 -0.99925 0.0227102 0 0 -1 0 0 -1 6.10352e-06 0 -1 0 0 -1 0.992248 0 0 0 0 0 0 0 0" + "row6" "0 0 0 1.51122e-05 -0.000483592 -1 0 0 -1 0 0 -1 9.24504e-06 0 -1 0 0 -1 0.123915 -0.991317 0 0 0 0 0 0 0" + "row7" "0 0 0 1.02056e-05 -0.000391897 -1 0 0 -1 0 0 0 0.242195 0.96878 -0.0302744 0 0 0 0.992248 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0.0208226 -0.999485 0.0208226 0 0 0 0 0 0 0.994819 0 0 0 0 0 0.992248 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "6.10352e-05 0.00091683 6.10352e-05 6.10352e-05 0.000125842 0.194168 0.097086 6.10352e-05 6.10352e-05" + "row1" "0.000122323 0.000855581 0.000122086 0.000122145 0.000188779 7.6699 3.83495 0.000122085 0.000125842" + "row2" "0 0.00109972 0 0 2.57282 7.42719 5 2.57281 0" + "row3" "0 0.00109972 0 1.31068 5 5 3.68932 3.68932 0" + "row4" "0 0.00134339 0.0485439 5 5 5 0.00012207 0 0" + "row5" "0 0.00134366 3.78641 5 5 5 1.52588e-05 0 0" + "row6" "0 2.52424 5 2.47573 2.47573 2.47573 0.00012302 0 0" + "row7" "0 3.73783 3.73786 0 0.000125885 0 1.52588e-05 0 0" + "row8" "0 0.00146548 0 0 2.28882e-05 0 1.52588e-05 0 0" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "4.95131 4.95131 4.95131 0 255 255 255 255 127.476" + "row1" "195.582 195.582 195.582 0 255 255 255 255 30.2913" + "row2" "255 255 255 131.214 255 255 255 123.786 0" + "row3" "255 255 255 255 255 255 255 66.8447 0" + "row4" "252.524 252.524 255 255 255 255 255 255 2.47573" + "row5" "61.8932 61.8933 255 255 255 255 255 255 193.107" + "row6" "0 0.000127573 126.262 214.612 204.515 191.893 204.515 242.379 255" + "row7" "0 0 0 130.825 115.874 97.1845 115.874 171.942 190.631" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "1705" + "plane" "(-360 -920 32) (-360 -1536 32) (-360 -1536 31)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 -60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1704" + "plane" "(-360 -1536 31) (-360 -1536 32) (128 -1536 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1703" + "plane" "(128 -1536 31) (128 -1536 32) (128 -920 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1702" + "plane" "(-360 -920 31) (-360 -1536 31) (128 -1536 31)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1701" + "plane" "(128 -920 31) (128 -920 32) (-360 -920 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "20" + side + { + "id" "1712" + "plane" "(-112 -920 16) (-360 -920 16) (-360 -832 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 2] 0.125" + "vaxis" "[0 -1 0 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1711" + "plane" "(-360 -832 0) (-360 -920 0) (-112 -920 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1710" + "plane" "(-360 -920 0) (-360 -832 0) (-360 -832 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1709" + "plane" "(-112 -920 0) (-360 -920 0) (-360 -920 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1708" + "plane" "(-112 -832 0) (-112 -920 0) (-112 -920 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1707" + "plane" "(-360 -832 0) (-112 -832 0) (-112 -832 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "21" + side + { + "id" "1718" + "plane" "(-360 -832 16) (-360 -320 16) (-112 -320 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1717" + "plane" "(-360 -320 0) (-360 -832 0) (-112 -832 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1716" + "plane" "(-360 -832 0) (-360 -320 0) (-360 -320 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1715" + "plane" "(-112 -320 0) (-112 -832 0) (-112 -832 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1714" + "plane" "(-360 -320 0) (-112 -320 0) (-112 -320 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1713" + "plane" "(-112 -832 0) (-360 -832 0) (-360 -832 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "22" + side + { + "id" "1724" + "plane" "(-112 -256 16) (-72 -256 16) (-72 -920 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 2] 0.125" + "vaxis" "[0 -1 0 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1723" + "plane" "(-112 -920 0) (-72 -920 0) (-72 -256 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1722" + "plane" "(-72 -256 0) (-72 -920 0) (-72 -920 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1721" + "plane" "(-112 -256 0) (-72 -256 0) (-72 -256 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1720" + "plane" "(-72 -920 0) (-112 -920 0) (-112 -920 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1719" + "plane" "(-112 -920 0) (-112 -256 0) (-112 -256 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "23" + side + { + "id" "1730" + "plane" "(-448 -795 16) (-448 -432 16) (-360 -432 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1729" + "plane" "(-448 -432 0) (-448 -795 0) (-360 -795 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1728" + "plane" "(-448 -795 0) (-448 -432 0) (-448 -432 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1727" + "plane" "(-360 -432 0) (-360 -795 0) (-360 -795 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1726" + "plane" "(-448 -432 0) (-360 -432 0) (-360 -432 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1725" + "plane" "(-360 -795 0) (-448 -795 0) (-448 -795 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "24" + side + { + "id" "1736" + "plane" "(-360 -320 16) (-360 -256 16) (-112 -256 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 2] 0.125" + "vaxis" "[0 -1 0 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1735" + "plane" "(-112 -256 0) (-360 -256 0) (-360 -320 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1734" + "plane" "(-360 -320 0) (-360 -256 0) (-360 -256 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1733" + "plane" "(-360 -256 0) (-112 -256 0) (-112 -256 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1732" + "plane" "(-112 -256 0) (-112 -320 0) (-112 -320 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1731" + "plane" "(-112 -320 0) (-360 -320 0) (-360 -320 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "25" + side + { + "id" "1742" + "plane" "(128 -768 62) (-72 -768 62) (-72 33 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -79] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-72 33 62]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 -0.847297 -0.533557 0.423648 0 0 0 0 0 0 0 1.66911 -0.0828305 0 0 0 0 0 0 0 0 0 0 1.67271 0" + "row1" "0 0 0 0.0955302 -0.962511 0.812006 0 0 1 0 0 -1 0.119935 1.61119 -0.239869 0 3.90754e-05 -1 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0.0955302 -0.962511 0.812006 0 0 1 0 0 -1 0 1.67271 0 0 0 -1 0 0 0 0 0 0 0 0 0" + "row3" "-0.666667 0 0 0.0746736 -1.00316 0.796518 -5.01501e-08 0 1 -5.01501e-08 0 -1 0 1.67271 0 -5.01501e-08 0 -1 -0.666667 0 0 -0.666667 0 0 -0.666667 0 0" + "row4" "0.988447 0 0.123556 0.409781 -0.917496 0.728499 9.54654e-06 0 1 9.54654e-06 0 -1 0.681998 1.22159 0 9.54654e-06 0 -1 0.988447 0 0.123556 0.988447 0 0.123556 0.702428 -1.17955 0.0878035" + "row5" "0.985594 0 -0.140799 0.409781 -0.917496 0.728499 2.32698e-05 1.11645e-05 1 2.32696e-05 0 -1 0.653697 1.25453 -0.0933853 2.32696e-05 2.23288e-05 -1 0.653697 1.25453 -0.0933853 0.985594 0 -0.140799 0.653697 1.25453 -0.0933853" + "row6" "0.996109 0 0 0.902254 -0.432887 0.343716 0.996109 0 0 0.996109 0 0 0.702428 1.17955 -0.0878035 0.996109 0 0 0.996109 0 0 0.996109 0 0 0.996109 0 0" + "row7" "0.996109 0 0 0.909778 -0.416656 0.330828 0.996109 0 0 0.996109 0 0 0.77661 1.04329 0.077661 0.996109 0 0 0.996109 0 0 0.996109 0 0 0.996109 0 0" + "row8" "0 0 0 0.847297 -0.533557 0.423648 0 0 0 0 0 0 0.321022 -1.48245 0.341085 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 0.000143951 0 0 4.5935e-05 0 0 0 3.05176e-05" + "row1" "0 7.97445e-05 0.655735 0.655739 3.16873e-05 0.655739 0 0 0" + "row2" "0 7.97445e-05 2.70492 2.70492 3.05176e-05 2.70492 0 0 0" + "row3" "2.38419e-07 7.65082e-05 4.7541 4.7541 3.05176e-05 4.7541 2.38419e-07 2.38419e-07 2.38419e-07" + "row4" "3.07551e-05 8.36628e-05 3.19672 3.19672 4.18314e-05 3.19672 3.07551e-05 3.07551e-05 4.33266e-05" + "row5" "2.6974e-05 8.36628e-05 1.14753 1.14754 4.07298e-05 1.14754 4.07298e-05 2.6974e-05 4.07298e-05" + "row6" "3.05176e-05 0.000177455 3.05176e-05 3.05176e-05 4.33266e-05 3.05176e-05 3.05176e-05 3.05176e-05 3.05176e-05" + "row7" "3.05176e-05 0.000184373 3.05176e-05 3.05176e-05 4.90007e-05 3.05176e-05 3.05176e-05 3.05176e-05 3.05176e-05" + "row8" "0 0.000143951 0 0 0.000190009 0 0 0 0" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "239.672 255 255 255 195.902 246.639 255 255 255" + "row1" "205 255 255 255 185.492 255 254.344 255 251.066" + "row2" "205 255 255 255 218.279 255 252.295 255 238.77" + "row3" "105 255 255 255 251.066 255 250.246 255 226.475" + "row4" "80 255 255 255 255 255 251.803 253.197 206.967" + "row5" "155 255 255 255 255 255 253.852 251.148 186.475" + "row6" "30 254.099 255 255 255 255 255 250.902 143.443" + "row7" "155 252.049 255 255 255 255 255 252.951 71.7212" + "row8" "180 225 255 255 255 255 255 255 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "1741" + "plane" "(-72 33 61) (128 33 61) (128 33 62)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1740" + "plane" "(-72 -768 62) (128 -768 62) (128 -768 61)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1739" + "plane" "(128 -768 61) (128 -768 62) (128 33 62)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1738" + "plane" "(128 33 61) (-72 33 61) (-72 -768 61)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1737" + "plane" "(-72 33 61) (-72 33 62) (-72 -768 62)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26" + side + { + "id" "1748" + "plane" "(-72 -187 62) (-360 -187 62) (-360 33 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -79] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-72 33 62]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0.992248 0 0 0.992248 0 0 0 0 0 0 0 0 0 0 -0.969697 0 0 0 0 0 0 0 0 0" + "row1" "-0.847297 -0.146545 0.423648 -0.812995 -0.1607 0.464569 -4.65405e-05 -9.19939e-06 -1 -5.13544e-05 -4.44103e-06 -1 -0.000135392 -1.17084e-05 -1 -0.954035 -0.082503 0.238509 -0.954035 -0.082503 0.238509 -0.978669 -0.0564222 0.163111 -0.978669 -0.0564222 0.163111" + "row2" "0 0 0 0.992248 0 0 0.992248 0 0 0 0 0 0 0 0 0 0 -0.969697 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0.992248 0 0 5.64113e-06 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0" + "row4" "0 0.458433 -0.0828305 0 0.457641 0 3.05176e-06 2.90644e-06 -1 0 3.05677e-06 -1 0 2.13606e-06 -1 0 1.26637e-05 -1 0 3.54585e-06 -1 0 0.459421 0 -0.844875 -0.233802 0.168975" + "row5" "0 0 0 0.703222 0.324337 0 5.64113e-06 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0.992248 0 0 6.64847e-06 0 -1 0 0 -1 0 0 -1 0 0 -0.969697 0 0 -1 0 0 0 0 0 0" + "row7" "0 0 0 0.992248 0 0 0.992248 0 0 0 0 0 0 0 0 0 0 -0.969697 0 0 0 0 0 0 0 0 0" + "row8" "0 0.459421 0 0.992248 0 0 0.992248 0 0 0 0 0 0 0 0 0 0 -0.969697 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 1.52588e-05 1.52588e-05 0 0 3.8147e-06 0 0 0" + "row1" "0.000143951 0.000131261 2.29502 4.75404 1.80322 0.000255784 0.000255784 0.000374074 0.000374074" + "row2" "0 1.52588e-05 1.52588e-05 0 0 3.8147e-06 0 0 0" + "row3" "0 1.52588e-05 2.70492 5.2459 3.19672 1.14754 4.09836 2.95082 0" + "row4" "4.5935e-05 1.52588e-05 5 4.75409 6.80328 1.14754 4.09836 3.05176e-05 0.000361089" + "row5" "0 2.15792e-05 2.70492 5.2459 3.19672 5 0 0 0" + "row6" "0 1.52588e-05 2.29508 4.7541 6.80328 3.8147e-06 5 0 0" + "row7" "0 1.52588e-05 1.52588e-05 0 0 3.8147e-06 0 0 0" + "row8" "3.05176e-05 1.52588e-05 1.52588e-05 0 0 3.8147e-06 0 0 0" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "239.672 255 255 255 75 0 0 40.9836 100" + "row1" "255 255 255 255 255 255 255 255 255" + "row2" "255 230 255 205 205 255 255 255 255" + "row3" "255 255 252.705 250.246 253.197 255 255 255 255" + "row4" "195.902 240.164 252.295 255 255 230.902 255 255 255" + "row5" "246.639 228.934 238.77 255 255 255 255 255 255" + "row6" "255 255 252.705 250.246 253.197 255 255 255 255" + "row7" "255 255 255 255 255 255 255 255 0" + "row8" "255 255 255 255 255 255 255 150.492 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "1747" + "plane" "(-360 33 61) (-360 33 62) (-360 -187 62)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1746" + "plane" "(-72 33 62) (-360 33 62) (-360 33 61)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1745" + "plane" "(-72 -187 61) (-360 -187 61) (-360 -187 62)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1744" + "plane" "(-72 33 61) (-360 33 61) (-360 -187 61)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1743" + "plane" "(-72 -187 61) (-72 -187 62) (-72 33 62)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "27" + side + { + "id" "1754" + "plane" "(-16 -951 45) (-16 -795 45) (128 -795 45)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -79] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-16 -951 45]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 -0.999976 0 0 -1 0 0 -0.999999 0 0 -1 0 0 -0.999999 0 0 -0.999999 0 0 0.999977 0 0 0" + "row1" "0 0 -0.999954 0 0 -0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999992 0 0 0" + "row2" "0 0 0.999993 0 0 -1 0 0 0.999996 0 0 -1 0 0 -1 0 0 -0.999998 0 0 0.999999 0 0 -0.999999 0 0 0.999995" + "row3" "0 0 -0.999992 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999999 0 0 1 0 0 -1 0 0 -0.999999 0 0 0" + "row4" "0 0 0 0 0 -0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999999 0 0 0" + "row5" "0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999998 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 -0.999987 0 0 -0.999998 0 0 -0.999998 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 0.00495148 0.277603 0.237122 0.280571 0.18248 0.0779495 0.00528336 0" + "row1" "0.00260925 0.219658 0.432701 0.85144 2.7627 0.832699 0.30978 0.0147667 0" + "row2" "0.0176277 0.263363 0.0331917 2.5783 0.407253 0.0599899 0.174152 0.111187 0.0234528" + "row3" "0.0144997 0.27145 0.878059 1.08813 0.0931473 0.277039 0.437954 0.186878 0" + "row4" "0 0.102749 0.379227 2.07138 3.13923 1.9677 2.74407 0.183949 0" + "row5" "0 0 0.216724 0.355942 0.756725 1.98199 0.341137 0.0753365 0" + "row6" "0 0 0 0.00953293 0.0655136 0.073555 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "255 255 255 255 255 255 255 255 0" + "row1" "0 255 255 255 255 255 255 75 0" + "row2" "0 255 255 255 255 255 255 255 0" + "row3" "0 0 255 255 255 255 255 255 0" + "row4" "0 0 255 255 255 255 255 255 0" + "row5" "0 0 255 255 255 255 192 0 0" + "row6" "0 0 0 0 255 255 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "1753" + "plane" "(-16 -795 43) (-16 -951 43) (128 -951 43)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1752" + "plane" "(-16 -951 43) (-16 -795 43) (-16 -795 45)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 12] 0.25" + "vaxis" "[0 0 -1 -68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1751" + "plane" "(128 -795 43) (128 -951 43) (128 -951 45)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 12] 0.25" + "vaxis" "[0 0 -1 -68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1750" + "plane" "(-16 -795 43) (128 -795 43) (128 -795 45)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1749" + "plane" "(128 -951 43) (-16 -951 43) (-16 -951 45)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "28" + side + { + "id" "1760" + "plane" "(5 -853 58) (-24 -853 58) (-24 -796 58)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -8] 0.125" + "vaxis" "[0 -1 0 104] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-24 -853 58]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 1 0 0 1 0 0 -0.999997 0 0 -0.999999 0 0 0.999997 0 0 1 0 0 -0.999998 0 0 -1 0 0 1" + "row1" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 -0.999999 0 0 0.999999" + "row2" "0 0 -1 0 0 -0.999999 0 0 -0.999998 0 0 -1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row3" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.999999 0 0 1 0 0 1 0 0 1 0 0 -0.999999" + "row4" "0 0 -0.999999 0 0 -1 0 0 1 0 0 -1 0 0 -1 0 0 0.999999 0 0 -0.999979 0 0 0.999993 0 0 0.999979" + "row5" "0 0 0.999998 0 0 0.999998 0 0 -0.999999 0 0 0.999995 0 0 0.999999 0 0 -0.999999 0 0 1 0 0 0.999999 0 0 1" + "row6" "0 0 -0.999998 0 0 1 0 0 -0.999965 0 0 -1 0 0 0.999997 0 0 1 0 0 0.999999 0 0 1 0 0 0.999999" + "row7" "0 0 1 0 0 0.999999 0 0 -1 0 0 -1 0 0 0.999999 0 0 0.999999 0 0 -1 0 0 -0.999998 0 0 0.999999" + "row8" "0 0 -0.999998 0 0 1 0 0 1 0 0 1 0 0 -0.999999 0 0 -1 0 0 -1 0 0 0.999999 0 0 -0.999998" + } + distances + { + "row0" "0.564041 0.424149 0.0382233 0.175125 0.0416946 0.295486 0.0666809 0.5895 0.675934" + "row1" "0.262657 0.244644 0.504829 0.384361 0.464165 0.34639 0.538994 0.213661 0.116646" + "row2" "0.674614 0.120697 0.0743713 0.432144 0.277458 1 0.627022 0.329445 0.741318" + "row3" "0.376366 0.657196 0.28022 0.303886 0.187767 0.41716 0.390038 0.697922 0.106155" + "row4" "0.137085 0.319199 0.258987 0.397972 0.385612 0.155617 0.00580597 0.0170135 0.00558472" + "row5" "0.0745087 0.0590057 0.181686 0.0230255 0.123688 0.0982895 0.273193 0.180351 0.510818" + "row6" "0.0751266 0.549126 0.00337982 0.562225 0.0453644 0.601196 0.231071 0.59333 0.17897" + "row7" "0.496307 0.143082 0.421814 0.693207 0.0855484 0.0920105 0.340477 0.0743866 0.105659" + "row8" "0.0502625 0.372131 0.45652 0.377983 0.20121 0.22718 0.521187 0.18425 0.0546112" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 25 75 100 0 0 0" + "row2" "0 0 50 0 25 0 0 0 0" + "row3" "0 0 0 200 175 255 0 0 0" + "row4" "0 0 250 0 255 200 0 0 0" + "row5" "75 225 100 150 125 75 100 0 0" + "row6" "0 25 25 75 0 0 255 255 0" + "row7" "0 0 50 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "1759" + "plane" "(5 -796 57.625) (-24 -796 57.625) (-24 -853 57.625)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1758" + "plane" "(-24 -853 57.625) (-24 -796 57.625) (-24 -796 58)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-24 -853 57.625]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row1" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row2" "0.999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row3" "0.999999 0 0 0.999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row4" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999999 0 0 0.999999 0 0" + "row5" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999998 0 0 -0.999998 0 0 -0.999998 0 0" + "row6" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999999 0 0 -0.999999 0 0 -0.999998 0 0 0.999991 0 0 0.999998 0 0" + "row7" "-0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row8" "-0.999995 0 0 -0.999996 0 0 -0.999996 0 0 -0.999999 0 0 -0.999998 0 0 -0.999996 0 0 -0.999979 0 0 0.999995 0 0 0.999998 0 0" + } + distances + { + "row0" "0.291739 0.335587 0.378004 0.387829 0.430449 0.469379 0.504623 0.536179 0.564045" + "row1" "0.485592 0.587742 0.453756 0.35775 0.312809 0.271654 0.391333 0.321501 0.262659" + "row2" "0.189352 0.252392 0.311167 1 0.953983 0.844303 0.761181 0.70462 0.674616" + "row3" "0.217524 0.220764 0.248262 0.273748 0.293509 0.305534 0.425751 0.407719 0.376364" + "row4" "0.454765 0.385393 0.321251 0.448881 0.371887 0.302212 0.239853 0.184811 0.137085" + "row5" "0.256649 0.324848 0.353535 0.367231 0.368677 0.357899 0.0751457 0.0746078 0.0745068" + "row6" "0.591612 0.532265 0.470371 0.281219 0.20009 0.123892 0.0526218 0.0137157 0.0751247" + "row7" "0.218937 0.881573 0.882631 0.836334 0.739386 0.657732 0.559801 0.522242 0.496305" + "row8" "0.0254288 0.0270252 0.0317974 0.0825768 0.0579262 0.0323162 0.00574875 0.0217762 0.0502605" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row1" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row2" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row3" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row4" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row5" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row6" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row7" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row8" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 75" + "row6" "50 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 0 0 0 0 0 0 0 0 0 0 9 0 0 0 0" + "row1" "9 9 1 0 0 9 0 0 0 0 0 9 0 0 0 0" + "row2" "0 9 1 0 0 9 0 0 0 0 0 9 0 0 0 0" + "row3" "0 0 0 0 0 9 0 0 0 0 0 9 0 0 0 0" + "row4" "0 0 0 0 0 9 0 0 0 0 0 9 0 0 0 0" + "row5" "0 1 1 0 0 9 9 0 0 9 9 9 0 9 1 0" + "row6" "0 1 1 0 1 9 9 9 9 9 9 9 0 9 1 0" + "row7" "0 0 0 0 1 0 0 9 9 0 0 9 0 0 0 0" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "1757" + "plane" "(-24 -796 57.625) (5 -796 57.625) (5 -796 58)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 -68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-24 -796 57.625]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0.999995 0 0 0.999996 0 0 0.999996 0 0 0.999999 0 0 0.999998 0 0 0.999996 0 0 0.999979 0 0 -0.999995 0 0 -0.999998 0" + "row1" "0 -0.999976 0 0 0.999996 0 0 0.999998 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row2" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row3" "0 0.999998 0 0 0.999999 0 0 0.999999 0 0 0.999999 0 0 0.999999 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row4" "0 -1 0 0 -1 0 0 -1 0 0 -0.999999 0 0 -0.999999 0 0 -0.999999 0 0 -0.999999 0 0 -0.999999 0 0 -0.999999 0" + "row5" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + "row6" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + "row7" "0 -0.999999 0 0 -0.99997 0 0 0.999998 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999999 0 0 0.999999 0" + "row8" "0 1 0 0 1 0 0 1 0 0 0.999999 0 0 0.999999 0 0 0.999999 0 0 0.999997 0 0 -0.99999 0 0 -0.999998 0" + } + distances + { + "row0" "0.0254517 0.0270386 0.0317993 0.0825806 0.0579224 0.0322876 0.0057373 0.0217896 0.0502319" + "row1" "0.00494385 0.0332031 0.0790405 0.363159 0.407471 0.444702 0.428894 0.39624 0.372131" + "row2" "0.317078 0.335938 0.360779 0.584534 0.561768 0.537659 0.512024 0.484985 0.456543" + "row3" "0.0701904 0.0836182 0.103638 0.15094 0.219849 0.275635 0.324829 0.360291 0.377991" + "row4" "0.3526 0.364868 0.376038 0.195313 0.17395 0.163818 0.164978 0.17749 0.201233" + "row5" "0.332825 0.391174 0.434448 0.454773 0.476563 0.479675 0.408142 0.31311 0.227173" + "row6" "0.707703 0.682983 0.659607 0.735046 0.693176 0.650879 0.608093 0.56488 0.521179" + "row7" "0.101868 0.00402832 0.0772705 0.262451 0.281921 0.287048 0.267395 0.231201 0.184265" + "row8" "0.549866 0.488708 0.415222 0.216187 0.150635 0.0907593 0.0366211 0.0118408 0.0546265" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row1" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row2" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row3" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row4" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row5" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row6" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row7" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row8" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "1 0 0 0 0 9 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 9 0 0 0 0 0 0 0 0 0 1" + "row7" "0 1 9 0 0 9 9 0 0 1 1 0 0 1 0 1" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "1756" + "plane" "(5 -853 57.625) (-24 -853 57.625) (-24 -853 58)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1755" + "plane" "(5 -796 57.625) (5 -853 57.625) (5 -853 58)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 -68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "29" + side + { + "id" "1766" + "plane" "(-24 -796 58) (-24 -901 58) (-64 -901 58)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -8] 0.125" + "vaxis" "[0 -1 0 104] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-64 -901 58]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 -1 0 0 0.999996 0 0 -0.999999 0 0 0.999999 0 0 -0.999998 0 0 -1 0 0 -1 0 0 -1 0 0 1" + "row1" "0 0 -0.999998 0 0 -0.999999 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 -1" + "row2" "0 0 -0.999999 0 0 -1 0 0 -1 0 0 -0.999999 0 0 1 0 0 1 0 0 -0.999999 0 0 -1 0 0 0.99999" + "row3" "0 0 -0.999998 0 0 -0.999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -0.999944 0 0 1" + "row4" "0 0 1 0 0 1 0 0 0.999988 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 0.999999 0 0 -1" + "row5" "0 0 -0.999999 0 0 -0.999999 0 0 -1 0 0 1 0 0 0.999999 0 0 -1 0 0 1 0 0 -0.999999 0 0 1" + "row6" "0 0 -0.999997 0 0 -1 0 0 -1 0 0 1 0 0 -1 0 0 -0.999999 0 0 -0.999999 0 0 1 0 0 -1" + "row7" "0 0 1 0 0 1 0 0 0.999999 0 0 -1 0 0 1 0 0 0.999999 0 0 0.999999 0 0 -1 0 0 -0.999999" + "row8" "0 0 -0.999998 0 0 0.999998 0 0 -1 0 0 0.999998 0 0 1 0 0 0.999999 0 0 -1 0 0 1 0 0 -0.999998" + } + distances + { + "row0" "0.435219 0.0298157 0.0842972 0.1147 0.078949 0.456085 0.426682 0.640404 0.912491" + "row1" "0.0557709 0.0954208 0.385254 1 0.657242 0.672325 0.422112 0.88166 0.40667" + "row2" "0.0808487 0.319748 0.371254 0.099411 0.310005 0.572105 0.237862 0.275055 0.0113602" + "row3" "0.0640335 0.152092 0.941803 0.837189 1 0.283577 0.61335 0.00212097 0.263901" + "row4" "0.609123 0.223152 0.0102615 0.957428 0.444092 0.318665 0.273148 0.0981369 0.25415" + "row5" "0.159393 0.18364 0.309891 0.547844 0.0964584 0.537003 0.295441 0.150276 0.417419" + "row6" "0.0431976 0.34272 0.29435 0.451866 0.699837 0.146835 0.140892 0.51516 0.580841" + "row7" "0.750008 0.29834 0.186852 0.365288 0.563744 0.242905 0.16153 0.274643 0.115715" + "row8" "0.0549927 0.0739899 0.286186 0.0681992 0.778618 0.134674 0.469498 0.41909 0.0502625" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0 100 225 150 0" + "row1" "0 255 255 255 255 255 255 255 255" + "row2" "0 255 255 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 75" + "row5" "0 255 0 0 0 0 0 0 255" + "row6" "0 255 255 0 0 0 0 0 0" + "row7" "0 0 175 125 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "1765" + "plane" "(-64 -796 57) (-64 -901 57) (-24 -901 57)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1764" + "plane" "(-24 -796 57) (-24 -901 57) (-24 -901 58)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[0 0 -1 -68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1763" + "plane" "(-24 -901 57) (-64 -901 57) (-64 -901 58)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1762" + "plane" "(-64 -901 57) (-64 -796 57) (-64 -796 58)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 -68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1761" + "plane" "(-64 -796 57) (-24 -796 57) (-24 -796 58)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-64 -796 57]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0.999999 0 0 0.999999 0 0 0.999999 0 0 0.999991 0 0 0.999996 0 0 -0.999999 0 0 -0.999999 0 0 -0.999993 0 0 -0.999998 0" + "row1" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999999 0 0 -0.999999 0 0 -0.999999 0 0 0.999998 0" + "row2" "0 -0.999998 0 0 -0.999998 0 0 -0.999989 0 0 -0.999998 0 0 -0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + "row3" "0 1 0 0 0.999999 0 0 0.999999 0 0 -0.999999 0 0 -0.999958 0 0 0.999999 0 0 0.999999 0 0 0.999993 0 0 0.999998 0" + "row4" "0 -0.999999 0 0 0 0 0 0.999997 0 0 0.999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row5" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999999 0 0 0.999999 0 0 0.999999 0 0 0.999999 0" + "row6" "0 -0.999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + "row7" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row8" "0 -0.999999 0 0 -0.999999 0 0 -0.999999 0 0 -0.999994 0 0 -0.99999 0 0 0.999995 0 0 0.999997 0 0 0.999995 0 0 -0.999998 0" + } + distances + { + "row0" "0.200745 0.164612 0.116028 0.0131836 0.0297852 0.174988 0.184387 0.0175171 0.0549927" + "row1" "0.440491 0.418213 0.53595 0.593018 0.43634 0.210022 0.110291 0.0889893 0.0739746" + "row2" "0.0575562 0.0540771 0.0106201 0.0616455 0.180359 0.435364 0.391663 0.311096 0.286194" + "row3" "0.25177 0.140808 0.0903931 0.10376 0.00286865 0.183533 0.170959 0.0166626 0.0681763" + "row4" "0.0831299 0 0.0442505 0.093811 0.345337 0.735352 0.760742 0.927734 0.778625" + "row5" "0.645569 0.536499 0.368042 0.301392 0.254395 0.132629 0.144348 0.12793 0.134644" + "row6" "0.027771 0.500549 0.685303 0.892761 0.982178 1 1 0.775391 0.469482" + "row7" "0.405029 0.891418 0.832642 0.80072 0.717102 0.353455 0.266296 0.494507 0.419067" + "row8" "0.110046 0.151062 0.145569 0.0185547 0.0117188 0.0254517 0.0367432 0.0235596 0.0502319" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row1" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row2" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row3" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row4" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row5" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row6" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row7" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row8" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "0 0 0 0 0 0 0 0 0 9 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 9 0 0 0 0 0 0" + "row2" "0 0 0 0 9 0 0 0 0 9 0 0 1 0 0 0" + "row3" "0 0 0 0 9 0 0 0 0 0 0 0 1 0 1 0" + "row4" "0 0 0 9 0 0 0 0 0 0 0 0 0 0 1 0" + "row5" "0 9 9 1 0 9 0 0 0 0 0 0 0 0 0 0" + "row6" "0 9 9 0 0 9 0 0 9 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 9 0 0 0 0 0 0 0" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "30" + side + { + "id" "1772" + "plane" "(-24 -1056 50) (-64 -1056 50) (-64 -907 50)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -8] 0.125" + "vaxis" "[0 -1 0 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-64 -1056 50]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 -0.999994 0 0 -0.999999 0 0 1 0 0 1 0 0 1 0 0 0.999999 0 0 0.999997 0 0 1 0 0 0.999999" + "row1" "0 0 0.999999 0 0 1 0 0 -0.999994 0 0 -0.999999 0 0 1 0 0 -1 0 0 0.999999 0 0 1 0 0 0.999994" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999999 0 0 0.999999 0 0 1 0 0 1" + "row3" "0 0 1 0 0 0.999999 0 0 -0.999996 0 0 1 0 0 1 0 0 1 0 0 -0.999997 0 0 1 0 0 -0.999998" + "row4" "0 0 -0.999999 0 0 1 0 0 -0.999999 0 0 1 0 0 1 0 0 1 0 0 0.999999 0 0 -0.999998 0 0 1" + "row5" "0 0 -0.999999 0 0 1 0 0 -1 0 0 1 0 0 0.999999 0 0 1 0 0 1 0 0 0.999998 0 0 0.999999" + "row6" "0 0 0.999999 0 0 -1 0 0 -0.999995 0 0 -1 0 0 -0.999999 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 0.999999 0 0 -1 0 0 1 0 0 1 0 0 -0.999999 0 0 1 0 0 -0.999999" + "row8" "0 0 -0.999999 0 0 1 0 0 0.999999 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + distances + { + "row0" "0.0193253 0.122482 0.427391 0.27356 0.594719 0.128815 0.0397949 0.62413 0.198311" + "row1" "0.132324 0.503525 0.019577 0.164627 0.280403 0.323624 0.126389 0.824722 0.0190735" + "row2" "0.796951 0.364883 0.391243 0.425491 0.398277 0.122681 0.10733 0.284958 0.869881" + "row3" "0.561325 0.141068 0.027832 0.525597 0.442589 0.27784 0.0408173 0.569687 0.0639572" + "row4" "0.119034 0.37204 0.229073 0.600433 0.42823 0.325554 0.145554 0.0480118 0.735725" + "row5" "0.120468 0.718147 0.5 0.972275 0.202232 0.277031 0.523735 0.0578613 0.0888138" + "row6" "0.126587 0.307693 0.0244675 0.36412 0.164032 0.410629 0.474846 0.920174 0.579903" + "row7" "0.768463 0.806229 0.087738 0.5 0.325729 0.478798 0.134148 0.260857 0.12635" + "row8" "0.135361 0.246788 0.154915 0.280655 0.540138 0.778816 0.384956 0.488258 0.461525" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 255 255 255 25 0 0" + "row2" "0 0 0 255 255 255 255 0 0" + "row3" "255 255 255 255 255 255 255 0 0" + "row4" "175 255 255 0 255 255 125 0 0" + "row5" "250 225 0 255 255 255 255 0 0" + "row6" "0 0 0 255 255 255 255 0 0" + "row7" "0 100 255 255 255 255 0 0 0" + "row8" "0 0 255 255 255 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "1771" + "plane" "(-24 -907 49) (-64 -907 49) (-64 -1056 49)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1770" + "plane" "(-64 -907 49) (-24 -907 49) (-24 -907 50)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1769" + "plane" "(-24 -1056 49) (-64 -1056 49) (-64 -1056 50)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1768" + "plane" "(-64 -1056 49) (-64 -907 49) (-64 -907 50)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1767" + "plane" "(-24 -907 49) (-24 -1056 49) (-24 -1056 50)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "31" + side + { + "id" "1778" + "plane" "(5 -814 58) (5 -796 58) (104 -796 58)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -8] 0.125" + "vaxis" "[0 -1 0 104] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[5 -814 58]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 -0.999999 0 0 1 0 0 0.999999 0 0 -0.999999 0 0 -1 0 0 1 0 0 1 0 0 0.999998 0 0 1" + "row1" "0 0 -0.999999 0 0 -0.999997 0 0 -0.999999 0 0 -1 0 0 1 0 0 0.999995 0 0 1 0 0 1 0 0 1" + "row2" "0 0 0.999999 0 0 0.999994 0 0 -0.999999 0 0 -0.999999 0 0 -1 0 0 -0.999999 0 0 1 0 0 -0.999999 0 0 0.999999" + "row3" "0 0 0.999999 0 0 1 0 0 -0.999999 0 0 1 0 0 0.999999 0 0 0.999999 0 0 1 0 0 -1 0 0 1" + "row4" "0 0 -0.999999 0 0 1 0 0 -1 0 0 -1 0 0 -0.999998 0 0 0.999999 0 0 -0.999996 0 0 0.999999 0 0 -1" + "row5" "0 0 -0.999999 0 0 1 0 0 0.999996 0 0 0.999997 0 0 -0.999998 0 0 -1 0 0 -0.999999 0 0 -1 0 0 -1" + "row6" "0 0 -1 0 0 -1 0 0 -0.999998 0 0 -1 0 0 1 0 0 1 0 0 -1 0 0 -0.999999 0 0 1" + "row7" "0 0 -1 0 0 0.999999 0 0 -1 0 0 0.999999 0 0 -1 0 0 1 0 0 -1 0 0 0.999998 0 0 -0.999999" + "row8" "0 0 -0.999998 0 0 -1 0 0 0.999999 0 0 -1 0 0 -0.999999 0 0 0.999999 0 0 1 0 0 -1 0 0 1" + } + distances + { + "row0" "0.17363 0.591629 0.123184 0.203743 0.268562 0.37986 0.456612 0.0698929 0.770134" + "row1" "0.0963211 0.0434341 0.199257 0.342072 0.624451 0.0262909 0.325523 0.31427 0.708328" + "row2" "0.100937 0.0199738 0.142387 0.192726 0.59166 0.186905 0.304756 0.176224 0.210434" + "row3" "0.187515 0.513062 0.0955658 0.388336 0.0834045 0.135498 0.274704 1 0.26844" + "row4" "0.112434 1 0.290215 1 0.0503082 0.216301 0.0276947 0.247139 0.429962" + "row5" "0.114731 0.384102 0.0309601 0.0375671 0.0603027 0.258888 0.179039 0.462425 0.313309" + "row6" "0.576828 0.5159 0.0781631 0.36541 0.535263 0.255646 0.567329 0.193619 0.307854" + "row7" "0.430885 0.226952 0.301949 0.15226 0.418205 0.371101 0.926765 0.0635681 0.0864563" + "row8" "0.0546112 0.508606 0.156967 0.824165 0.111717 0.189285 0.315384 0.401909 0.592285" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0 0 0 100 0" + "row1" "0 50 0 0 0 0 0 0 0" + "row2" "50 255 0 50 25 0 0 100 25" + "row3" "0 225 25 250 175 25 100 225 0" + "row4" "0 150 0 0 0 125 25 50 25" + "row5" "0 0 255 0 100 175 75 0 0" + "row6" "0 0 0 255 125 0 125 50 25" + "row7" "0 0 0 0 50 0 0 0 0" + "row8" "0 0 0 0 0 200 200 50 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "1777" + "plane" "(5 -796 57.625) (5 -814 57.625) (104 -814 57.625)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1776" + "plane" "(5 -814 57.625) (5 -796 57.625) (5 -796 58)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 -68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[5 -814 57.625]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999999 0 0" + "row1" "0.999999 0 0 1 0 0 1 0 0 0.999999 0 0 0.999999 0 0 0.999999 0 0 0.999999 0 0 0.999999 0 0 0.999999 0 0" + "row2" "1 0 0 0.999999 0 0 0.999999 0 0 -0.999996 0 0 -0.999998 0 0 -0.999998 0 0 -0.999999 0 0 -0.999999 0 0 -0.999999 0 0" + "row3" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999999 0 0" + "row4" "0.999997 0 0 0.999999 0 0 0.999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999999 0 0 0.999999 0 0" + "row5" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999999 0 0 -0.999995 0 0 0.999998 0 0 0.999999 0 0" + "row6" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row7" "-1 0 0 -1 0 0 -1 0 0 0.999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row8" "-1 0 0 -1 0 0 -1 0 0 -0.999999 0 0 -0.999999 0 0 -0.999999 0 0 -0.999997 0 0 0.99999 0 0 0.999998 0 0" + } + distances + { + "row0" "0.693107 0.650101 0.597511 0.632595 0.524603 0.42471 0.332916 0.249222 0.173626" + "row1" "0.184659 0.276073 0.357321 0.236065 0.197786 0.164673 0.136724 0.11394 0.0963202" + "row2" "0.251369 0.189233 0.12902 0.0271173 0.0512381 0.0706806 0.0854454 0.0955319 0.10094" + "row3" "0.521268 0.5178 0.522932 0.602413 0.50371 0.412868 0.329888 0.25477 0.187513" + "row4" "0.0423055 0.115438 0.183055 0.539994 0.433007 0.336758 0.251245 0.17647 0.112432" + "row5" "0.712196 0.644749 0.57271 0.428257 0.268865 0.13487 0.0262728 0.0569267 0.114729" + "row6" "0.670937 0.685646 0.699169 1 1 0.919374 0.813822 0.699639 0.576824" + "row7" "0.379128 0.333899 0.2788 0.206173 0.271233 0.326234 0.371176 0.40606 0.430885" + "row8" "0.549852 0.488716 0.415248 0.216168 0.150617 0.0907636 0.0366073 0.0118513 0.0546131" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row1" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row2" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row3" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row4" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row5" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row6" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row7" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row8" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "250 0 0 0 0 0 0 0 50" + "row3" "125 0 0 0 0 0 0 0 0" + "row4" "0 0 0 75 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 0 0 9 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "9 0 0 9 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 9 9 0 0 9 9 0 0 9" + "row3" "0 9 9 0 0 9 0 9 9 0 0 9 9 0 0 9" + "row4" "9 9 9 9 9 9 0 9 9 0 0 9 9 0 0 1" + "row5" "1 0 0 9 9 9 0 9 9 0 0 9 9 0 0 1" + "row6" "0 0 0 1 9 9 0 1 1 0 0 0 0 0 0 0" + "row7" "0 1 9 1 9 9 9 9 1 1 1 0 0 1 0 0" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "1775" + "plane" "(104 -796 57.625) (104 -814 57.625) (104 -814 58)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 -68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[104 -814 57.625]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "1 0 0 1 0 0 0.999999 0 0 -1 0 0 0.999962 0 0 1 0 0 0.999999 0 0 -0.999999 0 0 1 0 0" + "row1" "1 0 0 1 0 0 -0.99999 0 0 -0.999999 0 0 -0.999993 0 0 1 0 0 0.999999 0 0 -0.999999 0 0 1 0 0" + "row2" "1 0 0 1 0 0 -0.999999 0 0 -0.999998 0 0 -0.999997 0 0 1 0 0 0.999999 0 0 -0.999999 0 0 1 0 0" + "row3" "1 0 0 1 0 0 -0.999999 0 0 0.999999 0 0 -1 0 0 -1 0 0 -0.999999 0 0 -1 0 0 1 0 0" + "row4" "1 0 0 1 0 0 -0.999995 0 0 0.999999 0 0 -1 0 0 -1 0 0 -0.999999 0 0 -1 0 0 1 0 0" + "row5" "1 0 0 1 0 0 0.999997 0 0 0.999999 0 0 -1 0 0 -1 0 0 0.999989 0 0 -0.999999 0 0 1 0 0" + "row6" "1 0 0 1 0 0 0.999999 0 0 1 0 0 -1 0 0 -1 0 0 0.999999 0 0 -0.999999 0 0 1 0 0" + "row7" "1 0 0 1 0 0 0.999999 0 0 1 0 0 -1 0 0 -1 0 0 0.999999 0 0 -0.999999 0 0 1 0 0" + "row8" "1 0 0 1 0 0 0.999999 0 0 1 0 0 -1 0 0 -1 0 0 1 0 0 -0.999999 0 0 1 0 0" + } + distances + { + "row0" "0.619965 0.451263 0.0964127 0.274651 0.00311279 0.420349 0.220192 0.216728 0.537155" + "row1" "0.632828 0.411583 0.0124207 0.170959 0.0165024 0.339981 0.191528 0.190941 0.54084" + "row2" "0.642761 0.386627 0.0995255 0.0799561 0.0478592 0.257942 0.175339 0.167374 0.546829" + "row3" "0.526489 0.733604 0.106873 0.118896 0.62706 0.252968 0.186394 0.321823 0.305397" + "row4" "0.593353 0.739792 0.0255966 0.175598 0.612793 0.254829 0.0880737 0.258369 0.383621" + "row5" "0.651154 0.740364 0.0467758 0.218903 0.585945 0.261795 0.0105133 0.203102 0.451424" + "row6" "0.699883 0.735306 0.110237 0.24881 0.546524 0.273865 0.109367 0.156029 0.508804" + "row7" "0.73954 0.724632 0.164795 0.26532 0.49453 0.291031 0.208481 0.117149 0.555756" + "row8" "0.770134 0.708328 0.210434 0.26844 0.429962 0.313309 0.307854 0.0864563 0.592285" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row1" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row2" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row3" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row4" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row5" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row6" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row7" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row8" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + } + alphas + { + "row0" "0 0 0 75 0 25 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 25 0 0 0 0" + "row3" "0 0 0 0 125 0 0 100 0" + "row4" "0 0 0 0 50 0 0 0 0" + "row5" "0 0 0 0 255 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 25 0 0 75 75 0 0" + } + triangle_tags + { + "row0" "0 0 0 9 9 0 0 0 0 9 9 0 0 0 0 0" + "row1" "0 0 0 9 9 0 0 0 0 9 9 0 0 0 0 0" + "row2" "9 0 0 0 0 0 0 9 9 9 9 9 9 9 9 9" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "1774" + "plane" "(5 -796 57.625) (104 -796 57.625) (104 -796 58)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[5 -796 57.625]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 1 0 0 1 0 0 1 0 0 0.999999 0 0 0.999999 0 0 0.999999 0 0 0.999997 0 0 -0.99999 0 0 -0.999998 0" + "row1" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + "row2" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999999 0 0 0.999999 0" + "row3" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + "row4" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999999 0 0 -0.999999 0" + "row5" "0 -0.999999 0 0 -0.999999 0 0 -0.999999 0 0 0.999902 0 0 0.999996 0 0 0.999998 0 0 0.999999 0 0 0.999999 0 0 0.999999 0" + "row6" "0 -1 0 0 -0.999999 0 0 -0.999998 0 0 0.999999 0 0 0.999999 0 0 0.999999 0 0 1 0 0 1 0 0 1 0" + "row7" "0 -0.999999 0 0 -0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + "row8" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + } + distances + { + "row0" "0.549866 0.488708 0.415222 0.216187 0.150635 0.0907593 0.0366211 0.0118408 0.0546265" + "row1" "0.410156 0.419678 0.431885 0.35968 0.445496 0.508423 0.527466 0.523315 0.508606" + "row2" "0.748169 0.662964 0.578308 0.533325 0.434082 0.346802 0.271484 0.208252 0.156982" + "row3" "0.594177 0.593018 0.597717 0.854187 0.804749 0.769409 0.779968 0.804565 0.824158" + "row4" "0.415039 0.425537 0.430481 0.595703 0.466248 0.353149 0.256348 0.175903 0.111694" + "row5" "0.214294 0.185242 0.150696 0.0012207 0.0305176 0.0623169 0.104858 0.148865 0.18927" + "row6" "0.292603 0.175781 0.0683594 0.0980225 0.158569 0.210571 0.254028 0.289001 0.315369" + "row7" "0.123047 0.208923 0.28186 0.221863 0.299255 0.360596 0.393188 0.404785 0.401917" + "row8" "0.53717 0.540833 0.546814 0.30542 0.383606 0.451416 0.508789 0.555786 0.592285" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row1" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row2" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row3" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row4" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row5" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row6" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row7" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + "row8" "0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "25 0 0 25 25 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 200" + "row6" "25 0 0 0 0 0 0 0 200" + "row7" "150 0 0 0 0 0 0 0 50" + "row8" "25 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "0 1 9 0 0 9 9 9 9 1 1 0 0 1 0 0" + "row1" "0 9 9 0 0 0 9 9 9 9 9 0 0 9 1 0" + "row2" "0 9 9 0 9 0 9 0 0 9 9 0 0 9 1 0" + "row3" "0 0 0 0 9 9 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 9 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "9 0 0 9 0 0 0 9 1 0 0 0 0 0 0 0" + "row7" "9 0 0 9 0 9 0 9 1 0 0 0 0 0 0 0" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "1773" + "plane" "(104 -814 57.625) (5 -814 57.625) (5 -814 58)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "32" + side + { + "id" "1784" + "plane" "(160 -677 62) (160 -512 62) (512 -512 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -79] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "1783" + "plane" "(160 -512 32) (160 -677 32) (512 -677 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1782" + "plane" "(160 -677 32) (160 -512 32) (160 -512 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1781" + "plane" "(512 -512 32) (512 -677 32) (512 -677 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1780" + "plane" "(160 -512 32) (512 -512 32) (512 -512 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1779" + "plane" "(512 -677 32) (160 -677 32) (160 -677 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "33" + side + { + "id" "1790" + "plane" "(128 -677 62) (128 -512 62) (160 -512 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -79] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "1789" + "plane" "(128 -512 32) (128 -677 32) (160 -677 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1788" + "plane" "(128 -677 32) (128 -512 32) (128 -512 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1787" + "plane" "(160 -512 32) (160 -677 32) (160 -677 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1786" + "plane" "(128 -512 32) (160 -512 32) (160 -512 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1785" + "plane" "(160 -677 32) (128 -677 32) (128 -677 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "34" + side + { + "id" "1796" + "plane" "(77 -72 67) (128 -72 67) (128 -364 67)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[77 -364 67]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 -0.999996 0 0 1 0 0 1 0 0 1 0 0 0.999962 0 0 1 0 0 -1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 -1 0 0 -0.999981 0 0 1 0 0 1 0 0 1 0 0 0.999999 0 0 1 0 0 0.999999" + "row2" "0 0 0.999999 0 0 0.999999 0 0 0.999999 0 0 1 0 0 0.999999 0 0 1 0 0 1 0 0 1 0 0 -1" + "row3" "0 0 1 0 0 1 0 0 -1 0 0 1 0 0 -0.999999 0 0 0.999998 0 0 -0.999999 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 -1 0 0 1 0 0 -0.999999 0 0 0.999999 0 0 1 0 0 -1" + "row5" "0 0 1 0 0 1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -0.999999 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -0.999993" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -0.999999" + "row8" "0 0 -1 0 0 -0.999998 0 0 0.999999 0 0 1 0 0 0.999997 0 0 1 0 0 0.999999 0 0 -0.999999 0 0 1" + } + distances + { + "row0" "0.0315552 0.810028 0.740524 0.670891 0.00315857 1.2962 0.389496 0.839424 0.661995" + "row1" "0.37854 0.500259 0.00636292 0.258957 0.913849 0.554527 0.175911 1.06721 0.223808" + "row2" "0.0925903 0.167915 0.132347 0.388237 0.0835953 0.576454 0.667473 0.41774 0.651207" + "row3" "0.349648 1.05997 0.369629 0.950516 0.20446 0.0523682 0.218857 0.959435 0.443329" + "row4" "0.847397 1.07219 0.412415 0.278572 0.490784 0.0987244 0.206802 0.980972 0.554893" + "row5" "0.896568 0.622894 0.398659 0.580566 1.00541 0.510635 1.02302 0.122498 1.12251" + "row6" "0.266121 0.70192 0.669914 1.0023 0.491539 0.936714 1.32792 0.538628 0.0172195" + "row7" "0.88501 1.67768 1.12846 1.32948 0.266716 0.786613 1.33282 0.318932 0.129128" + "row8" "0.772583 0.0667496 0.213661 1.93937 0.0351563 0.664474 0.196144 0.157875 0.347672" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "1795" + "plane" "(77 -364 66) (128 -364 66) (128 -72 66)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1794" + "plane" "(77 -72 67) (77 -364 67) (77 -364 66)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1793" + "plane" "(128 -72 66) (128 -364 66) (128 -364 67)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1792" + "plane" "(128 -72 67) (77 -72 67) (77 -72 66)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1791" + "plane" "(128 -364 66) (77 -364 66) (77 -364 67)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "35" + side + { + "id" "1802" + "plane" "(-121 56 62) (3 56 62) (3 33 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 91] 0.125" + "vaxis" "[1 0 0 -87] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1801" + "plane" "(-121 33 32) (3 33 32) (3 56 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1800" + "plane" "(-121 56 62) (-121 33 62) (-121 33 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1799" + "plane" "(3 56 32) (3 33 32) (3 33 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1798" + "plane" "(3 56 62) (-121 56 62) (-121 56 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1797" + "plane" "(3 33 32) (-121 33 32) (-121 33 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "36" + side + { + "id" "1808" + "plane" "(-258 56 62) (-258 384 62) (136 384 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1807" + "plane" "(-258 384 32) (-258 56 32) (136 56 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1806" + "plane" "(-258 56 32) (-258 384 32) (-258 384 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1805" + "plane" "(136 384 32) (136 56 32) (136 56 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1804" + "plane" "(-258 384 32) (136 384 32) (136 384 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1803" + "plane" "(136 56 32) (-258 56 32) (-258 56 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "37" + side + { + "id" "1814" + "plane" "(-79 496 62) (48 496 62) (48 384 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1813" + "plane" "(-79 384 32) (48 384 32) (48 496 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1812" + "plane" "(48 496 32) (48 384 32) (48 384 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1811" + "plane" "(48 384 32) (-79 384 32) (-79 384 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1810" + "plane" "(-79 496 32) (48 496 32) (48 496 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1809" + "plane" "(-79 384 32) (-79 496 32) (-79 496 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "38" + side + { + "id" "1820" + "plane" "(-288 384 62) (-288 496 62) (-159 496 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1819" + "plane" "(-288 496 32) (-288 384 32) (-159 384 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1818" + "plane" "(-288 384 32) (-288 496 32) (-288 496 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1817" + "plane" "(-159 384 32) (-288 384 32) (-288 384 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1816" + "plane" "(-288 496 32) (-159 496 32) (-159 496 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1815" + "plane" "(-159 496 32) (-159 384 32) (-159 384 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "39" + side + { + "id" "1826" + "plane" "(-288 496 62) (-288 880 62) (48 880 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1825" + "plane" "(-288 880 32) (-288 496 32) (48 496 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1824" + "plane" "(-288 496 32) (-288 880 32) (-288 880 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1823" + "plane" "(48 880 32) (48 496 32) (48 496 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1822" + "plane" "(-288 880 32) (48 880 32) (48 880 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1821" + "plane" "(48 496 32) (-288 496 32) (-288 496 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "41" + side + { + "id" "1832" + "plane" "(-159 384 62) (-159 496 62) (-155 491.855 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 12.8002] 0.078125" + "vaxis" "[0 1 0 -54.86] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "1831" + "plane" "(-159 496 30) (-159 384 30) (-155 388 30)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -28] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1830" + "plane" "(-159 384 30) (-159 496 30) (-159 496 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1829" + "plane" "(-155 491.852 30) (-155 388 30) (-155 388 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1828" + "plane" "(-159 496 30) (-155 491.854 30) (-155 491.852 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 100] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1827" + "plane" "(-155 388 30) (-159 384 30) (-159 384 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 100] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "40" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "42" + side + { + "id" "1838" + "plane" "(-83 388 62) (-155 388 62) (-155 492 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 12.8002] 0.078125" + "vaxis" "[0 1 0 -54.86] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "1837" + "plane" "(-83 492 30) (-155 492 30) (-155 388 30)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -28] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1836" + "plane" "(-83 388 30) (-155 388 30) (-155 388 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1835" + "plane" "(-155 492 30) (-83 492 30) (-83 492 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -60] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1834" + "plane" "(-155 388 30) (-155 492 30) (-155 492 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -96] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1833" + "plane" "(-83 492 30) (-83 388 30) (-83 388 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -96] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "40" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "43" + side + { + "id" "1844" + "plane" "(-83 492 62) (-155 492 62) (-159 496 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -98.102] 0.078" + "vaxis" "[1 0 0 -54.584] 0.109" + "rotation" "270" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "1843" + "plane" "(-79 496 30) (-159 496 30) (-155 492 30)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -28] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1842" + "plane" "(-159 496 30) (-79 496 30) (-79 496 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -60] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1841" + "plane" "(-83 492 30) (-155 492 30) (-155 492 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -60] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1840" + "plane" "(-155 492 30) (-159 496 30) (-159 496 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 100] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1839" + "plane" "(-79 496 30) (-83 492 30) (-83 492 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 100] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "40" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "44" + side + { + "id" "1850" + "plane" "(-79 384 62) (-159 384 62) (-155 388 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 62.102] 0.078" + "vaxis" "[-1 0 0 -37.4162] 0.109" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "1849" + "plane" "(-83 388 30) (-155 388 30) (-159 384 30)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -28] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1848" + "plane" "(-79 384 30) (-159 384 30) (-159 384 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1847" + "plane" "(-155 388 30) (-83 388 30) (-83 388 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -60] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1846" + "plane" "(-159 384 30) (-155 388 30) (-155 388 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 100] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1845" + "plane" "(-83 388 30) (-79 384 30) (-79 384 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 100] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "40" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "45" + side + { + "id" "1856" + "plane" "(-83 388 62) (-83 492 62) (-79 496 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 12.8002] 0.078125" + "vaxis" "[0 1 0 -54.86] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "1855" + "plane" "(-83 492 30) (-83 388 30) (-79 384 30)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -28] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1854" + "plane" "(-79 496 30) (-79 384 30) (-79 384 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1853" + "plane" "(-83 388 30) (-83 492 30) (-83 492 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1852" + "plane" "(-83 492 30) (-79 496 30) (-79 496 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 100] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1851" + "plane" "(-79 384 30) (-83 388 30) (-83 388 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 100] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "40" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "46" + side + { + "id" "1863" + "plane" "(48 384 62) (48 716 62) (136 716 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1862" + "plane" "(48 716 32) (48 384 32) (273 384 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1861" + "plane" "(48 384 32) (48 716 32) (48 716 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1860" + "plane" "(273 558 32) (273 384 32) (273 384 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1859" + "plane" "(273 384 32) (48 384 32) (48 384 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1858" + "plane" "(48 716 32) (136 716 32) (136 716 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1857" + "plane" "(136 716 32) (273 558 32) (273 558 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "47" + side + { + "id" "1869" + "plane" "(224 864 32) (480 864 32) (480 544 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1868" + "plane" "(224 544 0) (480 544 0) (480 864 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1867" + "plane" "(480 864 0) (480 544 0) (480 544 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1866" + "plane" "(480 544 0) (224 544 0) (224 544 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1865" + "plane" "(224 864 0) (480 864 0) (480 864 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1864" + "plane" "(224 544 0) (224 864 0) (224 864 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "48" + side + { + "id" "1875" + "plane" "(48 544 32) (48 864 32) (192 864 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1874" + "plane" "(48 864 0) (48 544 0) (192 544 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1873" + "plane" "(48 544 0) (48 864 0) (48 864 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1872" + "plane" "(192 864 0) (192 544 0) (192 544 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1871" + "plane" "(48 864 0) (192 864 0) (192 864 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1870" + "plane" "(192 544 0) (48 544 0) (48 544 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "49" + side + { + "id" "1882" + "plane" "(48 716 62) (48 880 62) (152 880 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1881" + "plane" "(48 880 32) (48 716 32) (136 716 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1880" + "plane" "(48 716 32) (48 880 32) (48 880 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1879" + "plane" "(152 880 32) (152 730 32) (152 730 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -32] 0.5" + "vaxis" "[0 0 -1 -17] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1878" + "plane" "(48 880 32) (152 880 32) (152 880 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1877" + "plane" "(136 716 32) (48 716 32) (48 716 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1876" + "plane" "(152 730 32) (136 716 32) (136 716 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "50" + side + { + "id" "1888" + "plane" "(192 544 32) (192 864 32) (224 864 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1887" + "plane" "(192 864 0) (192 544 0) (224 544 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1886" + "plane" "(192 544 0) (192 864 0) (192 864 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1885" + "plane" "(224 544 0) (192 544 0) (192 544 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1884" + "plane" "(192 864 0) (224 864 0) (224 864 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1883" + "plane" "(224 864 0) (224 544 0) (224 544 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "51" + side + { + "id" "1894" + "plane" "(152 864 32) (152 896 32) (480 896 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1893" + "plane" "(152 896 0) (152 864 0) (480 864 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1892" + "plane" "(152 864 0) (152 896 0) (152 896 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1891" + "plane" "(480 896 0) (480 864 0) (480 864 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1890" + "plane" "(480 864 0) (152 864 0) (152 864 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1889" + "plane" "(152 896 0) (480 896 0) (480 896 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "52" + side + { + "id" "1900" + "plane" "(192 896 32) (192 910 32) (480 910 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 91] 0.125" + "vaxis" "[1 0 0 -87] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1899" + "plane" "(192 910 0) (192 896 0) (480 896 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1898" + "plane" "(192 896 0) (192 910 0) (192 910 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1897" + "plane" "(480 910 0) (480 896 0) (480 896 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1896" + "plane" "(480 896 0) (192 896 0) (192 896 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1895" + "plane" "(192 910 0) (480 910 0) (480 910 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "53" + side + { + "id" "1906" + "plane" "(192 910 32) (192 1136 32) (480 1136 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -12] 0.125" + "vaxis" "[0 -1 0 -55] 0.125" + "rotation" "0" + "lightmapscale" "32" + "smoothing_groups" "0" + } + side + { + "id" "1905" + "plane" "(192 1136 0) (192 910 0) (480 910 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1904" + "plane" "(192 910 0) (192 1136 0) (192 1136 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1903" + "plane" "(480 1136 0) (480 910 0) (480 910 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1902" + "plane" "(192 1136 0) (480 1136 0) (480 1136 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1901" + "plane" "(480 910 0) (192 910 0) (192 910 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "54" + side + { + "id" "1912" + "plane" "(-48 920 32) (-48 1136 32) (192 1136 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -12] 0.125" + "vaxis" "[0 -1 0 -55] 0.125" + "rotation" "0" + "lightmapscale" "32" + "smoothing_groups" "0" + } + side + { + "id" "1911" + "plane" "(-48 1136 0) (-48 920 0) (192 920 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1910" + "plane" "(-48 920 0) (-48 1136 0) (-48 1136 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1909" + "plane" "(192 1136 0) (192 920 0) (192 920 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1908" + "plane" "(-48 1136 0) (192 1136 0) (192 1136 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1907" + "plane" "(192 920 0) (-48 920 0) (-48 920 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "55" + side + { + "id" "1918" + "plane" "(-48 1568 32) (481 1568 32) (481 1136 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -12] 0.125" + "vaxis" "[0 -1 0 -55] 0.125" + "rotation" "0" + "lightmapscale" "32" + "smoothing_groups" "0" + } + side + { + "id" "1917" + "plane" "(-48 1136 0) (481 1136 0) (481 1568 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1916" + "plane" "(481 1568 0) (481 1136 0) (481 1136 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1915" + "plane" "(-48 1568 0) (481 1568 0) (481 1568 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1914" + "plane" "(481 1136 0) (-48 1136 0) (-48 1136 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1913" + "plane" "(-48 1136 0) (-48 1568 0) (-48 1568 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "56" + side + { + "id" "1924" + "plane" "(-48 920 32) (-288 920 32) (-288 1568 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -12] 0.125" + "vaxis" "[0 -1 0 -55] 0.125" + "rotation" "0" + "lightmapscale" "32" + "smoothing_groups" "0" + } + side + { + "id" "1923" + "plane" "(-48 1568 0) (-288 1568 0) (-288 920 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1922" + "plane" "(-288 920 0) (-288 1568 0) (-288 1568 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1921" + "plane" "(-288 1568 0) (-48 1568 0) (-48 1568 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1920" + "plane" "(-48 920 0) (-288 920 0) (-288 920 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1919" + "plane" "(-48 1568 0) (-48 920 0) (-48 920 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "57" + side + { + "id" "1930" + "plane" "(-704 920 32) (-704 1221 32) (-288 1221 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -12] 0.125" + "vaxis" "[0 -1 0 -55] 0.125" + "rotation" "0" + "lightmapscale" "32" + "smoothing_groups" "0" + } + side + { + "id" "1929" + "plane" "(-704 1221 0) (-704 920 0) (-288 920 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1928" + "plane" "(-704 920 0) (-704 1221 0) (-704 1221 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1927" + "plane" "(-288 1221 0) (-288 920 0) (-288 920 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1926" + "plane" "(-704 1221 0) (-288 1221 0) (-288 1221 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1925" + "plane" "(-288 920 0) (-704 920 0) (-704 920 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "58" + side + { + "id" "1936" + "plane" "(-1056 1221 32) (-1056 1568 32) (-288 1568 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -12] 0.125" + "vaxis" "[0 -1 0 -55] 0.125" + "rotation" "0" + "lightmapscale" "32" + "smoothing_groups" "0" + } + side + { + "id" "1935" + "plane" "(-1056 1568 24) (-1056 1221 24) (-288 1221 24)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1934" + "plane" "(-1056 1221 24) (-1056 1568 24) (-1056 1568 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1933" + "plane" "(-288 1568 24) (-288 1221 24) (-288 1221 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1932" + "plane" "(-1056 1568 24) (-288 1568 24) (-288 1568 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1931" + "plane" "(-288 1221 24) (-1056 1221 24) (-1056 1221 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "59" + side + { + "id" "1942" + "plane" "(504 568 32) (480 568 32) (480 880 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1941" + "plane" "(504 880 0) (480 880 0) (480 568 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1940" + "plane" "(480 568 0) (480 880 0) (480 880 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1939" + "plane" "(480 880 0) (504 880 0) (504 880 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1938" + "plane" "(504 568 0) (480 568 0) (480 568 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1937" + "plane" "(504 880 0) (504 568 0) (504 568 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "60" + side + { + "id" "1948" + "plane" "(584 568 32) (504 568 32) (504 880 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1947" + "plane" "(584 880 0) (504 880 0) (504 568 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1946" + "plane" "(504 880 0) (584 880 0) (584 880 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1945" + "plane" "(584 568 0) (504 568 0) (504 568 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1944" + "plane" "(584 880 0) (584 568 0) (584 568 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1943" + "plane" "(504 568 0) (504 880 0) (504 880 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "61" + side + { + "id" "1954" + "plane" "(608 568 32) (584 568 32) (584 880 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1953" + "plane" "(608 880 0) (584 880 0) (584 568 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1952" + "plane" "(584 880 0) (608 880 0) (608 880 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1951" + "plane" "(608 568 0) (584 568 0) (584 568 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1950" + "plane" "(608 880 0) (608 568 0) (608 568 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1949" + "plane" "(584 568 0) (584 880 0) (584 880 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "62" + side + { + "id" "1960" + "plane" "(608 792 32) (992 792 32) (992 392 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1959" + "plane" "(608 392 0) (992 392 0) (992 792 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1958" + "plane" "(992 792 0) (992 392 0) (992 392 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1957" + "plane" "(608 792 0) (992 792 0) (992 792 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1956" + "plane" "(992 392 0) (608 392 0) (608 392 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1955" + "plane" "(608 392 0) (608 792 0) (608 792 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "63" + side + { + "id" "1966" + "plane" "(1104 336 32) (992 336 32) (992 792 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1965" + "plane" "(1104 792 0) (992 792 0) (992 336 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1964" + "plane" "(992 336 0) (992 792 0) (992 792 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1963" + "plane" "(992 792 0) (1104 792 0) (1104 792 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1962" + "plane" "(1104 336 0) (992 336 0) (992 336 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1961" + "plane" "(1104 792 0) (1104 336 0) (1104 336 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "64" + side + { + "id" "1972" + "plane" "(568 264 32) (568 392 32) (736 392 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1971" + "plane" "(568 392 2) (568 264 2) (736 264 2)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1970" + "plane" "(568 264 2) (568 392 2) (568 392 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1969" + "plane" "(736 392 2) (736 264 2) (736 264 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1968" + "plane" "(568 392 2) (736 392 2) (736 392 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1967" + "plane" "(736 264 2) (568 264 2) (568 264 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "65" + side + { + "id" "1978" + "plane" "(568 392 32) (568 528 32) (608 528 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1977" + "plane" "(568 528 0) (568 392 0) (608 392 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1976" + "plane" "(568 392 0) (568 528 0) (568 528 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1975" + "plane" "(608 528 0) (608 392 0) (608 392 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1974" + "plane" "(568 528 0) (608 528 0) (608 528 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1973" + "plane" "(608 392 0) (568 392 0) (568 392 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "66" + side + { + "id" "1984" + "plane" "(768 392 32) (992 392 32) (992 336 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1983" + "plane" "(768 336 0) (992 336 0) (992 392 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1982" + "plane" "(768 392 32) (768 336 32) (768 336 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1981" + "plane" "(992 392 0) (992 336 0) (992 336 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1980" + "plane" "(992 392 32) (768 392 32) (768 392 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1979" + "plane" "(992 336 0) (768 336 0) (768 336 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "67" + side + { + "id" "1990" + "plane" "(1184 336 32) (1104 336 32) (1104 640 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1989" + "plane" "(1104 640 0) (1104 336 0) (1184 336 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1988" + "plane" "(1184 336 0) (1104 336 0) (1104 336 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1987" + "plane" "(1184 640 0) (1184 336 0) (1184 336 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1986" + "plane" "(1104 336 0) (1104 640 0) (1104 640 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1985" + "plane" "(1104 640 0) (1184 640 0) (1184 640 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "68" + side + { + "id" "1996" + "plane" "(1184 792 32) (1216 792 32) (1216 336 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1995" + "plane" "(1184 336 0) (1216 336 0) (1216 792 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1994" + "plane" "(1216 792 0) (1216 336 0) (1216 336 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1993" + "plane" "(1184 792 0) (1216 792 0) (1216 792 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1992" + "plane" "(1216 336 0) (1184 336 0) (1184 336 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1991" + "plane" "(1184 336 0) (1184 792 0) (1184 792 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "70" + side + { + "id" "2002" + "plane" "(1108 747.852 32) (1108 644 32) (1104 640 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 51.2] 0.078125" + "vaxis" "[0 1 0 -91.431] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2001" + "plane" "(1104 752 0) (1104 640 0) (1108 644 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2000" + "plane" "(1104 640 0) (1104 752 0) (1104 752 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1999" + "plane" "(1108 747.852 0) (1108 644 0) (1108 644 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1998" + "plane" "(1104 752 0) (1108 747.85 0) (1108 747.852 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1997" + "plane" "(1108 644 0) (1104 640 0) (1104 640 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "69" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "71" + side + { + "id" "2008" + "plane" "(1180 644 32) (1108 644 32) (1108 748 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 51.2] 0.078125" + "vaxis" "[0 1 0 -91.431] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2007" + "plane" "(1108 644 0) (1180 644 0) (1180 748 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2006" + "plane" "(1180 644 0) (1108 644 0) (1108 644 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2005" + "plane" "(1108 748 0) (1180 748 0) (1180 748 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2004" + "plane" "(1108 644 0) (1108 748 0) (1108 748 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2003" + "plane" "(1180 748 0) (1180 644 0) (1180 644 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "69" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "72" + side + { + "id" "2014" + "plane" "(1180 748 32) (1108 748 32) (1104 752 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -52.153] 0.078" + "vaxis" "[1 0 0 6.25854] 0.109" + "rotation" "270" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2013" + "plane" "(1108 748 0) (1180 748 0) (1184 752 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2012" + "plane" "(1104 752 0) (1184 752 0) (1184 752 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2011" + "plane" "(1180 748 0) (1108 748 0) (1108 748 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2010" + "plane" "(1108 748 0) (1104 752 0) (1104 752 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2009" + "plane" "(1184 752 0) (1180 748 0) (1180 748 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "69" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "73" + side + { + "id" "2020" + "plane" "(1184 640 32) (1104 640 32) (1108 644 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 16.1529] 0.078" + "vaxis" "[-1 0 0 29.741] 0.109" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2019" + "plane" "(1104 640 0) (1184 640 0) (1180 644 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2018" + "plane" "(1184 640 0) (1104 640 0) (1104 640 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2017" + "plane" "(1108 644 0) (1180 644 0) (1180 644 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2016" + "plane" "(1104 640 0) (1108 644 0) (1108 644 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2015" + "plane" "(1180 644 0) (1184 640 0) (1184 640 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "69" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "74" + side + { + "id" "2026" + "plane" "(1184 752 32) (1184 640 32) (1180 644 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 51.2] 0.078125" + "vaxis" "[0 1 0 -91.431] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2025" + "plane" "(1180 748 0) (1180 644 0) (1184 640 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2024" + "plane" "(1184 752 0) (1184 640 0) (1184 640 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2023" + "plane" "(1180 644 0) (1180 748 0) (1180 748 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2022" + "plane" "(1180 748 0) (1184 752 0) (1184 752 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2021" + "plane" "(1184 640 0) (1180 644 0) (1180 644 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "69" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "75" + side + { + "id" "2032" + "plane" "(1104 752 32) (1104 792 32) (1184 792 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2031" + "plane" "(1184 792 0) (1104 792 0) (1104 752 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2030" + "plane" "(1104 792 0) (1184 792 0) (1184 792 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2029" + "plane" "(1184 792 0) (1184 752 0) (1184 752 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2028" + "plane" "(1104 752 0) (1104 792 0) (1104 792 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2027" + "plane" "(1184 752 0) (1104 752 0) (1104 752 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "76" + side + { + "id" "2038" + "plane" "(768 304 128) (768 336 128) (1280 336 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2037" + "plane" "(768 336 32) (768 304 32) (1280 304 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2036" + "plane" "(768 304 32) (768 336 32) (768 336 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2035" + "plane" "(1280 336 32) (1280 304 32) (1280 304 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2034" + "plane" "(768 336 32) (1280 336 32) (1280 336 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 60] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2033" + "plane" "(1280 304 32) (768 304 32) (768 304 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "77" + side + { + "id" "2044" + "plane" "(800 304 128) (1280 304 128) (1280 224 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2043" + "plane" "(800 224 32) (1280 224 32) (1280 304 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2042" + "plane" "(1280 304 32) (1280 224 32) (1280 224 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2041" + "plane" "(800 304 32) (1280 304 32) (1280 304 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2040" + "plane" "(1280 224 32) (800 224 32) (800 224 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2039" + "plane" "(800 224 32) (800 304 32) (800 304 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "78" + side + { + "id" "2050" + "plane" "(768 192 128) (768 224 128) (1280 224 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2049" + "plane" "(768 224 32) (768 192 32) (1280 192 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2048" + "plane" "(768 192 32) (768 224 32) (768 224 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2047" + "plane" "(1280 224 32) (1280 192 32) (1280 192 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2046" + "plane" "(1280 192 32) (768 192 32) (768 192 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2045" + "plane" "(768 224 32) (1280 224 32) (1280 224 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "79" + side + { + "id" "2056" + "plane" "(768 224 128) (768 304 128) (800 304 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2055" + "plane" "(768 304 32) (768 224 32) (800 224 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2054" + "plane" "(768 224 32) (768 304 32) (768 304 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2053" + "plane" "(768 304 32) (800 304 32) (800 304 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2052" + "plane" "(800 224 32) (768 224 32) (768 224 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2051" + "plane" "(800 304 32) (800 224 32) (800 224 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "80" + side + { + "id" "2062" + "plane" "(1312 0 128) (1280 0 128) (1280 304 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2061" + "plane" "(1312 304 0) (1280 304 0) (1280 0 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2060" + "plane" "(1280 0 0) (1280 304 0) (1280 304 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2059" + "plane" "(1312 0 0) (1280 0 0) (1280 0 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2058" + "plane" "(1280 304 0) (1312 304 0) (1312 304 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2057" + "plane" "(1312 304 0) (1312 0 0) (1312 0 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "81" + side + { + "id" "2068" + "plane" "(1312 160 128) (1312 272 128) (1504 272 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2067" + "plane" "(1312 272 0) (1312 160 0) (1504 160 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2066" + "plane" "(1312 160 0) (1312 272 0) (1312 272 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2065" + "plane" "(1312 272 0) (1504 272 0) (1504 272 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2064" + "plane" "(1504 160 0) (1312 160 0) (1312 160 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2063" + "plane" "(1504 272 0) (1504 160 0) (1504 160 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "82" + side + { + "id" "2074" + "plane" "(1312 272 128) (1312 304 128) (1616 304 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2073" + "plane" "(1616 304 0) (1312 304 0) (1312 272 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2072" + "plane" "(1312 304 0) (1616 304 0) (1616 304 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2071" + "plane" "(1616 304 0) (1616 272 0) (1616 272 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2070" + "plane" "(1312 272 0) (1312 304 0) (1312 304 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2069" + "plane" "(1616 272 0) (1312 272 0) (1312 272 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "83" + side + { + "id" "2080" + "plane" "(1280 304 128) (1280 336 128) (1616 336 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2079" + "plane" "(1280 336 0) (1280 304 0) (1616 304 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2078" + "plane" "(1280 304 0) (1280 336 0) (1280 336 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2077" + "plane" "(1616 336 0) (1616 304 0) (1616 304 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2076" + "plane" "(1280 336 0) (1616 336 0) (1616 336 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2075" + "plane" "(1616 304 0) (1280 304 0) (1280 304 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "85" + side + { + "id" "2086" + "plane" "(1508 267.852 128) (1508 164 128) (1504 160 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 51.2] 0.078125" + "vaxis" "[0 1 0 -54.86] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2085" + "plane" "(1504 272 96) (1504 160 96) (1508 164 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2084" + "plane" "(1504 160 96) (1504 272 96) (1504 272 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2083" + "plane" "(1508 267.852 96) (1508 164 96) (1508 164 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2082" + "plane" "(1504 272 96) (1508 267.85 96) (1508 267.852 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2081" + "plane" "(1508 164 96) (1504 160 96) (1504 160 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "84" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "86" + side + { + "id" "2092" + "plane" "(1580 164 128) (1508 164 128) (1508 268 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 51.2] 0.078125" + "vaxis" "[0 1 0 -54.86] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2091" + "plane" "(1508 164 96) (1580 164 96) (1580 268 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2090" + "plane" "(1580 164 96) (1508 164 96) (1508 164 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2089" + "plane" "(1508 268 96) (1580 268 96) (1580 268 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2088" + "plane" "(1508 164 96) (1508 268 96) (1508 268 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2087" + "plane" "(1580 268 96) (1580 164 96) (1580 164 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "84" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "87" + side + { + "id" "2098" + "plane" "(1580 268 128) (1508 268 128) (1504 272 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -42.308] 0.078" + "vaxis" "[1 0 0 -79.465] 0.109" + "rotation" "270" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2097" + "plane" "(1508 268 96) (1580 268 96) (1584 272 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2096" + "plane" "(1504 272 96) (1584 272 96) (1584 272 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2095" + "plane" "(1580 268 96) (1508 268 96) (1508 268 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2094" + "plane" "(1508 268 96) (1504 272 96) (1504 272 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2093" + "plane" "(1584 272 96) (1580 268 96) (1580 268 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "84" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "88" + side + { + "id" "2104" + "plane" "(1584 160 128) (1504 160 128) (1508 164 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 6.30798] 0.078" + "vaxis" "[-1 0 0 115.465] 0.109" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2103" + "plane" "(1504 160 96) (1584 160 96) (1580 164 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2102" + "plane" "(1584 160 96) (1504 160 96) (1504 160 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2101" + "plane" "(1508 164 96) (1580 164 96) (1580 164 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2100" + "plane" "(1504 160 96) (1508 164 96) (1508 164 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2099" + "plane" "(1580 164 96) (1584 160 96) (1584 160 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "84" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "89" + side + { + "id" "2110" + "plane" "(1584 272 128) (1584 160 128) (1580 164 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 51.2] 0.078125" + "vaxis" "[0 1 0 -54.86] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2109" + "plane" "(1580 268 96) (1580 164 96) (1584 160 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2108" + "plane" "(1584 272 96) (1584 160 96) (1584 160 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2107" + "plane" "(1580 164 96) (1580 268 96) (1580 268 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2106" + "plane" "(1580 268 96) (1584 272 96) (1584 272 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2105" + "plane" "(1584 160 96) (1580 164 96) (1580 164 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "84" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "90" + side + { + "id" "2116" + "plane" "(1616 336 128) (1648 336 128) (1648 0 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2115" + "plane" "(1616 0 0) (1648 0 0) (1648 336 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2114" + "plane" "(1648 336 0) (1648 0 0) (1648 0 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2113" + "plane" "(1648 0 0) (1616 0 0) (1616 0 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2112" + "plane" "(1616 336 0) (1648 336 0) (1648 336 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2111" + "plane" "(1616 0 0) (1616 336 0) (1616 336 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "91" + side + { + "id" "2122" + "plane" "(1584 272 128) (1616 272 128) (1616 160 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2121" + "plane" "(1584 160 0) (1616 160 0) (1616 272 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2120" + "plane" "(1616 272 0) (1616 160 0) (1616 160 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2119" + "plane" "(1584 272 0) (1616 272 0) (1616 272 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2118" + "plane" "(1616 160 0) (1584 160 0) (1584 160 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2117" + "plane" "(1584 160 0) (1584 272 0) (1584 272 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "92" + side + { + "id" "2128" + "plane" "(1312 32 128) (1312 160 128) (1616 160 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2127" + "plane" "(1312 160 0) (1312 32 0) (1616 32 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2126" + "plane" "(1616 160 0) (1616 32 0) (1616 32 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2125" + "plane" "(1312 32 0) (1312 160 0) (1312 160 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2124" + "plane" "(1616 32 0) (1312 32 0) (1312 32 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2123" + "plane" "(1312 160 0) (1616 160 0) (1616 160 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "93" + side + { + "id" "2134" + "plane" "(1344 528 0) (1344 352 0) (1593 352 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2133" + "plane" "(1344 352 0) (1344 528 0) (1344 528 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2132" + "plane" "(1593 528 128) (1593 528 0) (1593 352 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2131" + "plane" "(1344 528 128) (1344 528 0) (1593 528 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2130" + "plane" "(1344 352 128) (1344 528 128) (1593 528 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2129" + "plane" "(1593 352 128) (1593 352 0) (1344 352 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "94" + side + { + "id" "2140" + "plane" "(1616 0 128) (1312 0 128) (1312 32 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2139" + "plane" "(1312 32 0) (1312 0 0) (1616 0 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2138" + "plane" "(1616 0 0) (1312 0 0) (1312 0 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2137" + "plane" "(1616 32 0) (1616 0 0) (1616 0 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2136" + "plane" "(1312 0 0) (1312 32 0) (1312 32 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2135" + "plane" "(1312 32 0) (1616 32 0) (1616 32 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "95" + side + { + "id" "2146" + "plane" "(1472 -144 128) (1440 -144 128) (1440 0 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2145" + "plane" "(1472 0 0) (1440 0 0) (1440 -144 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2144" + "plane" "(1440 -144 0) (1440 0 0) (1440 0 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2143" + "plane" "(1440 0 0) (1472 0 0) (1472 0 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2142" + "plane" "(1472 -144 0) (1440 -144 0) (1440 -144 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2141" + "plane" "(1472 0 0) (1472 -144 0) (1472 -144 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "96" + side + { + "id" "2152" + "plane" "(1616 -144 128) (1472 -144 128) (1472 0 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2151" + "plane" "(1616 0 0) (1472 0 0) (1472 -144 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2150" + "plane" "(1472 0 0) (1616 0 0) (1616 0 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2149" + "plane" "(1616 -144 0) (1472 -144 0) (1472 -144 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2148" + "plane" "(1616 0 0) (1616 -144 0) (1616 -144 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2147" + "plane" "(1472 -144 0) (1472 0 0) (1472 0 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "97" + side + { + "id" "2158" + "plane" "(1616 0 128) (1664 0 128) (1664 -144 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2157" + "plane" "(1616 -144 0) (1664 -144 0) (1664 0 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2156" + "plane" "(1664 0 0) (1664 -144 0) (1664 -144 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2155" + "plane" "(1616 0 0) (1664 0 0) (1664 0 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2154" + "plane" "(1664 -144 0) (1616 -144 0) (1616 -144 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2153" + "plane" "(1616 -144 0) (1616 0 0) (1616 0 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "98" + side + { + "id" "2164" + "plane" "(1440 -208 128) (1440 -144 128) (1680 -144 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2163" + "plane" "(1440 -144 0) (1440 -208 0) (1680 -208 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2162" + "plane" "(1440 -208 0) (1440 -144 0) (1440 -144 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2161" + "plane" "(1680 -144 0) (1680 -208 0) (1680 -208 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2160" + "plane" "(1440 -144 0) (1680 -144 0) (1680 -144 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2159" + "plane" "(1680 -208 0) (1440 -208 0) (1440 -208 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "99" + side + { + "id" "2170" + "plane" "(1488 -864 128) (1456 -864 128) (1456 -208 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2169" + "plane" "(1488 -208 0) (1456 -208 0) (1456 -864 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2168" + "plane" "(1488 -864 0) (1456 -864 0) (1456 -864 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2167" + "plane" "(1456 -208 0) (1488 -208 0) (1488 -208 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2166" + "plane" "(1456 -864 0) (1456 -208 0) (1456 -208 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2165" + "plane" "(1488 -208 0) (1488 -864 0) (1488 -864 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "100" + side + { + "id" "2176" + "plane" "(1488 -208 128) (1616 -208 128) (1616 -864 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2175" + "plane" "(1488 -864 0) (1616 -864 0) (1616 -208 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2174" + "plane" "(1616 -864 0) (1488 -864 0) (1488 -864 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2173" + "plane" "(1488 -208 0) (1616 -208 0) (1616 -208 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2172" + "plane" "(1488 -864 0) (1488 -208 0) (1488 -208 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2171" + "plane" "(1616 -208 0) (1616 -864 0) (1616 -864 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "101" + side + { + "id" "2182" + "plane" "(1616 -208 128) (1648 -208 128) (1648 -864 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2181" + "plane" "(1616 -864 0) (1648 -864 0) (1648 -208 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2180" + "plane" "(1648 -208 0) (1648 -864 0) (1648 -864 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2179" + "plane" "(1648 -864 0) (1616 -864 0) (1616 -864 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2178" + "plane" "(1616 -208 0) (1648 -208 0) (1648 -208 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2177" + "plane" "(1616 -864 0) (1616 -208 0) (1616 -208 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "102" + side + { + "id" "2188" + "plane" "(1456 -864 128) (1440 -864 128) (1440 -208 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2187" + "plane" "(1456 -208 0) (1440 -208 0) (1440 -864 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2186" + "plane" "(1456 -864 0) (1440 -864 0) (1440 -864 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2185" + "plane" "(1440 -208 0) (1456 -208 0) (1456 -208 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2184" + "plane" "(1456 -208 0) (1456 -864 0) (1456 -864 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2183" + "plane" "(1440 -864 0) (1440 -208 0) (1440 -208 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "103" + side + { + "id" "2194" + "plane" "(1424 -864 128) (1648 -864 128) (1648 -944 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2193" + "plane" "(1424 -944 0) (1648 -944 0) (1648 -864 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2192" + "plane" "(1648 -864 0) (1648 -944 0) (1648 -944 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2191" + "plane" "(1424 -864 0) (1648 -864 0) (1648 -864 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2190" + "plane" "(1648 -944 0) (1424 -944 0) (1424 -944 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2189" + "plane" "(1424 -944 0) (1424 -864 0) (1424 -864 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "104" + side + { + "id" "2200" + "plane" "(1280 -944 128) (1616 -944 128) (1616 -1248 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2199" + "plane" "(1616 -944 96) (1280 -944 96) (1280 -1248 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2198" + "plane" "(1280 -944 96) (1616 -944 96) (1616 -944 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2197" + "plane" "(1616 -944 96) (1616 -1248 96) (1616 -1248 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2196" + "plane" "(1616 -1248 96) (1280 -1248 96) (1280 -1248 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2195" + "plane" "(1280 -1248 96) (1280 -944 96) (1280 -944 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "105" + side + { + "id" "2206" + "plane" "(1616 -944 128) (1648 -944 128) (1648 -1248 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2205" + "plane" "(1616 -1248 96) (1648 -1248 96) (1648 -944 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2204" + "plane" "(1648 -944 96) (1648 -1248 96) (1648 -1248 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2203" + "plane" "(1616 -944 96) (1648 -944 96) (1648 -944 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2202" + "plane" "(1648 -1248 96) (1616 -1248 96) (1616 -1248 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2201" + "plane" "(1616 -1248 96) (1616 -944 96) (1616 -944 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "106" + side + { + "id" "2212" + "plane" "(1648 -1296 128) (1168 -1296 128) (1168 -1248 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2211" + "plane" "(1168 -1248 96) (1168 -1296 96) (1648 -1296 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2210" + "plane" "(1648 -1296 96) (1168 -1296 96) (1168 -1296 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2209" + "plane" "(1648 -1248 96) (1648 -1296 96) (1648 -1296 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2208" + "plane" "(1168 -1296 96) (1168 -1248 96) (1168 -1248 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2207" + "plane" "(1168 -1248 96) (1648 -1248 96) (1648 -1248 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "108" + side + { + "id" "2218" + "plane" "(1204 -1012.15 128) (1204 -1116 128) (1200 -1120 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -0.00234985] 0.078125" + "vaxis" "[0 1 0 -0.00279045] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2217" + "plane" "(1200 -1008 96) (1200 -1120 96) (1204 -1116 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2216" + "plane" "(1200 -1120 96) (1200 -1008 96) (1200 -1008 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2215" + "plane" "(1204 -1012.15 96) (1204 -1116 96) (1204 -1116 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2214" + "plane" "(1200 -1008 96) (1204 -1012.15 96) (1204 -1012.15 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2213" + "plane" "(1204 -1116 96) (1200 -1120 96) (1200 -1120 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "107" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "109" + side + { + "id" "2224" + "plane" "(1276 -1116 128) (1204 -1116 128) (1204 -1012 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -0.00234985] 0.078125" + "vaxis" "[0 1 0 -0.00279045] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2223" + "plane" "(1204 -1116 96) (1276 -1116 96) (1276 -1012 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2222" + "plane" "(1276 -1116 96) (1204 -1116 96) (1204 -1116 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2221" + "plane" "(1204 -1012 96) (1276 -1012 96) (1276 -1012 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2220" + "plane" "(1204 -1116 96) (1204 -1012 96) (1204 -1012 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2219" + "plane" "(1276 -1012 96) (1276 -1116 96) (1276 -1116 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "107" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "110" + side + { + "id" "2230" + "plane" "(1276 -1012 128) (1204 -1012 128) (1200 -1008 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 111.948] 0.078" + "vaxis" "[1 0 0 21.525] 0.109" + "rotation" "270" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2229" + "plane" "(1204 -1012 96) (1276 -1012 96) (1280 -1008 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2228" + "plane" "(1200 -1008 96) (1280 -1008 96) (1280 -1008 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2227" + "plane" "(1276 -1012 96) (1204 -1012 96) (1204 -1012 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2226" + "plane" "(1204 -1012 96) (1200 -1008 96) (1200 -1008 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2225" + "plane" "(1280 -1008 96) (1276 -1012 96) (1276 -1012 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "107" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "111" + side + { + "id" "2236" + "plane" "(1280 -1120 128) (1200 -1120 128) (1204 -1116 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 -19.9483] 0.078" + "vaxis" "[-1 0 0 14.475] 0.109" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2235" + "plane" "(1200 -1120 96) (1280 -1120 96) (1276 -1116 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2234" + "plane" "(1280 -1120 96) (1200 -1120 96) (1200 -1120 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2233" + "plane" "(1204 -1116 96) (1276 -1116 96) (1276 -1116 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2232" + "plane" "(1200 -1120 96) (1204 -1116 96) (1204 -1116 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2231" + "plane" "(1276 -1116 96) (1280 -1120 96) (1280 -1120 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "107" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "112" + side + { + "id" "2242" + "plane" "(1280 -1008 128) (1280 -1120 128) (1276 -1116 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -0.00234985] 0.078125" + "vaxis" "[0 1 0 -0.00279045] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2241" + "plane" "(1276 -1012 96) (1276 -1116 96) (1280 -1120 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2240" + "plane" "(1280 -1008 96) (1280 -1120 96) (1280 -1120 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2239" + "plane" "(1276 -1116 96) (1276 -1012 96) (1276 -1012 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2238" + "plane" "(1276 -1012 96) (1280 -1008 96) (1280 -1008 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2237" + "plane" "(1280 -1120 96) (1276 -1116 96) (1276 -1116 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "107" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "113" + side + { + "id" "2248" + "plane" "(1168 -1296 128) (1136 -1296 128) (1136 -944 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2247" + "plane" "(1168 -944 96) (1136 -944 96) (1136 -1296 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2246" + "plane" "(1136 -1296 96) (1136 -944 96) (1136 -944 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2245" + "plane" "(1136 -944 96) (1168 -944 96) (1168 -944 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2244" + "plane" "(1168 -1296 96) (1136 -1296 96) (1136 -1296 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2243" + "plane" "(1168 -944 96) (1168 -1296 96) (1168 -1296 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "114" + side + { + "id" "2254" + "plane" "(1168 -1248 128) (1168 -944 128) (1200 -944 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2253" + "plane" "(1200 -944 96) (1168 -944 96) (1168 -1248 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2252" + "plane" "(1168 -944 96) (1200 -944 96) (1200 -944 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2251" + "plane" "(1168 -1248 96) (1168 -944 96) (1168 -944 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2250" + "plane" "(1200 -1248 96) (1168 -1248 96) (1168 -1248 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2249" + "plane" "(1200 -944 96) (1200 -1248 96) (1200 -1248 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "115" + side + { + "id" "2260" + "plane" "(1200 -1008 128) (1200 -944 128) (1280 -944 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2259" + "plane" "(1280 -944 96) (1200 -944 96) (1200 -1008 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2258" + "plane" "(1200 -944 96) (1280 -944 96) (1280 -944 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2257" + "plane" "(1200 -1008 96) (1200 -944 96) (1200 -944 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2256" + "plane" "(1280 -944 96) (1280 -1008 96) (1280 -1008 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2255" + "plane" "(1280 -1008 96) (1200 -1008 96) (1200 -1008 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "116" + side + { + "id" "2266" + "plane" "(1280 -1248 128) (1200 -1248 128) (1200 -1120 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2265" + "plane" "(1200 -1120 96) (1200 -1248 96) (1280 -1248 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2264" + "plane" "(1280 -1248 96) (1200 -1248 96) (1200 -1248 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2263" + "plane" "(1200 -1248 96) (1200 -1120 96) (1200 -1120 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2262" + "plane" "(1280 -1120 96) (1280 -1248 96) (1280 -1248 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2261" + "plane" "(1200 -1120 96) (1280 -1120 96) (1280 -1120 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "117" + side + { + "id" "2272" + "plane" "(1136 -896 128) (1136 -880 128) (1424 -880 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2271" + "plane" "(1136 -880 0) (1136 -896 0) (1424 -896 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2270" + "plane" "(1136 -896 0) (1136 -880 0) (1136 -880 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2269" + "plane" "(1424 -880 0) (1424 -896 0) (1424 -896 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2268" + "plane" "(1424 -896 0) (1136 -896 0) (1136 -896 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2267" + "plane" "(1136 -880 0) (1424 -880 0) (1424 -880 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "118" + side + { + "id" "2278" + "plane" "(1424 -944 128) (1136 -944 128) (1136 -896 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2277" + "plane" "(1136 -896 0) (1136 -944 0) (1424 -944 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2276" + "plane" "(1136 -944 0) (1136 -896 0) (1136 -896 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2275" + "plane" "(1424 -944 0) (1136 -944 0) (1136 -944 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2274" + "plane" "(1424 -896 0) (1424 -944 0) (1424 -944 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2273" + "plane" "(1136 -896 0) (1424 -896 0) (1424 -896 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "119" + side + { + "id" "2284" + "plane" "(1104 -880 128) (1104 -864 128) (1360 -864 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2283" + "plane" "(1104 -864 56) (1104 -864 128) (1104 -880 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2282" + "plane" "(1360 -864 128) (1104 -864 128) (1104 -864 56)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2281" + "plane" "(1104 -880 56) (1104 -880 128) (1360 -880 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2280" + "plane" "(1360 -864 56) (1104 -864 56) (1104 -880 56)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2279" + "plane" "(1360 -880 56) (1360 -880 128) (1360 -864 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "120" + side + { + "id" "2290" + "plane" "(1248 -864 32) (1248 -224 32) (1424 -224 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -79] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1248 -864 32]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 5 0 0 0 0 0" + "row2" "0 0 5 5 5 0 0 0 0" + "row3" "0 0 0 0 0 0 5 0 0" + "row4" "0 0 0 0 5 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 50 0 0 0 0 0" + "row1" "155 180 0 0 0 0 0 0 0" + "row2" "255 255 255 255 255 255 55 0 0" + "row3" "200 255 255 255 125 200 250 0 0" + "row4" "0 250 250 255 255 250 255 255 75" + "row5" "0 255 255 255 255 255 255 225 25" + "row6" "25 175 255 255 225 255 255 200 0" + "row7" "75 50 255 225 255 250 255 0 0" + "row8" "0 0 125 200 250 255 225 0 75" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "2289" + "plane" "(1248 -224 31) (1248 -224 32) (1248 -864 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2288" + "plane" "(1424 -864 31) (1424 -864 32) (1424 -224 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2287" + "plane" "(1248 -864 31) (1248 -864 32) (1424 -864 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2286" + "plane" "(1424 -224 31) (1424 -224 32) (1248 -224 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2285" + "plane" "(1248 -224 31) (1248 -864 31) (1424 -864 31)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "121" + side + { + "id" "2296" + "plane" "(992 -928 32) (992 -624 32) (1248 -624 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -79] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[992 -928 32]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 1 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 2 5 0" + "row5" "0 0 0 0 0 2 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "255 0 0 0 0 0 0 0 0" + "row3" "255 0 0 0 0 0 0 0 0" + "row4" "255 255 255 255 255 255 255 255 255" + "row5" "255 255 255 255 255 255 255 255 255" + "row6" "255 255 255 255 255 0 255 255 255" + "row7" "255 255 0 0 0 0 0 255 255" + "row8" "0 0 255 0 0 0 0 0 205" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "2295" + "plane" "(992 -624 31) (992 -624 32) (992 -928 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2294" + "plane" "(1248 -928 31) (1248 -928 32) (1248 -624 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2293" + "plane" "(1248 -624 31) (1248 -624 32) (992 -624 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2292" + "plane" "(992 -928 31) (992 -928 32) (1248 -928 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2291" + "plane" "(992 -624 31) (992 -928 31) (1248 -928 31)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "122" + side + { + "id" "2302" + "plane" "(768 -624 32) (992 -624 32) (992 -1056 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -79] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[768 -1056 32]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 3 0 0 0 0 0" + "row2" "0 0 0 3 3 0 0 0 0" + "row3" "0 0 3 3 3 3 0 0 0" + "row4" "0 0 0 0 3 6 9 0 0" + "row5" "0 0 0 3 3 6 0 0 0" + "row6" "0 0 0 3 0 0 0 0 0" + "row7" "0 0 3 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "255 255 255 255 255 255 250 255 0" + "row1" "255 255 255 255 255 255 255 0 0" + "row2" "255 255 255 255 255 255 255 0 0" + "row3" "255 255 255 255 255 255 255 0 0" + "row4" "255 255 255 255 255 255 255 130 255" + "row5" "255 255 255 255 255 255 255 255 255" + "row6" "255 255 255 255 255 255 255 255 255" + "row7" "255 0 0 255 255 255 255 255 255" + "row8" "0 0 0 0 30 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "2301" + "plane" "(992 -1056 31) (992 -1056 32) (992 -624 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2300" + "plane" "(992 -624 31) (992 -624 32) (768 -624 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2299" + "plane" "(768 -1056 31) (768 -1056 32) (992 -1056 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2298" + "plane" "(768 -624 31) (768 -624 32) (768 -1056 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2297" + "plane" "(768 -1056 31) (992 -1056 31) (992 -624 31)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "123" + side + { + "id" "2308" + "plane" "(688 -1056 32) (688 -704 32) (768 -704 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -79] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[688 -1056 32]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0 0 5 255 255" + "row1" "0 0 0 0 0 255 255 255 255" + "row2" "0 0 0 0 0 255 255 255 255" + "row3" "0 0 0 0 0 0 255 255 255" + "row4" "255 0 0 0 175 255 255 255 255" + "row5" "0 0 0 0 255 255 255 255 255" + "row6" "0 0 255 255 255 255 255 255 255" + "row7" "0 0 0 0 0 0 255 255 255" + "row8" "0 0 0 0 0 0 255 255 255" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "2307" + "plane" "(688 -704 31) (688 -704 32) (688 -1056 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2306" + "plane" "(768 -1056 31) (768 -1056 32) (768 -704 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2305" + "plane" "(768 -704 31) (768 -704 32) (688 -704 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2304" + "plane" "(688 -1056 31) (688 -1056 32) (768 -1056 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2303" + "plane" "(688 -704 31) (688 -1056 31) (768 -1056 31)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "124" + side + { + "id" "2314" + "plane" "(1135 -624 62) (768 -624 62) (768 -561 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -64] 0.125" + "vaxis" "[0 -1 0 -7] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2313" + "plane" "(768 -561 32) (768 -624 32) (1135 -624 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2312" + "plane" "(768 -624 32) (768 -561 32) (768 -561 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8.94241] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2311" + "plane" "(1135 -624 32) (768 -624 32) (768 -624 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2310" + "plane" "(1135 -561 32) (1135 -624 32) (1135 -624 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2309" + "plane" "(768 -561 32) (1135 -561 32) (1135 -561 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "125" + side + { + "id" "2320" + "plane" "(1135 -256 62) (1248 -256 62) (1248 -624 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -64] 0.125" + "vaxis" "[0 -1 0 -7] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2319" + "plane" "(1135 -624 32) (1248 -624 32) (1248 -256 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2318" + "plane" "(1248 -256 32) (1248 -624 32) (1248 -624 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2317" + "plane" "(1248 -624 32) (1135 -624 32) (1135 -624 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2316" + "plane" "(1135 -256 32) (1248 -256 32) (1248 -256 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2315" + "plane" "(1135 -624 32) (1135 -256 32) (1135 -256 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "126" + side + { + "id" "2326" + "plane" "(1128 -553 62) (768 -553 62) (768 -264 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2325" + "plane" "(768 -264 32) (768 -553 32) (1128 -553 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2324" + "plane" "(768 -553 32) (768 -264 32) (768 -264 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8.94241] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2323" + "plane" "(1128 -553 32) (768 -553 32) (768 -553 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2322" + "plane" "(1128 -264 32) (1128 -553 32) (1128 -553 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2321" + "plane" "(768 -264 32) (1128 -264 32) (1128 -264 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "127" + side + { + "id" "2332" + "plane" "(768 -256 62) (768 115 62) (1248 115 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -64] 0.125" + "vaxis" "[0 -1 0 -7] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2331" + "plane" "(768 115 32) (768 -256 32) (1248 -256 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2330" + "plane" "(768 -256 32) (768 115 32) (768 115 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8.94241] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2329" + "plane" "(1248 115 32) (1248 -256 32) (1248 -256 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2328" + "plane" "(768 115 32) (1248 115 32) (1248 115 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2327" + "plane" "(1248 -256 32) (768 -256 32) (768 -256 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "128" + side + { + "id" "2338" + "plane" "(528 -128 62) (528 96 62) (720 96 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2337" + "plane" "(720 96 32) (528 96 32) (528 -128 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2336" + "plane" "(528 -128 32) (528 96 32) (528 96 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2335" + "plane" "(528 96 32) (720 96 32) (720 96 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2334" + "plane" "(720 96 32) (720 -128 32) (720 -128 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2333" + "plane" "(720 -128 32) (528 -128 32) (528 -128 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "129" + side + { + "id" "2344" + "plane" "(752 -160 62) (720 -160 62) (720 96 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2343" + "plane" "(720 -160 32) (752 -160 32) (752 96 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2342" + "plane" "(752 -160 32) (720 -160 32) (720 -160 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2341" + "plane" "(752 96 32) (752 -160 32) (752 -160 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -9] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2340" + "plane" "(720 96 32) (752 96 32) (752 96 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2339" + "plane" "(720 -160 32) (720 96 32) (720 96 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "130" + side + { + "id" "2350" + "plane" "(752 144 62) (768 144 62) (768 -160 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 91] 0.125" + "vaxis" "[1 0 0 -87] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2349" + "plane" "(752 -160 32) (768 -160 32) (768 144 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2348" + "plane" "(768 144 32) (768 -160 32) (768 -160 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2347" + "plane" "(752 144 32) (768 144 32) (768 144 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2346" + "plane" "(768 -160 32) (752 -160 32) (752 -160 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2345" + "plane" "(752 -160 32) (752 144 32) (752 144 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -9] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "131" + side + { + "id" "2356" + "plane" "(528 96 62) (528 144 62) (752 144 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2355" + "plane" "(752 144 32) (528 144 32) (528 96 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2354" + "plane" "(528 144 32) (752 144 32) (752 144 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2353" + "plane" "(528 96 32) (528 144 32) (528 144 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2352" + "plane" "(752 144 32) (752 96 32) (752 96 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -9] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2351" + "plane" "(752 96 32) (528 96 32) (528 96 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "132" + side + { + "id" "2362" + "plane" "(440 0 62) (440 128 62) (528 128 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2361" + "plane" "(440 128 32) (440 0 32) (528 0 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2360" + "plane" "(528 128 32) (528 0 32) (528 0 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2359" + "plane" "(440 0 32) (440 128 32) (440 128 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2358" + "plane" "(440 128 32) (528 128 32) (528 128 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2357" + "plane" "(528 0 32) (440 0 32) (440 0 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "133" + side + { + "id" "2368" + "plane" "(424 0 62) (528 0 62) (528 -216 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2367" + "plane" "(424 -216 32) (528 -216 32) (528 0 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2366" + "plane" "(528 0 32) (528 -216 32) (528 -216 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2365" + "plane" "(528 -216 32) (424 -216 32) (424 -216 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2364" + "plane" "(424 0 32) (528 0 32) (528 0 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2363" + "plane" "(424 -216 32) (424 0 32) (424 0 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "134" + side + { + "id" "2374" + "plane" "(720 -160 62) (528 -160 62) (528 -128 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2373" + "plane" "(528 -128 32) (528 -160 32) (720 -160 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2372" + "plane" "(720 -160 32) (528 -160 32) (528 -160 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2371" + "plane" "(528 -160 32) (528 -128 32) (528 -128 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2370" + "plane" "(720 -128 32) (720 -160 32) (720 -160 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2369" + "plane" "(528 -128 32) (720 -128 32) (720 -128 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "135" + side + { + "id" "2380" + "plane" "(585 144 62) (585 160 62) (710 160 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 91] 0.125" + "vaxis" "[1 0 0 -87] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2379" + "plane" "(585 160 32) (585 144 32) (710 144 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2378" + "plane" "(585 144 32) (585 160 32) (585 160 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2377" + "plane" "(710 160 32) (710 144 32) (710 144 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2376" + "plane" "(585 160 32) (710 160 32) (710 160 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2375" + "plane" "(710 144 32) (585 144 32) (585 144 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "136" + side + { + "id" "2386" + "plane" "(568 264 62) (736 264 62) (736 160 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2385" + "plane" "(568 160 32) (736 160 32) (736 264 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2384" + "plane" "(568 264 62) (568 160 62) (568 160 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2383" + "plane" "(736 264 32) (736 160 32) (736 160 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2382" + "plane" "(736 264 62) (568 264 62) (568 264 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -48] 0.16" + "vaxis" "[0 0 -1 67] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2381" + "plane" "(736 160 32) (568 160 32) (568 160 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "137" + side + { + "id" "2392" + "plane" "(1112 -1720 128) (1112 -1312 128) (1304 -1312 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2391" + "plane" "(1112 -1312 96) (1112 -1720 96) (1304 -1720 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2390" + "plane" "(1112 -1720 96) (1112 -1312 96) (1112 -1312 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2389" + "plane" "(1304 -1312 96) (1304 -1720 96) (1304 -1720 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2388" + "plane" "(1112 -1312 96) (1304 -1312 96) (1304 -1312 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2387" + "plane" "(1304 -1720 96) (1112 -1720 96) (1112 -1720 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "138" + side + { + "id" "2398" + "plane" "(1136 -1312 128) (1136 -1296 128) (1304 -1296 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 26] 0.156" + "vaxis" "[1 0 0 -87] 0.218" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2397" + "plane" "(1136 -1296 96) (1136 -1312 96) (1304 -1312 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2396" + "plane" "(1136 -1312 96) (1136 -1296 96) (1136 -1296 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2395" + "plane" "(1304 -1296 96) (1304 -1312 96) (1304 -1312 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2394" + "plane" "(1136 -1296 96) (1304 -1296 96) (1304 -1296 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2393" + "plane" "(1304 -1312 96) (1136 -1312 96) (1136 -1312 128)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "139" + side + { + "id" "2404" + "plane" "(533 -1856 32) (533 -1824 32) (658 -1824 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2403" + "plane" "(533 -1824 0) (533 -1856 0) (658 -1856 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2402" + "plane" "(533 -1856 0) (533 -1824 0) (533 -1824 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2401" + "plane" "(658 -1824 0) (658 -1856 0) (658 -1856 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2400" + "plane" "(533 -1824 0) (658 -1824 0) (658 -1824 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2399" + "plane" "(658 -1856 0) (533 -1856 0) (533 -1856 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "140" + side + { + "id" "2410" + "plane" "(648 -1856 32) (664 -1856 32) (664 -2056 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2409" + "plane" "(664 -1856 0) (648 -1856 0) (648 -2056 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2408" + "plane" "(648 -1856 0) (664 -1856 0) (664 -1856 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2407" + "plane" "(664 -1856 0) (664 -2056 0) (664 -2056 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2406" + "plane" "(664 -2056 0) (648 -2056 0) (648 -2056 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2405" + "plane" "(648 -2056 0) (648 -1856 0) (648 -1856 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "141" + side + { + "id" "2416" + "plane" "(664 -2080 32) (512 -2080 32) (512 -2056 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2415" + "plane" "(512 -2056 0) (512 -2080 0) (664 -2080 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2414" + "plane" "(512 -2080 0) (512 -2056 0) (512 -2056 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2413" + "plane" "(664 -2080 0) (512 -2080 0) (512 -2080 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2412" + "plane" "(664 -2056 0) (664 -2080 0) (664 -2080 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2411" + "plane" "(512 -2056 0) (664 -2056 0) (664 -2056 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "142" + side + { + "id" "2422" + "plane" "(149 -2112 32) (149 -2080 32) (384 -2080 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2421" + "plane" "(149 -2080 0) (149 -2112 0) (384 -2112 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2420" + "plane" "(149 -2112 0) (149 -2080 0) (149 -2080 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2419" + "plane" "(384 -2080 0) (384 -2112 0) (384 -2112 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2418" + "plane" "(384 -2112 0) (149 -2112 0) (149 -2112 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2417" + "plane" "(149 -2080 0) (384 -2080 0) (384 -2080 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "143" + side + { + "id" "2428" + "plane" "(-408 -2040 48) (-492 -2124 48) (-716 -1900 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2427" + "plane" "(-632 -1816 32) (-716 -1900 32) (-492 -2124 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2426" + "plane" "(-408 -2040 32) (-492 -2124 32) (-492 -2124 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2425" + "plane" "(-716 -1900 32) (-632 -1816 32) (-632 -1816 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2424" + "plane" "(-492 -2124 32) (-716 -1900 32) (-716 -1900 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2423" + "plane" "(-632 -1816 32) (-408 -2040 32) (-408 -2040 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "144" + side + { + "id" "2434" + "plane" "(-492 -2124 48) (-512 -2144 48) (-736 -1920 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -76] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2433" + "plane" "(-716 -1900 32) (-736 -1920 32) (-512 -2144 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2432" + "plane" "(-492 -2124 32) (-512 -2144 32) (-512 -2144 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2431" + "plane" "(-736 -1920 32) (-716 -1900 32) (-716 -1900 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2430" + "plane" "(-512 -2144 32) (-736 -1920 32) (-736 -1920 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2429" + "plane" "(-716 -1900 32) (-492 -2124 32) (-492 -2124 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "145" + side + { + "id" "2440" + "plane" "(-512 -2144 48) (-576 -2208 48) (-800 -1984 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2439" + "plane" "(-736 -1920 32) (-800 -1984 32) (-576 -2208 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2438" + "plane" "(-512 -2144 32) (-576 -2208 32) (-576 -2208 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2437" + "plane" "(-800 -1984 32) (-736 -1920 32) (-736 -1920 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2436" + "plane" "(-576 -2208 32) (-800 -1984 32) (-800 -1984 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2435" + "plane" "(-736 -1920 32) (-512 -2144 32) (-512 -2144 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "146" + side + { + "id" "2446" + "plane" "(-388 -2020 48) (-408 -2040 48) (-632 -1816 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -76] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2445" + "plane" "(-612 -1796 32) (-632 -1816 32) (-408 -2040 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2444" + "plane" "(-388 -2020 32) (-408 -2040 32) (-408 -2040 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2443" + "plane" "(-632 -1816 32) (-612 -1796 32) (-612 -1796 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2442" + "plane" "(-612 -1796 32) (-388 -2020 32) (-388 -2020 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2441" + "plane" "(-408 -2040 32) (-632 -1816 32) (-632 -1816 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "147" + side + { + "id" "2452" + "plane" "(-324 -1956 48) (-388 -2020 48) (-612 -1796 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2451" + "plane" "(-548 -1732 32) (-612 -1796 32) (-388 -2020 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2450" + "plane" "(-324 -1956 32) (-388 -2020 32) (-388 -2020 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2449" + "plane" "(-612 -1796 32) (-548 -1732 32) (-548 -1732 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2448" + "plane" "(-548 -1732 32) (-324 -1956 32) (-324 -1956 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2447" + "plane" "(-388 -2020 32) (-612 -1796 32) (-612 -1796 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "148" + side + { + "id" "2458" + "plane" "(-512 -2272 48) (-576 -2208 48) (-324 -1956 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2457" + "plane" "(-576 -2208 32) (-512 -2272 32) (-260 -2020 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2456" + "plane" "(-512 -2272 32) (-512 -2272 48) (-260 -2020 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2455" + "plane" "(-324 -1956 32) (-324 -1956 48) (-576 -2208 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2454" + "plane" "(-260 -2020 32) (-260 -2020 48) (-324 -1956 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2453" + "plane" "(-576 -2208 32) (-576 -2208 48) (-512 -2272 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "149" + side + { + "id" "2464" + "plane" "(-688 -1792 64) (-672 -1792 64) (-672 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2463" + "plane" "(-688 -1856 0) (-672 -1856 0) (-672 -1792 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2462" + "plane" "(-672 -1792 0) (-672 -1856 0) (-672 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2461" + "plane" "(-688 -1792 0) (-672 -1792 0) (-672 -1792 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2460" + "plane" "(-672 -1856 0) (-688 -1856 0) (-688 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2459" + "plane" "(-688 -1856 0) (-688 -1792 0) (-688 -1792 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "150" + side + { + "id" "2470" + "plane" "(-656 -1792 64) (-624 -1792 64) (-624 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2469" + "plane" "(-656 -1856 0) (-624 -1856 0) (-624 -1792 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2468" + "plane" "(-624 -1792 0) (-624 -1856 0) (-624 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2467" + "plane" "(-656 -1792 0) (-624 -1792 0) (-624 -1792 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2466" + "plane" "(-624 -1856 0) (-656 -1856 0) (-656 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2465" + "plane" "(-656 -1856 0) (-656 -1792 0) (-656 -1792 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "151" + side + { + "id" "2476" + "plane" "(-736 -1760 64) (-688 -1760 64) (-688 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2475" + "plane" "(-736 -1856 0) (-688 -1856 0) (-688 -1760 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2474" + "plane" "(-688 -1760 0) (-688 -1856 0) (-688 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2473" + "plane" "(-736 -1760 0) (-688 -1760 0) (-688 -1760 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2472" + "plane" "(-688 -1856 0) (-736 -1856 0) (-736 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2471" + "plane" "(-736 -1856 0) (-736 -1760 0) (-736 -1760 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "152" + side + { + "id" "2482" + "plane" "(-672 -1808 64) (-656 -1808 64) (-656 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2481" + "plane" "(-672 -1856 0) (-656 -1856 0) (-656 -1808 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2480" + "plane" "(-656 -1808 0) (-656 -1856 0) (-656 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2479" + "plane" "(-672 -1808 0) (-656 -1808 0) (-656 -1808 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2478" + "plane" "(-656 -1856 0) (-672 -1856 0) (-672 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2477" + "plane" "(-672 -1856 0) (-672 -1808 0) (-672 -1808 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "153" + side + { + "id" "2488" + "plane" "(-688 -1536 64) (-672 -1536 64) (-672 -1792 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2487" + "plane" "(-688 -1792 0) (-672 -1792 0) (-672 -1536 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2486" + "plane" "(-672 -1536 0) (-672 -1792 0) (-672 -1792 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2485" + "plane" "(-688 -1536 0) (-672 -1536 0) (-672 -1536 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2484" + "plane" "(-672 -1792 0) (-688 -1792 0) (-688 -1792 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2483" + "plane" "(-688 -1792 0) (-688 -1536 0) (-688 -1536 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "154" + side + { + "id" "2494" + "plane" "(-672 -1536 64) (-656 -1536 64) (-656 -1808 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2493" + "plane" "(-672 -1808 0) (-656 -1808 0) (-656 -1536 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2492" + "plane" "(-656 -1536 0) (-656 -1808 0) (-656 -1808 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2491" + "plane" "(-672 -1536 0) (-656 -1536 0) (-656 -1536 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2490" + "plane" "(-656 -1808 0) (-672 -1808 0) (-672 -1808 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2489" + "plane" "(-672 -1808 0) (-672 -1536 0) (-672 -1536 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "155" + side + { + "id" "2500" + "plane" "(-656 -1536 64) (-624 -1536 64) (-624 -1792 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2499" + "plane" "(-656 -1792 0) (-624 -1792 0) (-624 -1536 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2498" + "plane" "(-624 -1536 0) (-624 -1792 0) (-624 -1792 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2497" + "plane" "(-656 -1536 0) (-624 -1536 0) (-624 -1536 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2496" + "plane" "(-624 -1792 0) (-656 -1792 0) (-656 -1792 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2495" + "plane" "(-656 -1792 0) (-656 -1536 0) (-656 -1536 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "156" + side + { + "id" "2506" + "plane" "(-624 -1536 64) (-576 -1536 64) (-576 -1808 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2505" + "plane" "(-624 -1808 0) (-576 -1808 0) (-576 -1536 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2504" + "plane" "(-576 -1536 0) (-576 -1808 0) (-576 -1808 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2503" + "plane" "(-624 -1536 0) (-576 -1536 0) (-576 -1536 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2502" + "plane" "(-576 -1808 0) (-624 -1808 0) (-624 -1808 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2501" + "plane" "(-624 -1808 0) (-624 -1536 0) (-624 -1536 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "157" + side + { + "id" "2512" + "plane" "(-576 -1536 64) (-560 -1536 64) (-560 -1824 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2511" + "plane" "(-576 -1824 0) (-560 -1824 0) (-560 -1536 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2510" + "plane" "(-560 -1536 0) (-560 -1824 0) (-560 -1824 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2509" + "plane" "(-576 -1536 0) (-560 -1536 0) (-560 -1536 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2508" + "plane" "(-560 -1824 0) (-576 -1824 0) (-576 -1824 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2507" + "plane" "(-576 -1824 0) (-576 -1536 0) (-576 -1536 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "158" + side + { + "id" "2518" + "plane" "(-624 -1808 64) (-576 -1808 64) (-576 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2517" + "plane" "(-624 -1856 0) (-576 -1856 0) (-576 -1808 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2516" + "plane" "(-576 -1808 0) (-576 -1856 0) (-576 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2515" + "plane" "(-624 -1808 0) (-576 -1808 0) (-576 -1808 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2514" + "plane" "(-576 -1856 0) (-624 -1856 0) (-624 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2513" + "plane" "(-624 -1856 0) (-624 -1808 0) (-624 -1808 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "159" + side + { + "id" "2524" + "plane" "(-576 -1824 64) (-560 -1824 64) (-560 -1848 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2523" + "plane" "(-576 -1848 0) (-560 -1848 0) (-560 -1824 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2522" + "plane" "(-560 -1824 0) (-560 -1848 0) (-560 -1848 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2521" + "plane" "(-576 -1824 0) (-560 -1824 0) (-560 -1824 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2520" + "plane" "(-560 -1848 0) (-576 -1848 0) (-576 -1848 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2519" + "plane" "(-576 -1848 0) (-576 -1824 0) (-576 -1824 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "160" + side + { + "id" "2530" + "plane" "(-736 -1536 64) (-688 -1536 64) (-688 -1760 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2529" + "plane" "(-736 -1760 0) (-688 -1760 0) (-688 -1536 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2528" + "plane" "(-688 -1536 0) (-688 -1760 0) (-688 -1760 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2527" + "plane" "(-736 -1536 0) (-688 -1536 0) (-688 -1536 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2526" + "plane" "(-688 -1760 0) (-736 -1760 0) (-736 -1760 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2525" + "plane" "(-736 -1760 0) (-736 -1536 0) (-736 -1536 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "161" + side + { + "id" "2536" + "plane" "(-544 -1848 64) (-560 -1848 64) (-560 -1584 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 73] 0.125" + "vaxis" "[0 -1 0 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2535" + "plane" "(-544 -1584 0) (-560 -1584 0) (-560 -1848 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2534" + "plane" "(-560 -1848 0) (-560 -1584 0) (-560 -1584 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2533" + "plane" "(-560 -1584 0) (-544 -1584 0) (-544 -1584 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2532" + "plane" "(-544 -1848 0) (-560 -1848 0) (-560 -1848 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2531" + "plane" "(-544 -1584 0) (-544 -1848 0) (-544 -1848 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "162" + side + { + "id" "2542" + "plane" "(-544 -1832 64) (-544 -1600 64) (-408 -1600 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2541" + "plane" "(-544 -1600 0) (-544 -1832 0) (-408 -1832 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2540" + "plane" "(-408 -1600 0) (-408 -1832 0) (-408 -1832 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2539" + "plane" "(-544 -1832 0) (-544 -1600 0) (-544 -1600 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2538" + "plane" "(-544 -1600 0) (-408 -1600 0) (-408 -1600 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2537" + "plane" "(-408 -1832 0) (-544 -1832 0) (-544 -1832 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "163" + side + { + "id" "2548" + "plane" "(-1072 -1832 64) (-1072 -1592 64) (-832 -1592 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2547" + "plane" "(-1072 -1592 0) (-1072 -1832 0) (-832 -1832 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2546" + "plane" "(-1072 -1832 0) (-1072 -1592 0) (-1072 -1592 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2545" + "plane" "(-832 -1592 0) (-832 -1832 0) (-832 -1832 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2544" + "plane" "(-1072 -1592 0) (-832 -1592 0) (-832 -1592 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2543" + "plane" "(-832 -1832 0) (-1072 -1832 0) (-1072 -1832 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "164" + side + { + "id" "2554" + "plane" "(-896 -1592 64) (-1008 -1592 64) (-1024 -1552 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 73] 0.125" + "vaxis" "[0 -1 0 -63] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2553" + "plane" "(-880 -1552 0) (-1024 -1552 0) (-1008 -1592 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2552" + "plane" "(-896 -1592 0) (-1008 -1592 0) (-1008 -1592 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2551" + "plane" "(-1024 -1552 0) (-880 -1552 0) (-880 -1552 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2550" + "plane" "(-880 -1552 0) (-896 -1592 0) (-896 -1592 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2549" + "plane" "(-1008 -1592 0) (-1024 -1552 0) (-1024 -1552 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "165" + side + { + "id" "2560" + "plane" "(-880 -1552 64) (-832 -1552 64) (-832 -1592 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2559" + "plane" "(-896 -1592 0) (-832 -1592 0) (-832 -1552 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2558" + "plane" "(-832 -1552 0) (-832 -1592 0) (-832 -1592 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2557" + "plane" "(-832 -1592 0) (-896 -1592 0) (-896 -1592 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2556" + "plane" "(-880 -1552 0) (-832 -1552 0) (-832 -1552 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2555" + "plane" "(-896 -1592 0) (-880 -1552 0) (-880 -1552 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "166" + side + { + "id" "2566" + "plane" "(-1008 -1592 64) (-1072 -1592 64) (-1072 -1552 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2565" + "plane" "(-1024 -1552 0) (-1072 -1552 0) (-1072 -1592 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2564" + "plane" "(-1072 -1592 0) (-1072 -1552 0) (-1072 -1552 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2563" + "plane" "(-1008 -1592 0) (-1072 -1592 0) (-1072 -1592 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2562" + "plane" "(-1072 -1552 0) (-1024 -1552 0) (-1024 -1552 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2561" + "plane" "(-1024 -1552 0) (-1008 -1592 0) (-1008 -1592 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "167" + side + { + "id" "2572" + "plane" "(-1072 -1552 64) (-1072 -1536 64) (-832 -1536 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 73] 0.125" + "vaxis" "[0 -1 0 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2571" + "plane" "(-832 -1536 0) (-1072 -1536 0) (-1072 -1552 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2570" + "plane" "(-1072 -1552 0) (-1072 -1536 0) (-1072 -1536 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2569" + "plane" "(-1072 -1536 0) (-832 -1536 0) (-832 -1536 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2568" + "plane" "(-832 -1536 0) (-832 -1552 0) (-832 -1552 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2567" + "plane" "(-832 -1552 0) (-1072 -1552 0) (-1072 -1552 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "168" + side + { + "id" "2578" + "plane" "(-1120 -1304 64) (-1072 -1304 64) (-1072 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 73] 0.125" + "vaxis" "[0 -1 0 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2577" + "plane" "(-1072 -1856 0) (-1072 -1304 0) (-1120 -1304 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2576" + "plane" "(-1072 -1304 0) (-1072 -1856 0) (-1072 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2575" + "plane" "(-1120 -1304 0) (-1072 -1304 0) (-1072 -1304 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2574" + "plane" "(-1072 -1856 0) (-1120 -1856 0) (-1120 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2573" + "plane" "(-1120 -1856 0) (-1120 -1304 0) (-1120 -1304 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "169" + side + { + "id" "2584" + "plane" "(-1120 -1712 64) (-1344 -1712 64) (-1344 -1352 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2583" + "plane" "(-1344 -1352 0) (-1344 -1712 0) (-1120 -1712 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2582" + "plane" "(-1344 -1712 0) (-1344 -1352 0) (-1344 -1352 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2581" + "plane" "(-1120 -1712 0) (-1344 -1712 0) (-1344 -1712 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2580" + "plane" "(-1120 -1352 0) (-1120 -1712 0) (-1120 -1712 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2579" + "plane" "(-1344 -1352 0) (-1120 -1352 0) (-1120 -1352 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "170" + side + { + "id" "2590" + "plane" "(-1296 -1856 64) (-1296 -1760 64) (-1120 -1760 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2589" + "plane" "(-1120 -1760 0) (-1296 -1760 0) (-1296 -1856 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2588" + "plane" "(-1296 -1856 0) (-1296 -1760 0) (-1296 -1760 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2587" + "plane" "(-1296 -1760 0) (-1120 -1760 0) (-1120 -1760 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2586" + "plane" "(-1120 -1760 0) (-1120 -1856 0) (-1120 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2585" + "plane" "(-1120 -1856 0) (-1296 -1856 0) (-1296 -1856 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "171" + side + { + "id" "2596" + "plane" "(-1120 -1712 64) (-1120 -1760 64) (-1344 -1760 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 73] 0.125" + "vaxis" "[0 -1 0 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2595" + "plane" "(-1344 -1760 0) (-1120 -1760 0) (-1120 -1712 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2594" + "plane" "(-1120 -1712 0) (-1120 -1760 0) (-1120 -1760 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2593" + "plane" "(-1120 -1760 0) (-1344 -1760 0) (-1344 -1760 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2592" + "plane" "(-1344 -1760 0) (-1344 -1712 0) (-1344 -1712 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2591" + "plane" "(-1344 -1712 0) (-1120 -1712 0) (-1120 -1712 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "172" + side + { + "id" "2602" + "plane" "(-1344 -1760 64) (-1392 -1760 64) (-1392 -1304 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 73] 0.125" + "vaxis" "[0 -1 0 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2601" + "plane" "(-1344 -1304 32) (-1392 -1304 32) (-1392 -1760 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2600" + "plane" "(-1392 -1760 32) (-1392 -1304 32) (-1392 -1304 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2599" + "plane" "(-1392 -1304 32) (-1344 -1304 32) (-1344 -1304 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2598" + "plane" "(-1344 -1760 32) (-1392 -1760 32) (-1392 -1760 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2597" + "plane" "(-1344 -1304 32) (-1344 -1760 32) (-1344 -1760 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "173" + side + { + "id" "2608" + "plane" "(-1344 -1352 64) (-1344 -1304 64) (-1120 -1304 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 73] 0.125" + "vaxis" "[0 -1 0 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2607" + "plane" "(-1120 -1304 0) (-1344 -1304 0) (-1344 -1352 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2606" + "plane" "(-1344 -1304 0) (-1120 -1304 0) (-1120 -1304 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2605" + "plane" "(-1344 -1352 0) (-1344 -1304 0) (-1344 -1304 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2604" + "plane" "(-1120 -1304 0) (-1120 -1352 0) (-1120 -1352 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2603" + "plane" "(-1120 -1352 0) (-1344 -1352 0) (-1344 -1352 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "174" + side + { + "id" "2614" + "plane" "(-1648 -1528 64) (-1648 -1304 64) (-1392 -1304 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2613" + "plane" "(-1648 -1304 32) (-1648 -1528 32) (-1392 -1528 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2612" + "plane" "(-1648 -1528 32) (-1648 -1304 32) (-1648 -1304 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2611" + "plane" "(-1392 -1304 32) (-1392 -1528 32) (-1392 -1528 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2610" + "plane" "(-1648 -1304 32) (-1392 -1304 32) (-1392 -1304 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2609" + "plane" "(-1392 -1528 32) (-1648 -1528 32) (-1648 -1528 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "175" + side + { + "id" "2620" + "plane" "(-1648 -1560 64) (-1648 -1528 64) (-1392 -1528 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 73] 0.125" + "vaxis" "[0 -1 0 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2619" + "plane" "(-1648 -1528 32) (-1648 -1560 32) (-1392 -1560 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2618" + "plane" "(-1648 -1560 32) (-1648 -1528 32) (-1648 -1528 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2617" + "plane" "(-1392 -1528 32) (-1392 -1560 32) (-1392 -1560 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2616" + "plane" "(-1392 -1560 32) (-1648 -1560 32) (-1648 -1560 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2615" + "plane" "(-1648 -1528 32) (-1392 -1528 32) (-1392 -1528 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "176" + side + { + "id" "2626" + "plane" "(-1792 -1592 64) (-1792 -1264 64) (-1648 -1264 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 73] 0.125" + "vaxis" "[0 -1 0 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2625" + "plane" "(-1792 -1264 32) (-1792 -1592 32) (-1648 -1592 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2624" + "plane" "(-1792 -1592 32) (-1792 -1264 32) (-1792 -1264 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2623" + "plane" "(-1648 -1264 32) (-1648 -1592 32) (-1648 -1592 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2622" + "plane" "(-1792 -1264 32) (-1648 -1264 32) (-1648 -1264 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2621" + "plane" "(-1648 -1592 32) (-1792 -1592 32) (-1792 -1592 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "177" + side + { + "id" "2632" + "plane" "(-1648 -1304 64) (-1648 -1256 64) (-1392 -1256 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 73] 0.125" + "vaxis" "[0 -1 0 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2631" + "plane" "(-1648 -1256 32) (-1648 -1304 32) (-1392 -1304 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2630" + "plane" "(-1648 -1304 32) (-1648 -1256 32) (-1648 -1256 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2629" + "plane" "(-1392 -1256 32) (-1392 -1304 32) (-1392 -1304 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2628" + "plane" "(-1648 -1256 32) (-1392 -1256 32) (-1392 -1256 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2627" + "plane" "(-1392 -1304 32) (-1648 -1304 32) (-1648 -1304 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "178" + side + { + "id" "2638" + "plane" "(-1648 -1256 64) (-1648 -736 64) (-1392 -736 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2637" + "plane" "(-1648 -736 32) (-1648 -1256 32) (-1392 -1256 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2636" + "plane" "(-1648 -1256 32) (-1648 -736 32) (-1648 -736 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2635" + "plane" "(-1392 -736 32) (-1392 -1256 32) (-1392 -1256 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2634" + "plane" "(-1392 -1256 32) (-1648 -1256 32) (-1648 -1256 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2633" + "plane" "(-1648 -736 32) (-1392 -736 32) (-1392 -736 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "179" + side + { + "id" "2644" + "plane" "(-1648 -736 64) (-1648 -688 64) (-1392 -688 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 73] 0.125" + "vaxis" "[0 -1 0 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2643" + "plane" "(-1648 -688 0) (-1648 -736 0) (-1392 -736 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2642" + "plane" "(-1648 -736 0) (-1648 -688 0) (-1648 -688 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2641" + "plane" "(-1392 -688 0) (-1392 -736 0) (-1392 -736 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2640" + "plane" "(-1648 -688 0) (-1392 -688 0) (-1392 -688 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2639" + "plane" "(-1392 -736 0) (-1648 -736 0) (-1648 -736 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "180" + side + { + "id" "2650" + "plane" "(-1864 -1264 64) (-1864 -883 64) (-1664 -883 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2649" + "plane" "(-1864 -883 32) (-1864 -1264 32) (-1664 -1264 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2648" + "plane" "(-1864 -1264 32) (-1864 -883 32) (-1864 -883 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2647" + "plane" "(-1864 -883 32) (-1664 -883 32) (-1664 -883 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2646" + "plane" "(-1664 -1264 32) (-1864 -1264 32) (-1864 -1264 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2645" + "plane" "(-1664 -883 32) (-1664 -1264 32) (-1664 -1264 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "181" + side + { + "id" "2656" + "plane" "(-2032 -1304 256) (-2032 -944 256) (-1664 -944 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2655" + "plane" "(-2032 -944 224) (-2032 -1304 224) (-1664 -1304 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2654" + "plane" "(-2032 -1304 224) (-2032 -944 224) (-2032 -944 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2653" + "plane" "(-1664 -944 224) (-1664 -1304 224) (-1664 -1304 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2652" + "plane" "(-1664 -1304 224) (-2032 -1304 224) (-2032 -1304 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2651" + "plane" "(-2032 -944 224) (-1664 -944 224) (-1664 -944 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "182" + side + { + "id" "2662" + "plane" "(-1664 -712 224) (-1664 -1280 224) (-1648 -1280 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 31] 0.25" + "vaxis" "[1 0 0 -25] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2661" + "plane" "(-1664 -1280 256) (-1664 -1280 224) (-1664 -712 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2660" + "plane" "(-1648 -712 256) (-1648 -712 224) (-1648 -1280 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 26] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2659" + "plane" "(-1664 -712 256) (-1664 -712 224) (-1648 -712 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2658" + "plane" "(-1648 -1280 256) (-1648 -1280 224) (-1664 -1280 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2657" + "plane" "(-1664 -1280 256) (-1664 -712 256) (-1648 -712 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 26] 0.156" + "vaxis" "[0 -1 0 -72] 0.218" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "183" + side + { + "id" "2668" + "plane" "(-1664 -1560 224) (-1648 -1560 224) (-1648 -1280 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2667" + "plane" "(-1648 -1280 256) (-1648 -1280 224) (-1648 -1560 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 26] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2666" + "plane" "(-1648 -1560 256) (-1648 -1560 224) (-1664 -1560 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2665" + "plane" "(-1664 -1280 224) (-1648 -1280 224) (-1648 -1280 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2664" + "plane" "(-1664 -1280 256) (-1648 -1280 256) (-1648 -1560 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 26] 0.156" + "vaxis" "[0 -1 0 -72] 0.218" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2663" + "plane" "(-1664 -1560 256) (-1664 -1560 224) (-1664 -1280 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "184" + side + { + "id" "2674" + "plane" "(-1792 -1320 224) (-1792 -1560 224) (-1664 -1560 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2673" + "plane" "(-1792 -1560 256) (-1792 -1560 224) (-1792 -1320 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2672" + "plane" "(-1664 -1560 224) (-1792 -1560 224) (-1792 -1560 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2671" + "plane" "(-1792 -1320 256) (-1792 -1320 224) (-1664 -1320 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2670" + "plane" "(-1792 -1560 256) (-1792 -1320 256) (-1664 -1320 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2669" + "plane" "(-1664 -1320 256) (-1664 -1320 224) (-1664 -1560 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "185" + side + { + "id" "2680" + "plane" "(-1072 -656 224) (-1392 -656 224) (-1392 -1304 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2679" + "plane" "(-1392 -1304 224) (-1392 -656 224) (-1392 -656 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 26] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2678" + "plane" "(-1392 -656 224) (-1072 -656 224) (-1072 -656 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 26] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2677" + "plane" "(-1072 -1304 224) (-1392 -1304 224) (-1392 -1304 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 26] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2676" + "plane" "(-1072 -656 224) (-1072 -1304 224) (-1072 -1304 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2675" + "plane" "(-1072 -1304 256) (-1392 -1304 256) (-1392 -656 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "186" + side + { + "id" "2686" + "plane" "(-1136 -1304 224) (-1392 -1304 224) (-1392 -1160 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2685" + "plane" "(-1392 -1160 224) (-1392 -1304 224) (-1392 -1304 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -60] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2684" + "plane" "(-1392 -1304 64) (-1392 -1304 224) (-1136 -1304 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2683" + "plane" "(-1136 -1160 64) (-1136 -1304 64) (-1136 -1304 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2682" + "plane" "(-1392 -1160 64) (-1392 -1304 64) (-1136 -1304 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2681" + "plane" "(-1136 -1160 64) (-1136 -1160 224) (-1392 -1160 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "187" + side + { + "id" "2692" + "plane" "(-1392 -920 224) (-1392 -656 224) (-1104 -656 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2691" + "plane" "(-1392 -920 64) (-1392 -656 64) (-1392 -656 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -60] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2690" + "plane" "(-1104 -656 224) (-1392 -656 224) (-1392 -656 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2689" + "plane" "(-1104 -656 64) (-1392 -656 64) (-1392 -920 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2688" + "plane" "(-1392 -920 64) (-1392 -920 224) (-1104 -920 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2687" + "plane" "(-1104 -920 224) (-1104 -656 224) (-1104 -656 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "188" + side + { + "id" "2698" + "plane" "(-1392 -1160 64) (-1392 -920 64) (-1328 -920 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2697" + "plane" "(-1392 -920 0) (-1392 -1160 0) (-1328 -1160 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2696" + "plane" "(-1392 -1160 0) (-1392 -920 0) (-1392 -920 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2695" + "plane" "(-1328 -920 0) (-1328 -1160 0) (-1328 -1160 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2694" + "plane" "(-1392 -920 0) (-1328 -920 0) (-1328 -920 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2693" + "plane" "(-1328 -1160 0) (-1392 -1160 0) (-1392 -1160 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "189" + side + { + "id" "2704" + "plane" "(-1664 -883 224) (-1664 -688 224) (-1648 -688 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2703" + "plane" "(-1664 -883 64) (-1664 -688 64) (-1664 -688 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2702" + "plane" "(-1648 -883 224) (-1648 -688 224) (-1648 -688 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2701" + "plane" "(-1648 -688 64) (-1648 -688 224) (-1664 -688 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2700" + "plane" "(-1664 -688 64) (-1664 -883 64) (-1648 -883 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2699" + "plane" "(-1664 -883 64) (-1664 -883 224) (-1648 -883 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 0 1 31] 0.25" + "vaxis" "[1 0 0 -25] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "190" + side + { + "id" "2710" + "plane" "(-1864 -851 224) (-1664 -851 224) (-1664 -883 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2709" + "plane" "(-1864 -883 64) (-1664 -883 64) (-1664 -851 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2708" + "plane" "(-1864 -851 224) (-1864 -883 224) (-1864 -883 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2707" + "plane" "(-1664 -851 64) (-1664 -883 64) (-1664 -883 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2706" + "plane" "(-1664 -851 224) (-1864 -851 224) (-1864 -851 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2705" + "plane" "(-1664 -883 64) (-1864 -883 64) (-1864 -883 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -104] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "191" + side + { + "id" "2716" + "plane" "(-1800 -584 64) (-1104 -584 64) (-1104 -664 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2715" + "plane" "(-1800 -664 0) (-1104 -664 0) (-1104 -584 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2714" + "plane" "(-1104 -584 0) (-1104 -664 0) (-1104 -664 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2713" + "plane" "(-1800 -584 0) (-1104 -584 0) (-1104 -584 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2712" + "plane" "(-1104 -664 0) (-1800 -664 0) (-1800 -664 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2711" + "plane" "(-1800 -664 0) (-1800 -584 0) (-1800 -584 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "192" + side + { + "id" "2722" + "plane" "(-2240 -688 64) (-2240 -664 64) (-1104 -664 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2721" + "plane" "(-2240 -664 0) (-2240 -688 0) (-1104 -688 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2720" + "plane" "(-2240 -688 0) (-2240 -664 0) (-2240 -664 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2719" + "plane" "(-1104 -664 0) (-1104 -688 0) (-1104 -688 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2718" + "plane" "(-1104 -688 0) (-2240 -688 0) (-2240 -688 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2717" + "plane" "(-2240 -664 0) (-1104 -664 0) (-1104 -664 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "193" + side + { + "id" "2728" + "plane" "(-1896 -944 256) (-1896 -850 256) (-1664 -850 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2727" + "plane" "(-1896 -850 224) (-1896 -944 224) (-1664 -944 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2726" + "plane" "(-1896 -944 224) (-1896 -850 224) (-1896 -850 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2725" + "plane" "(-1664 -850 224) (-1664 -944 224) (-1664 -944 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2724" + "plane" "(-1896 -850 224) (-1664 -850 224) (-1664 -850 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2723" + "plane" "(-1664 -944 224) (-1896 -944 224) (-1896 -944 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "194" + side + { + "id" "2734" + "plane" "(-1664 -883 416) (-1664 -883 256) (-1664 -712 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2733" + "plane" "(-1648 -712 416) (-1648 -712 256) (-1648 -883 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2732" + "plane" "(-1664 -712 416) (-1664 -712 256) (-1648 -712 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2731" + "plane" "(-1648 -883 416) (-1648 -883 256) (-1664 -883 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2730" + "plane" "(-1664 -712 256) (-1664 -883 256) (-1648 -883 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2729" + "plane" "(-1664 -883 416) (-1664 -712 416) (-1648 -712 416)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "195" + side + { + "id" "2740" + "plane" "(-1648 -688 416) (-1648 -688 256) (-1648 -712 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2739" + "plane" "(-1982 -688 256) (-1648 -688 256) (-1648 -688 416)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2738" + "plane" "(-1648 -712 416) (-1648 -712 256) (-1982 -712 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2737" + "plane" "(-1982 -712 256) (-1648 -712 256) (-1648 -688 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2736" + "plane" "(-1982 -688 416) (-1648 -688 416) (-1648 -712 416)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2735" + "plane" "(-1982 -712 416) (-1982 -712 256) (-1982 -688 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "196" + side + { + "id" "2746" + "plane" "(-2108 -688 224) (-1664 -688 224) (-1664 -736 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2745" + "plane" "(-2108 -736 64) (-1664 -736 64) (-1664 -688 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2744" + "plane" "(-1664 -688 64) (-1664 -736 64) (-1664 -736 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2743" + "plane" "(-2108 -688 64) (-1664 -688 64) (-1664 -688 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2742" + "plane" "(-1664 -736 64) (-2108 -736 64) (-2108 -736 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2741" + "plane" "(-2108 -736 64) (-2108 -688 64) (-2108 -688 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "197" + side + { + "id" "2752" + "plane" "(-2240 -584 64) (-2240 -456 64) (-1104 -456 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2751" + "plane" "(-2240 -456 0) (-2240 -584 0) (-1104 -584 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2750" + "plane" "(-2240 -584 0) (-2240 -456 0) (-2240 -456 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2749" + "plane" "(-1104 -456 0) (-1104 -584 0) (-1104 -584 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2748" + "plane" "(-2240 -456 0) (-1104 -456 0) (-1104 -456 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2747" + "plane" "(-1104 -584 0) (-2240 -584 0) (-2240 -584 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "198" + side + { + "id" "2758" + "plane" "(-2240 -664 64) (-2240 -584 64) (-1912 -584 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2757" + "plane" "(-2240 -584 0) (-2240 -664 0) (-1912 -664 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2756" + "plane" "(-2240 -664 0) (-2240 -584 0) (-2240 -584 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2755" + "plane" "(-2240 -584 0) (-1912 -584 0) (-1912 -584 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2754" + "plane" "(-1912 -664 0) (-2240 -664 0) (-2240 -664 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2753" + "plane" "(-1912 -584 0) (-1912 -664 0) (-1912 -664 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "199" + side + { + "id" "2764" + "plane" "(-2304 -688 96) (-2304 -448 96) (-2048 -448 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2763" + "plane" "(-2304 -448 64) (-2304 -688 64) (-2048 -688 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2762" + "plane" "(-2304 -688 64) (-2304 -448 64) (-2304 -448 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2761" + "plane" "(-2048 -448 64) (-2048 -688 64) (-2048 -688 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2760" + "plane" "(-2048 -688 64) (-2304 -688 64) (-2304 -688 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2759" + "plane" "(-2304 -448 64) (-2048 -448 64) (-2048 -448 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "200" + side + { + "id" "2770" + "plane" "(-1408 -456 64) (-1408 -328 64) (-1104 -328 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2769" + "plane" "(-1408 -328 0) (-1408 -456 0) (-1104 -456 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2768" + "plane" "(-1408 -456 0) (-1408 -328 0) (-1408 -328 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2767" + "plane" "(-1104 -328 0) (-1104 -456 0) (-1104 -456 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -48] 0.16" + "vaxis" "[0 0 -1 76] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2766" + "plane" "(-1104 -456 0) (-1408 -456 0) (-1408 -456 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2765" + "plane" "(-1408 -328 0) (-1104 -328 0) (-1104 -328 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "201" + side + { + "id" "2776" + "plane" "(-1088 -360 64) (-848 -360 64) (-848 -656 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2775" + "plane" "(-1088 -656 0) (-848 -656 0) (-848 -360 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2774" + "plane" "(-848 -360 0) (-848 -656 0) (-848 -656 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2773" + "plane" "(-1088 -360 0) (-848 -360 0) (-848 -360 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2772" + "plane" "(-848 -656 0) (-1088 -656 0) (-1088 -656 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2771" + "plane" "(-1088 -656 0) (-1088 -360 0) (-1088 -360 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "202" + side + { + "id" "2782" + "plane" "(-1408 -296 64) (-1408 -40 64) (-1104 -40 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2781" + "plane" "(-1408 -40 0) (-1408 -296 0) (-1104 -296 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2780" + "plane" "(-1408 -296 0) (-1408 -40 0) (-1408 -40 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2779" + "plane" "(-1104 -40 0) (-1104 -296 0) (-1104 -296 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -48] 0.16" + "vaxis" "[0 0 -1 76] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2778" + "plane" "(-1104 -296 0) (-1408 -296 0) (-1408 -296 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2777" + "plane" "(-1408 -40 0) (-1104 -40 0) (-1104 -40 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "203" + side + { + "id" "2788" + "plane" "(-1408 -328 64) (-1408 -296 64) (-1104 -296 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 73] 0.125" + "vaxis" "[0 -1 0 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2787" + "plane" "(-1408 -296 0) (-1408 -328 0) (-1104 -328 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2786" + "plane" "(-1408 -328 0) (-1408 -296 0) (-1408 -296 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2785" + "plane" "(-1104 -296 0) (-1104 -328 0) (-1104 -328 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -48] 0.16" + "vaxis" "[0 0 -1 76] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2784" + "plane" "(-1104 -328 0) (-1408 -328 0) (-1408 -328 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2783" + "plane" "(-1408 -296 0) (-1104 -296 0) (-1104 -296 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "204" + side + { + "id" "2794" + "plane" "(-1408 -40 64) (-1408 -8 64) (-1104 -8 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 73] 0.125" + "vaxis" "[0 -1 0 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2793" + "plane" "(-1408 -8 0) (-1408 -40 0) (-1104 -40 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2792" + "plane" "(-1408 -40 0) (-1408 -8 0) (-1408 -8 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2791" + "plane" "(-1104 -8 0) (-1104 -40 0) (-1104 -40 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -48] 0.16" + "vaxis" "[0 0 -1 76] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2790" + "plane" "(-1408 -8 0) (-1104 -8 0) (-1104 -8 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2789" + "plane" "(-1104 -40 0) (-1408 -40 0) (-1408 -40 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "205" + side + { + "id" "2800" + "plane" "(-1920 -364 64) (-1720 -364 64) (-1720 -456 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 73] 0.125" + "vaxis" "[0 -1 0 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2799" + "plane" "(-1920 -456 0) (-1720 -456 0) (-1720 -364 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2798" + "plane" "(-1920 -364 64) (-1920 -456 64) (-1920 -456 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2797" + "plane" "(-1720 -364 0) (-1720 -456 0) (-1720 -456 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2796" + "plane" "(-1720 -364 64) (-1920 -364 64) (-1920 -364 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2795" + "plane" "(-1720 -456 0) (-1920 -456 0) (-1920 -456 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "206" + side + { + "id" "2806" + "plane" "(-2376 -448 96) (-2376 -152 96) (-2240 -152 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2805" + "plane" "(-2376 -152 64) (-2376 -448 64) (-2240 -448 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2804" + "plane" "(-2376 -448 64) (-2376 -152 64) (-2376 -152 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2803" + "plane" "(-2240 -152 64) (-2240 -448 64) (-2240 -448 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2802" + "plane" "(-2240 -448 64) (-2376 -448 64) (-2376 -448 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2801" + "plane" "(-2376 -152 64) (-2240 -152 64) (-2240 -152 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "207" + side + { + "id" "2812" + "plane" "(-2240 -448 96) (-2240 96 96) (-2048 96 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2811" + "plane" "(-2240 96 64) (-2240 -448 64) (-2048 -448 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2810" + "plane" "(-2240 -448 64) (-2240 96 64) (-2240 96 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2809" + "plane" "(-2048 96 64) (-2048 -448 64) (-2048 -448 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2808" + "plane" "(-2240 96 64) (-2048 96 64) (-2048 96 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 5] 0.25" + "vaxis" "[0 0 -1 41] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2807" + "plane" "(-2048 -448 64) (-2240 -448 64) (-2240 -448 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "208" + side + { + "id" "2818" + "plane" "(-2376 -152 96) (-2376 120 96) (-2240 120 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2817" + "plane" "(-2376 120 64) (-2376 -152 64) (-2240 -152 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2816" + "plane" "(-2376 -152 64) (-2376 120 64) (-2376 120 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2815" + "plane" "(-2240 120 64) (-2240 -152 64) (-2240 -152 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2814" + "plane" "(-2376 120 64) (-2240 120 64) (-2240 120 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2813" + "plane" "(-2240 -152 64) (-2376 -152 64) (-2376 -152 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "209" + side + { + "id" "2824" + "plane" "(-2384 -448 96) (-2592 -448 96) (-2592 120 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2823" + "plane" "(-2384 120 80) (-2592 120 80) (-2592 -448 80)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2822" + "plane" "(-2592 -448 80) (-2592 120 80) (-2592 120 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2821" + "plane" "(-2592 120 80) (-2384 120 80) (-2384 120 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2820" + "plane" "(-2384 -448 80) (-2592 -448 80) (-2592 -448 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2819" + "plane" "(-2384 120 80) (-2384 -448 80) (-2384 -448 96)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "210" + side + { + "id" "2830" + "plane" "(-2383 96 64) (-2383 400 64) (-2016 400 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2829" + "plane" "(-2383 400 0) (-2383 96 0) (-2016 96 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2828" + "plane" "(-2383 96 0) (-2383 400 0) (-2383 400 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2827" + "plane" "(-2016 400 0) (-2016 96 0) (-2016 96 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2826" + "plane" "(-2383 400 0) (-2016 400 0) (-2016 400 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2825" + "plane" "(-2016 96 0) (-2383 96 0) (-2383 96 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "211" + side + { + "id" "2836" + "plane" "(-1954 160 64) (-1954 488 64) (-1824 488 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2835" + "plane" "(-1824 488 0) (-1954 488 0) (-1954 160 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2834" + "plane" "(-1954 488 0) (-1824 488 0) (-1824 488 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2833" + "plane" "(-1824 488 0) (-1824 160 0) (-1824 160 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2832" + "plane" "(-1954 160 0) (-1954 488 0) (-1954 488 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2831" + "plane" "(-1824 160 0) (-1954 160 0) (-1954 160 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "212" + side + { + "id" "2842" + "plane" "(-2016 48 64) (-2016 123 64) (-1784 123 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2841" + "plane" "(-2016 123 0) (-2016 48 0) (-1784 48 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2840" + "plane" "(-2016 48 0) (-2016 123 0) (-2016 123 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2839" + "plane" "(-1784 123 0) (-1784 48 0) (-1784 48 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2838" + "plane" "(-2016 123 0) (-1784 123 0) (-1784 123 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2837" + "plane" "(-1784 48 0) (-2016 48 0) (-2016 48 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "213" + side + { + "id" "2848" + "plane" "(-1993 123 64) (-2016 123 64) (-2016 488 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2847" + "plane" "(-1993 488 0) (-2016 488 0) (-2016 123 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2846" + "plane" "(-2016 123 0) (-2016 488 0) (-2016 488 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2845" + "plane" "(-2016 488 0) (-1993 488 0) (-1993 488 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2844" + "plane" "(-1993 123 0) (-2016 123 0) (-2016 123 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2843" + "plane" "(-1993 488 0) (-1993 123 0) (-1993 123 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "214" + side + { + "id" "2854" + "plane" "(-1970 165 64) (-1970 488 64) (-1954 488 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2853" + "plane" "(-1954 488 0) (-1970 488 0) (-1970 165 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2852" + "plane" "(-1970 488 0) (-1954 488 0) (-1954 488 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2851" + "plane" "(-1954 488 0) (-1954 165 0) (-1954 165 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2850" + "plane" "(-1970 165 0) (-1970 488 0) (-1970 488 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2849" + "plane" "(-1954 165 0) (-1970 165 0) (-1970 165 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "215" + side + { + "id" "2860" + "plane" "(-1954 145 64) (-1954 160 64) (-1824 160 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2859" + "plane" "(-1954 160 0) (-1954 145 0) (-1824 145 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2858" + "plane" "(-1824 160 0) (-1824 145 0) (-1824 145 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2857" + "plane" "(-1954 145 0) (-1954 160 0) (-1954 160 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2856" + "plane" "(-1954 160 0) (-1824 160 0) (-1824 160 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2855" + "plane" "(-1824 145 0) (-1954 145 0) (-1954 145 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "216" + side + { + "id" "2866" + "plane" "(-1824 488 64) (-1424 488 64) (-1424 104 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2865" + "plane" "(-1424 488 0) (-1824 488 0) (-1824 104 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2864" + "plane" "(-1824 488 0) (-1424 488 0) (-1424 488 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2863" + "plane" "(-1424 488 0) (-1424 104 0) (-1424 104 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2862" + "plane" "(-1424 104 0) (-1824 104 0) (-1824 104 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2861" + "plane" "(-1824 104 0) (-1824 488 0) (-1824 488 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "217" + side + { + "id" "2872" + "plane" "(-1720 -120 64) (-1720 96 64) (-1472 96 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 88] 0.125" + "vaxis" "[0 -1 0 -83] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2871" + "plane" "(-1720 96 0) (-1720 -120 0) (-1472 -120 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2870" + "plane" "(-1720 -120 0) (-1720 96 0) (-1720 96 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2869" + "plane" "(-1472 96 0) (-1472 -120 0) (-1472 -120 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2868" + "plane" "(-1720 96 0) (-1472 96 0) (-1472 96 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2867" + "plane" "(-1472 -120 0) (-1720 -120 0) (-1720 -120 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "218" + side + { + "id" "2878" + "plane" "(-1837 -136 64) (-1837 48 64) (-1720 48 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 88] 0.125" + "vaxis" "[0 -1 0 -83] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2877" + "plane" "(-1837 48 0) (-1837 -136 0) (-1720 -136 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2876" + "plane" "(-1837 -136 0) (-1837 48 0) (-1837 48 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2875" + "plane" "(-1720 48 0) (-1720 -136 0) (-1720 -136 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2874" + "plane" "(-1837 48 0) (-1720 48 0) (-1720 48 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2873" + "plane" "(-1720 -136 0) (-1837 -136 0) (-1837 -136 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "219" + side + { + "id" "2884" + "plane" "(-1424 528 64) (-1816 528 64) (-1816 544 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -20] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2883" + "plane" "(-1816 528 0) (-1424 528 0) (-1424 544 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2882" + "plane" "(-1424 528 0) (-1816 528 0) (-1816 528 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2881" + "plane" "(-1424 544 0) (-1424 528 0) (-1424 528 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2880" + "plane" "(-1816 528 0) (-1816 544 0) (-1816 544 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2879" + "plane" "(-1816 544 0) (-1424 544 0) (-1424 544 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "220" + side + { + "id" "2890" + "plane" "(-1816 544 64) (-1816 896 64) (-1424 896 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1816 544 64]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 5 5 5 0 0 0" + "row3" "0 0 0 5 5 5 0 0 0" + "row4" "0 0 0 2 0 0 0 0 0" + "row5" "0 0 0 5 0 0 0 0 0" + "row6" "0 0 2 5 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "255 255 130 5 55 105 255 255 255" + "row1" "255 180 0 55 55 30 255 180 30" + "row2" "25 55 0 0 30 105 55 0 5" + "row3" "0 55 55 105 30 5 130 0 0" + "row4" "5 0 30 0 155 30 55 105 55" + "row5" "55 130 255 55 55 50 50 80 230" + "row6" "155 255 255 255 80 0 0 255 205" + "row7" "255 255 255 255 200 255 250 225 125" + "row8" "255 255 255 255 225 175 180 130 155" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "2889" + "plane" "(-1424 544 63) (-1424 544 64) (-1424 896 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2888" + "plane" "(-1424 896 63) (-1424 896 64) (-1816 896 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2887" + "plane" "(-1816 896 63) (-1816 896 64) (-1816 544 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2886" + "plane" "(-1816 544 63) (-1816 544 64) (-1424 544 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2885" + "plane" "(-1424 544 63) (-1424 896 63) (-1816 896 63)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "221" + side + { + "id" "2896" + "plane" "(-2048 496 64) (-2048 528 64) (-1408 528 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 91] 0.125" + "vaxis" "[1 0 0 -87] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2895" + "plane" "(-2048 528 0) (-2048 496 0) (-1408 496 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2894" + "plane" "(-2048 496 0) (-2048 528 0) (-2048 528 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2893" + "plane" "(-1408 528 0) (-1408 496 0) (-1408 496 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2892" + "plane" "(-2048 528 0) (-1408 528 0) (-1408 528 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2891" + "plane" "(-1408 496 0) (-2048 496 0) (-2048 496 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "222" + side + { + "id" "2902" + "plane" "(-1424 928 64) (-1408 928 64) (-1408 528 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -20] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2901" + "plane" "(-1424 528 0) (-1408 528 0) (-1408 928 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2900" + "plane" "(-1408 928 0) (-1408 528 0) (-1408 528 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2899" + "plane" "(-1424 928 0) (-1408 928 0) (-1408 928 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2898" + "plane" "(-1408 528 0) (-1424 528 0) (-1424 528 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2897" + "plane" "(-1424 528 0) (-1424 928 0) (-1424 928 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "223" + side + { + "id" "2908" + "plane" "(-1408 600 64) (-1408 752 64) (-1072 752 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2907" + "plane" "(-1408 752 0) (-1408 600 0) (-1072 600 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2906" + "plane" "(-1408 600 0) (-1408 752 0) (-1408 752 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2905" + "plane" "(-1408 752 0) (-1072 752 0) (-1072 752 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2904" + "plane" "(-1072 600 0) (-1408 600 0) (-1408 600 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2903" + "plane" "(-1072 752 0) (-1072 600 0) (-1072 600 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "224" + side + { + "id" "2914" + "plane" "(-1408 752 64) (-1408 784 64) (-1056 784 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -20] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2913" + "plane" "(-1408 784 0) (-1408 752 0) (-1056 752 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2912" + "plane" "(-1408 752 0) (-1408 784 0) (-1408 784 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2911" + "plane" "(-1056 784 0) (-1056 752 0) (-1056 752 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2910" + "plane" "(-1408 784 0) (-1056 784 0) (-1056 784 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2909" + "plane" "(-1056 752 0) (-1408 752 0) (-1408 752 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "225" + side + { + "id" "2920" + "plane" "(-1408 574 64) (-1408 600 64) (-1056 600 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -20] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2919" + "plane" "(-1408 600 0) (-1408 574 0) (-1056 574 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2918" + "plane" "(-1408 574 0) (-1408 600 0) (-1408 600 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2917" + "plane" "(-1056 600 0) (-1056 574 0) (-1056 574 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2916" + "plane" "(-1056 574 0) (-1408 574 0) (-1408 574 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2915" + "plane" "(-1408 600 0) (-1056 600 0) (-1056 600 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "226" + side + { + "id" "2926" + "plane" "(-1072 752 64) (-1056 752 64) (-1056 600 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -20] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2925" + "plane" "(-1072 600 0) (-1056 600 0) (-1056 752 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2924" + "plane" "(-1056 752 0) (-1056 600 0) (-1056 600 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2923" + "plane" "(-1072 752 0) (-1056 752 0) (-1056 752 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2922" + "plane" "(-1056 600 0) (-1072 600 0) (-1072 600 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2921" + "plane" "(-1072 600 0) (-1072 752 0) (-1072 752 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "227" + side + { + "id" "2932" + "plane" "(-736 600 64) (-1032 600 64) (-1032 1200 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -79] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1032 600 64]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0" + "row3" "0 0 0 0 0 -0.999994 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0" + "row4" "0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0" + "row5" "0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0.444408 0 0 0 0" + "row2" "0 0 0.948082 4.85052 6.16204 3.46484 0.468487 0 0" + "row3" "0 0.0185623 0.395863 3.30318 4.64571 4.13448 0.496853 0 0" + "row4" "0 0.454758 2.26991 2.2751 2.49841 2.33734 0.730137 0 0" + "row5" "0 0.279926 3.4782 3.45383 3.58821 3.30685 1.01975 0 0" + "row6" "0 0 0.277885 4.49739 4.52108 5 4.71999 0 0" + "row7" "0 0 0 5 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "255 255 100 0 0 0 0 0 0" + "row1" "255 255 255 255 200 255 255 0 0" + "row2" "125 250 255 255 250 255 255 125 0" + "row3" "0 100 255 150 250 255 255 200 0" + "row4" "0 255 225 255 255 255 255 250 0" + "row5" "0 250 255 255 255 255 255 255 125" + "row6" "0 50 255 255 255 255 255 255 255" + "row7" "0 200 250 255 255 255 225 255 255" + "row8" "0 0 0 0 0 0 0 0 150" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "2931" + "plane" "(-1032 600 63) (-1032 600 64) (-736 600 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2930" + "plane" "(-736 600 63) (-736 600 64) (-736 1200 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2929" + "plane" "(-736 1200 63) (-736 1200 64) (-1032 1200 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2928" + "plane" "(-1032 1200 63) (-1032 1200 64) (-1032 600 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2927" + "plane" "(-1032 600 63) (-736 600 63) (-736 1200 63)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "228" + side + { + "id" "2938" + "plane" "(-1032 600 64) (-1056 600 64) (-1056 1200 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -20] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2937" + "plane" "(-1056 1200 0) (-1056 600 0) (-1032 600 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2936" + "plane" "(-1056 600 0) (-1056 1200 0) (-1056 1200 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2935" + "plane" "(-1032 600 0) (-1056 600 0) (-1056 600 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2934" + "plane" "(-1056 1200 0) (-1032 1200 0) (-1032 1200 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2933" + "plane" "(-1032 1200 0) (-1032 600 0) (-1032 600 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "229" + side + { + "id" "2944" + "plane" "(-1056 574 64) (-1056 600 64) (-703 600 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -20] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2943" + "plane" "(-1056 600 0) (-1056 574 0) (-703 574 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2942" + "plane" "(-1056 574 0) (-1056 600 0) (-1056 600 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2941" + "plane" "(-703 600 0) (-703 574 0) (-703 574 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 47] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2940" + "plane" "(-703 574 0) (-1056 574 0) (-1056 574 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2939" + "plane" "(-1056 600 0) (-703 600 0) (-703 600 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "230" + side + { + "id" "2950" + "plane" "(-736 1221 64) (-703 1221 64) (-703 600 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -20] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2949" + "plane" "(-736 600 0) (-703 600 0) (-703 1221 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2948" + "plane" "(-703 1221 0) (-703 600 0) (-703 600 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 47] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2947" + "plane" "(-736 1221 0) (-703 1221 0) (-703 1221 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2946" + "plane" "(-703 600 0) (-736 600 0) (-736 600 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2945" + "plane" "(-736 600 0) (-736 1221 0) (-736 1221 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "231" + side + { + "id" "2956" + "plane" "(-1056 1200 64) (-1056 1221 64) (-736 1221 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -20] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2955" + "plane" "(-736 1221 0) (-1056 1221 0) (-1056 1200 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2954" + "plane" "(-1056 1200 0) (-1056 1221 0) (-1056 1221 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2953" + "plane" "(-1056 1221 0) (-736 1221 0) (-736 1221 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2952" + "plane" "(-736 1221 0) (-736 1200 0) (-736 1200 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2951" + "plane" "(-736 1200 0) (-1056 1200 0) (-1056 1200 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "232" + side + { + "id" "2962" + "plane" "(-1424 416 64) (-1408 416 64) (-1408 24 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2961" + "plane" "(-1424 24 0) (-1408 24 0) (-1408 416 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2960" + "plane" "(-1408 416 0) (-1408 24 0) (-1408 24 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2959" + "plane" "(-1408 24 0) (-1424 24 0) (-1424 24 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2958" + "plane" "(-1424 416 0) (-1408 416 0) (-1408 416 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2957" + "plane" "(-1424 24 0) (-1424 416 0) (-1424 416 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "233" + side + { + "id" "2968" + "plane" "(-1408 128 64) (-1408 542 64) (-1104 542 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2967" + "plane" "(-1408 542 0) (-1408 128 0) (-1104 128 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2966" + "plane" "(-1408 128 0) (-1408 542 0) (-1408 542 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2965" + "plane" "(-1104 542 0) (-1104 128 0) (-1104 128 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -48] 0.16" + "vaxis" "[0 0 -1 76] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2964" + "plane" "(-1408 542 0) (-1104 542 0) (-1104 542 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2963" + "plane" "(-1104 128 0) (-1408 128 0) (-1408 128 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "235" + side + { + "id" "2974" + "plane" "(-1388 123.852 64) (-1388 20.0001 64) (-1392 16.0001 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -25.6] 0.078125" + "vaxis" "[0 1 0 -18.289] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2973" + "plane" "(-1392 128 32) (-1392 16.0001 32) (-1388 20.0001 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2972" + "plane" "(-1392 16.0001 32) (-1392 128 32) (-1392 128 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2971" + "plane" "(-1388 123.852 32) (-1388 20.0001 32) (-1388 20.0001 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2970" + "plane" "(-1392 128 32) (-1388 123.85 32) (-1388 123.852 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2969" + "plane" "(-1388 20.0001 32) (-1392 16.0001 32) (-1392 16.0001 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "234" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "236" + side + { + "id" "2980" + "plane" "(-1316 20.0001 64) (-1388 20.0001 64) (-1388 124 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -25.6] 0.078125" + "vaxis" "[0 1 0 -18.289] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2979" + "plane" "(-1388 20.0001 32) (-1316 20.0001 32) (-1316 124 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2978" + "plane" "(-1316 20.0001 32) (-1388 20.0001 32) (-1388 20.0001 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2977" + "plane" "(-1388 124 32) (-1316 124 32) (-1316 124 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2976" + "plane" "(-1388 20.0001 32) (-1388 124 32) (-1388 124 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2975" + "plane" "(-1316 124 32) (-1316 20.0001 32) (-1316 20.0001 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "234" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "237" + side + { + "id" "2986" + "plane" "(-1316 124 64) (-1388 124 64) (-1392 128 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 11.846] 0.078" + "vaxis" "[1 0 0 121.343] 0.109" + "rotation" "270" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2985" + "plane" "(-1388 124 32) (-1316 124 32) (-1312 128 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2984" + "plane" "(-1392 128 32) (-1312 128 32) (-1312 128 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2983" + "plane" "(-1316 124 32) (-1388 124 32) (-1388 124 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2982" + "plane" "(-1388 124 32) (-1392 128 32) (-1392 128 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2981" + "plane" "(-1312 128 32) (-1316 124 32) (-1316 124 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "234" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "238" + side + { + "id" "2992" + "plane" "(-1312 16.0001 64) (-1392 16.0001 64) (-1388 20.0001 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 80.154] 0.078" + "vaxis" "[-1 0 0 -85.3427] 0.109" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2991" + "plane" "(-1392 16.0001 32) (-1312 16.0001 32) (-1316 20.0001 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2990" + "plane" "(-1312 16.0001 32) (-1392 16.0001 32) (-1392 16.0001 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2989" + "plane" "(-1388 20.0001 32) (-1316 20.0001 32) (-1316 20.0001 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2988" + "plane" "(-1392 16.0001 32) (-1388 20.0001 32) (-1388 20.0001 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2987" + "plane" "(-1316 20.0001 32) (-1312 16.0001 32) (-1312 16.0001 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "234" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "239" + side + { + "id" "2998" + "plane" "(-1312 128 64) (-1312 16.0001 64) (-1316 20.0001 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -25.6] 0.078125" + "vaxis" "[0 1 0 -18.289] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "2997" + "plane" "(-1316 124 32) (-1316 20.0001 32) (-1312 16.0001 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2996" + "plane" "(-1312 128 32) (-1312 16.0001 32) (-1312 16.0001 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2995" + "plane" "(-1316 20.0001 32) (-1316 124 32) (-1316 124 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2994" + "plane" "(-1316 124 32) (-1312 128 32) (-1312 128 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2993" + "plane" "(-1312 16.0001 32) (-1316 20.0001 32) (-1316 20.0001 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "234" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "240" + side + { + "id" "3004" + "plane" "(-1392 -8 64) (-1408 -8 64) (-1408 128 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3003" + "plane" "(-1392 128 0) (-1408 128 0) (-1408 -8 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3002" + "plane" "(-1408 -8 0) (-1408 128 0) (-1408 128 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3001" + "plane" "(-1408 128 0) (-1392 128 0) (-1392 128 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3000" + "plane" "(-1392 -8 0) (-1408 -8 0) (-1408 -8 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2999" + "plane" "(-1392 128 0) (-1392 -8 0) (-1392 -8 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "241" + side + { + "id" "3010" + "plane" "(-1472 104 64) (-1424 104 64) (-1424 24 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3009" + "plane" "(-1472 24 0) (-1424 24 0) (-1424 104 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3008" + "plane" "(-1472 104 64) (-1472 24 64) (-1472 24 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3007" + "plane" "(-1424 104 0) (-1424 24 0) (-1424 24 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3006" + "plane" "(-1424 104 64) (-1472 104 64) (-1472 104 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3005" + "plane" "(-1424 24 0) (-1472 24 0) (-1472 24 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "242" + side + { + "id" "3016" + "plane" "(-1312 -8 64) (-1392 -8 64) (-1392 16 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3015" + "plane" "(-1392 16 0) (-1392 -8 0) (-1312 -8 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3014" + "plane" "(-1312 -8 0) (-1392 -8 0) (-1392 -8 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3013" + "plane" "(-1312 16 0) (-1312 -8 0) (-1312 -8 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3012" + "plane" "(-1392 -8 0) (-1392 16 0) (-1392 16 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3011" + "plane" "(-1392 16 0) (-1312 16 0) (-1312 16 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "243" + side + { + "id" "3022" + "plane" "(-1312 128 64) (-1104 128 64) (-1104 -8 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3021" + "plane" "(-1312 -8 0) (-1104 -8 0) (-1104 128 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3020" + "plane" "(-1104 128 0) (-1104 -8 0) (-1104 -8 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -48] 0.16" + "vaxis" "[0 0 -1 76] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3019" + "plane" "(-1312 128 0) (-1104 128 0) (-1104 128 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3018" + "plane" "(-1104 -8 0) (-1312 -8 0) (-1312 -8 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3017" + "plane" "(-1312 -8 0) (-1312 128 0) (-1312 128 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "244" + side + { + "id" "3028" + "plane" "(-1104 288 32) (-752 288 32) (-752 32 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3027" + "plane" "(-1104 32 0) (-752 32 0) (-752 288 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3026" + "plane" "(-1104 288 32) (-1104 32 32) (-1104 32 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3025" + "plane" "(-752 288 0) (-752 32 0) (-752 32 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3024" + "plane" "(-752 288 32) (-1104 288 32) (-1104 288 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3023" + "plane" "(-752 32 0) (-1104 32 0) (-1104 32 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "245" + side + { + "id" "3034" + "plane" "(-1024 288 64) (-1104 288 64) (-1104 542 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3033" + "plane" "(-1024 542 0) (-1104 542 0) (-1104 288 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3032" + "plane" "(-1104 288 0) (-1104 542 0) (-1104 542 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3031" + "plane" "(-1104 542 0) (-1024 542 0) (-1024 542 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3030" + "plane" "(-1024 288 0) (-1104 288 0) (-1104 288 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -48] 0.16" + "vaxis" "[0 0 -1 76] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3029" + "plane" "(-1024 542 0) (-1024 288 0) (-1024 288 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "246" + side + { + "id" "3040" + "plane" "(-704 288 64) (-992 288 64) (-992 480 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3039" + "plane" "(-704 480 0) (-992 480 0) (-992 288 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3038" + "plane" "(-992 480 0) (-704 480 0) (-704 480 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3037" + "plane" "(-704 288 0) (-992 288 0) (-992 288 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -48] 0.16" + "vaxis" "[0 0 -1 76] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3036" + "plane" "(-704 480 0) (-704 288 0) (-704 288 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3035" + "plane" "(-992 288 0) (-992 480 0) (-992 480 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "247" + side + { + "id" "3046" + "plane" "(-992 288 64) (-1024 288 64) (-1024 480 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 73] 0.125" + "vaxis" "[0 -1 0 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3045" + "plane" "(-992 480 0) (-1024 480 0) (-1024 288 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3044" + "plane" "(-1024 480 0) (-992 480 0) (-992 480 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3043" + "plane" "(-992 288 0) (-1024 288 0) (-1024 288 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -48] 0.16" + "vaxis" "[0 0 -1 76] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3042" + "plane" "(-1024 288 0) (-1024 480 0) (-1024 480 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3041" + "plane" "(-992 480 0) (-992 288 0) (-992 288 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "248" + side + { + "id" "3052" + "plane" "(-704 480 64) (-672 480 64) (-672 288 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 73] 0.125" + "vaxis" "[0 -1 0 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3051" + "plane" "(-704 288 0) (-672 288 0) (-672 480 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3050" + "plane" "(-672 480 0) (-672 288 0) (-672 288 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3049" + "plane" "(-704 480 0) (-672 480 0) (-672 480 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3048" + "plane" "(-672 288 0) (-704 288 0) (-704 288 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3047" + "plane" "(-704 288 0) (-704 480 0) (-704 480 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "249" + side + { + "id" "3058" + "plane" "(-672 20 64) (-672 448 64) (-464 448 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3057" + "plane" "(-672 448 0) (-672 20 0) (-464 20 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3056" + "plane" "(-672 20 0) (-672 448 0) (-672 448 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3055" + "plane" "(-464 448 0) (-464 20 0) (-464 20 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3054" + "plane" "(-464 20 0) (-672 20 0) (-672 20 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3053" + "plane" "(-672 448 0) (-464 448 0) (-464 448 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "250" + side + { + "id" "3064" + "plane" "(-616 448 64) (-672 448 64) (-672 480 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3063" + "plane" "(-640 480 0) (-672 480 0) (-672 448 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3062" + "plane" "(-672 448 0) (-672 480 0) (-672 480 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3061" + "plane" "(-672 480 0) (-640 480 0) (-640 480 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3060" + "plane" "(-616 448 0) (-672 448 0) (-672 448 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3059" + "plane" "(-640 480 0) (-616 448 0) (-616 448 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "251" + side + { + "id" "3070" + "plane" "(-536 448 64) (-616 448 64) (-640 480 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 73] 0.125" + "vaxis" "[0 -1 0 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3069" + "plane" "(-512 480 0) (-640 480 0) (-616 448 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3068" + "plane" "(-640 480 0) (-512 480 0) (-512 480 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3067" + "plane" "(-536 448 0) (-616 448 0) (-616 448 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3066" + "plane" "(-512 480 0) (-536 448 0) (-536 448 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3065" + "plane" "(-616 448 0) (-640 480 0) (-640 480 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "252" + side + { + "id" "3076" + "plane" "(-512 480 64) (-464 480 64) (-464 448 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3075" + "plane" "(-464 480 0) (-512 480 0) (-536 448 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3074" + "plane" "(-512 480 0) (-464 480 0) (-464 480 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3073" + "plane" "(-464 480 0) (-464 448 0) (-464 448 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3072" + "plane" "(-464 448 0) (-536 448 0) (-536 448 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3071" + "plane" "(-536 448 0) (-512 480 0) (-512 480 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "253" + side + { + "id" "3082" + "plane" "(-432 -105 64) (-432 -32 64) (-392 -8 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 73] 0.125" + "vaxis" "[0 -1 0 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3081" + "plane" "(-432 -32 0) (-432 -105 0) (-392 -132 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3080" + "plane" "(-392 -8 0) (-392 -132 0) (-392 -132 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3079" + "plane" "(-432 -105 0) (-432 -32 0) (-432 -32 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3078" + "plane" "(-432 -32 0) (-392 -8 0) (-392 -8 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3077" + "plane" "(-392 -132 0) (-432 -105 0) (-432 -105 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "254" + side + { + "id" "3088" + "plane" "(-432 -148 64) (-672 -148 64) (-672 20 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3087" + "plane" "(-672 20 0) (-672 -148 0) (-432 -148 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3086" + "plane" "(-672 -148 0) (-672 20 0) (-672 20 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3085" + "plane" "(-432 -148 0) (-672 -148 0) (-672 -148 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3084" + "plane" "(-672 20 0) (-432 20 0) (-432 20 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3083" + "plane" "(-432 20 0) (-432 -148 0) (-432 -148 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "255" + side + { + "id" "3094" + "plane" "(-432 -32 64) (-432 20 64) (-392 20 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3093" + "plane" "(-392 -8 0) (-392 20 0) (-432 20 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3092" + "plane" "(-392 20 0) (-392 -8 0) (-392 -8 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3091" + "plane" "(-432 20 0) (-392 20 0) (-392 20 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3090" + "plane" "(-432 -32 0) (-432 20 0) (-432 20 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3089" + "plane" "(-392 -8 0) (-432 -32 0) (-432 -32 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "256" + side + { + "id" "3100" + "plane" "(-392 -148 64) (-432 -148 64) (-432 -105 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3099" + "plane" "(-432 -105 0) (-432 -148 0) (-392 -148 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3098" + "plane" "(-392 -148 0) (-432 -148 0) (-432 -148 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3097" + "plane" "(-392 -132 0) (-392 -148 0) (-392 -148 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3096" + "plane" "(-432 -148 0) (-432 -105 0) (-432 -105 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3095" + "plane" "(-432 -105 0) (-392 -132 0) (-392 -132 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "257" + side + { + "id" "3106" + "plane" "(-392 -132 64) (-392 -8 64) (-360 -8 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 91] 0.125" + "vaxis" "[1 0 0 -87] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3105" + "plane" "(-392 -8 0) (-392 -132 0) (-360 -132 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3104" + "plane" "(-392 -132 0) (-392 -8 0) (-392 -8 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3103" + "plane" "(-360 -8 0) (-360 -132 0) (-360 -132 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3102" + "plane" "(-392 -8 0) (-360 -8 0) (-360 -8 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3101" + "plane" "(-360 -132 0) (-392 -132 0) (-392 -132 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "258" + side + { + "id" "3112" + "plane" "(-1088 -672 256) (-1088 -344 256) (-928 -344 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3111" + "plane" "(-1088 -344 224) (-1088 -672 224) (-928 -672 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3110" + "plane" "(-1088 -672 224) (-1088 -344 224) (-1088 -344 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3109" + "plane" "(-1088 -344 224) (-928 -344 224) (-928 -344 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3108" + "plane" "(-928 -672 224) (-1088 -672 224) (-1088 -672 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3107" + "plane" "(-928 -344 224) (-928 -672 224) (-928 -672 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "259" + side + { + "id" "3118" + "plane" "(-1104 -656 256) (-1104 -360 256) (-1088 -360 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 26] 0.156" + "vaxis" "[0 -1 0 -72] 0.218" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3117" + "plane" "(-1104 -360 224) (-1104 -656 224) (-1088 -656 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3116" + "plane" "(-1104 -656 224) (-1104 -360 224) (-1104 -360 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 26] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3115" + "plane" "(-1088 -360 224) (-1088 -656 224) (-1088 -656 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3114" + "plane" "(-1088 -656 224) (-1104 -656 224) (-1104 -656 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3113" + "plane" "(-1104 -360 224) (-1088 -360 224) (-1088 -360 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "260" + side + { + "id" "3124" + "plane" "(-1104 -360 224) (-1104 -282 224) (-1088 -282 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3123" + "plane" "(-1104 -282 64) (-1104 -360 64) (-1088 -360 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3122" + "plane" "(-1104 -360 64) (-1104 -282 64) (-1104 -282 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3121" + "plane" "(-1088 -282 64) (-1088 -360 64) (-1088 -360 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3120" + "plane" "(-1104 -282 64) (-1088 -282 64) (-1088 -282 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3119" + "plane" "(-1088 -360 64) (-1104 -360 64) (-1104 -360 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 0 1 28] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "261" + side + { + "id" "3130" + "plane" "(-1104 -360 256) (-1104 288 256) (-1088 288 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 26] 0.156" + "vaxis" "[0 -1 0 -72] 0.218" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3129" + "plane" "(-1104 288 224) (-1104 -360 224) (-1088 -360 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[-1 0 0 74] 0.25" + "rotation" "270" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3128" + "plane" "(-1104 -360 224) (-1104 288 224) (-1104 288 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 26] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3127" + "plane" "(-1088 288 224) (-1088 -360 224) (-1088 -360 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3126" + "plane" "(-1104 288 224) (-1088 288 224) (-1088 288 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3125" + "plane" "(-1088 -360 224) (-1104 -360 224) (-1104 -360 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "262" + side + { + "id" "3136" + "plane" "(-1104 152 256) (-1104 -408 256) (-1072 -408 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3135" + "plane" "(-1104 -408 256) (-1104 152 256) (-1104 152 288)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -108] 0.07" + "vaxis" "[0 0 -1 8] 0.07" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3134" + "plane" "(-1072 152 256) (-1072 -408 256) (-1072 -408 288)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3133" + "plane" "(-1104 152 256) (-1072 152 256) (-1072 152 288)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -108] 0.07" + "vaxis" "[0 0 -1 8] 0.07" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3132" + "plane" "(-1072 -408 256) (-1104 -408 256) (-1104 -408 288)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3131" + "plane" "(-1104 -408 288) (-1104 152 288) (-1072 152 288)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "263" + side + { + "id" "3142" + "plane" "(-1088 32 256) (-912 32 256) (-912 -344 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3141" + "plane" "(-1088 -344 224) (-912 -344 224) (-912 32 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3140" + "plane" "(-1088 32 256) (-1088 -344 256) (-1088 -344 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3139" + "plane" "(-912 32 224) (-912 -344 224) (-912 -344 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3138" + "plane" "(-912 32 256) (-1088 32 256) (-1088 32 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3137" + "plane" "(-912 -344 224) (-1088 -344 224) (-1088 -344 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "264" + side + { + "id" "3148" + "plane" "(-1088 542 256) (-672 542 256) (-672 288 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3147" + "plane" "(-1088 288 224) (-672 288 224) (-672 542 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3146" + "plane" "(-672 542 224) (-672 288 224) (-672 288 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3145" + "plane" "(-1088 542 224) (-672 542 224) (-672 542 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3144" + "plane" "(-672 288 224) (-1088 288 224) (-1088 288 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3143" + "plane" "(-1088 288 224) (-1088 542 224) (-1088 542 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "265" + side + { + "id" "3154" + "plane" "(-1104 288 256) (-1104 542 256) (-1088 542 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 26] 0.156" + "vaxis" "[0 -1 0 -72] 0.218" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3153" + "plane" "(-1104 542 224) (-1104 288 224) (-1088 288 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[-1 0 0 74] 0.25" + "rotation" "270" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3152" + "plane" "(-1104 288 224) (-1104 542 224) (-1104 542 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 26] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3151" + "plane" "(-1104 542 224) (-1088 542 224) (-1088 542 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3150" + "plane" "(-1088 288 224) (-1104 288 224) (-1104 288 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3149" + "plane" "(-1088 542 224) (-1088 288 224) (-1088 288 256)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "266" + side + { + "id" "3160" + "plane" "(-1120 542 248) (-1120 542 224) (-1408 542 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3159" + "plane" "(-1408 574 224) (-1408 542 224) (-1120 542 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3158" + "plane" "(-1120 574 224) (-1120 542 224) (-1120 542 248)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3157" + "plane" "(-1120 542 248) (-1408 542 248) (-1408 574 248)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -126] 0.25" + "vaxis" "[1 0 0 69] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3156" + "plane" "(-1408 542 248) (-1408 542 224) (-1408 574 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3155" + "plane" "(-1408 574 224) (-1120 574 224) (-1120 574 248)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "267" + side + { + "id" "3166" + "plane" "(-1408 542 0) (-1088 542 0) (-1088 574 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3165" + "plane" "(-1408 574 0) (-1088 574 0) (-1088 574 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3164" + "plane" "(-1088 542 0) (-1408 542 0) (-1408 542 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3163" + "plane" "(-1408 574 224) (-1088 574 224) (-1088 542 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3162" + "plane" "(-1408 542 224) (-1408 542 0) (-1408 574 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3161" + "plane" "(-1088 574 224) (-1088 574 0) (-1088 542 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "268" + side + { + "id" "3172" + "plane" "(-1440 24 249) (-1408 24 249) (-1408 -376 249)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3171" + "plane" "(-1440 -376 0) (-1408 -376 0) (-1408 24 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3170" + "plane" "(-1408 24 0) (-1408 -376 0) (-1408 -376 249)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -60] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3169" + "plane" "(-1440 24 0) (-1408 24 0) (-1408 24 249)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3168" + "plane" "(-1408 -376 0) (-1440 -376 0) (-1440 -376 249)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3167" + "plane" "(-1440 -376 0) (-1440 24 0) (-1440 24 249)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "269" + side + { + "id" "3178" + "plane" "(-1104 -218 224) (-1104 -128 224) (-1072 -128 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -23.9912] 0.25" + "vaxis" "[1 0 0 0.00540161] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3177" + "plane" "(-1104 -128 64) (-1104 -218 64) (-1072 -218 64)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -23.9912] 0.25" + "vaxis" "[1 0 0 0.00540161] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3176" + "plane" "(-1104 -218 64) (-1104 -128 64) (-1104 -128 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3175" + "plane" "(-1072 -128 64) (-1072 -218 64) (-1072 -218 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 -23.9912] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3174" + "plane" "(-1072 -218 64) (-1104 -218 64) (-1104 -218 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -0.00540161] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3173" + "plane" "(-1104 -128 64) (-1072 -128 64) (-1072 -128 224)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -0.00540161] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "270" + side + { + "id" "3184" + "plane" "(-512 -3072 16) (-512 -2112 16) (0 -2112 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 32] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3183" + "plane" "(-512 -2112 0) (-512 -3072 0) (0 -3072 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3182" + "plane" "(-512 -3072 0) (-512 -2112 0) (-512 -2112 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3181" + "plane" "(0 -2112 0) (0 -3072 0) (0 -3072 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3180" + "plane" "(0 -3072 0) (-512 -3072 0) (-512 -3072 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3179" + "plane" "(-512 -2112 0) (0 -2112 0) (0 -2112 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "271" + side + { + "id" "3190" + "plane" "(-512 -3776 16) (-512 -3072 16) (384 -3072 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -32] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3189" + "plane" "(-512 -3072 0) (-512 -3776 0) (384 -3776 0)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3188" + "plane" "(-512 -3776 0) (-512 -3072 0) (-512 -3072 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3187" + "plane" "(384 -3072 0) (384 -3776 0) (384 -3776 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3186" + "plane" "(384 -3776 0) (-512 -3776 0) (-512 -3776 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3185" + "plane" "(-512 -3072 0) (384 -3072 0) (384 -3072 16)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "272" + side + { + "id" "3196" + "plane" "(512 -256 62) (768 -256 62) (768 -443 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -79] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "3195" + "plane" "(512 -443 32) (768 -443 32) (768 -256 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3194" + "plane" "(512 -256 62) (512 -443 62) (512 -443 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3193" + "plane" "(768 -256 32) (768 -443 32) (768 -443 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3192" + "plane" "(768 -256 62) (512 -256 62) (512 -256 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3191" + "plane" "(768 -443 32) (512 -443 32) (512 -443 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "273" + side + { + "id" "3202" + "plane" "(344 -256 62) (512 -256 62) (512 -512 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -79] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "3201" + "plane" "(344 -512 32) (512 -512 32) (512 -256 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3200" + "plane" "(344 -256 62) (344 -512 62) (344 -512 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3199" + "plane" "(512 -256 32) (512 -512 32) (512 -512 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3198" + "plane" "(512 -256 62) (344 -256 62) (344 -256 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3197" + "plane" "(512 -512 32) (344 -512 32) (344 -512 62)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + group + { + "id" "33220" + editor + { + "color" "183 192 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "27726" + editor + { + "color" "183 192 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "25111" + editor + { + "color" "118 115 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "25112" + editor + { + "color" "118 115 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "25258" + editor + { + "color" "218 235 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "25259" + editor + { + "color" "218 235 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "25308" + editor + { + "color" "218 235 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "25668" + editor + { + "color" "134 203 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "25957" + editor + { + "color" "130 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "25958" + editor + { + "color" "130 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "25963" + editor + { + "color" "130 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "14890" + editor + { + "color" "228 201 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "14891" + editor + { + "color" "228 201 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "14940" + editor + { + "color" "228 201 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "14945" + editor + { + "color" "228 201 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "14956" + editor + { + "color" "228 201 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "19713" + editor + { + "color" "195 176 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "19730" + editor + { + "color" "243 172 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "19731" + editor + { + "color" "243 172 0" + "groupid" "19730" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "19785" + editor + { + "color" "236 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "19786" + editor + { + "color" "236 209 0" + "groupid" "19785" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "19815" + editor + { + "color" "138 159 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "19823" + editor + { + "color" "150 243 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "19844" + editor + { + "color" "205 138 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "19873" + editor + { + "color" "205 138 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "19878" + editor + { + "color" "205 138 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "19883" + editor + { + "color" "205 138 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "19936" + editor + { + "color" "205 138 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "19941" + editor + { + "color" "205 138 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "19958" + editor + { + "color" "174 167 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20250" + editor + { + "color" "165 118 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20267" + editor + { + "color" "207 232 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20281" + editor + { + "color" "165 118 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20290" + editor + { + "color" "165 118 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20299" + editor + { + "color" "102 123 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20308" + editor + { + "color" "201 110 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20309" + editor + { + "color" "201 110 0" + "groupid" "20308" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20322" + editor + { + "color" "235 244 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20323" + editor + { + "color" "235 244 0" + "groupid" "20322" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20348" + editor + { + "color" "198 219 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20349" + editor + { + "color" "198 219 0" + "groupid" "20348" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20362" + editor + { + "color" "198 219 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20363" + editor + { + "color" "198 219 0" + "groupid" "20362" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20376" + editor + { + "color" "108 197 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20385" + editor + { + "color" "104 161 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20464" + editor + { + "color" "0 111 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20474" + editor + { + "color" "161 102 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20484" + editor + { + "color" "227 232 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20485" + editor + { + "color" "227 232 0" + "groupid" "20484" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20490" + editor + { + "color" "227 232 0" + "groupid" "20485" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20524" + editor + { + "color" "111 196 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20525" + editor + { + "color" "111 196 0" + "groupid" "20524" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20542" + editor + { + "color" "197 118 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20543" + editor + { + "color" "197 118 0" + "groupid" "20542" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20560" + editor + { + "color" "167 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20561" + editor + { + "color" "167 148 0" + "groupid" "20560" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20578" + editor + { + "color" "213 154 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20640" + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20641" + editor + { + "color" "211 148 0" + "groupid" "20640" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20642" + editor + { + "color" "211 148 0" + "groupid" "20641" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20667" + editor + { + "color" "211 148 0" + "groupid" "20640" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20668" + editor + { + "color" "211 148 0" + "groupid" "20667" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20693" + editor + { + "color" "211 148 0" + "groupid" "20640" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20694" + editor + { + "color" "211 148 0" + "groupid" "20693" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20704" + editor + { + "color" "211 148 0" + "groupid" "20693" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20714" + editor + { + "color" "211 148 0" + "groupid" "20640" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20715" + editor + { + "color" "211 148 0" + "groupid" "20714" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20725" + editor + { + "color" "211 148 0" + "groupid" "20714" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20735" + editor + { + "color" "211 148 0" + "groupid" "20640" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20736" + editor + { + "color" "211 148 0" + "groupid" "20735" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20770" + editor + { + "color" "139 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20783" + editor + { + "color" "213 154 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20796" + editor + { + "color" "255 232 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20797" + editor + { + "color" "255 232 0" + "groupid" "20796" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20810" + editor + { + "color" "143 240 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "20819" + editor + { + "color" "194 167 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "23159" + editor + { + "color" "220 220 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "12683" + editor + { + "color" "230 107 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "13429" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "13459" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "13484" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "13487" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "13490" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "13503" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "13512" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "13521" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "13530" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "13874" + editor + { + "color" "247 248 0" + "groupid" "14207" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "14207" + editor + { + "color" "247 248 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "40" + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "69" + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "84" + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "107" + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "234" + editor + { + "color" "52 80 122" + "groupid" "1868" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1868" + editor + { + "color" "52 80 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } +} +entity +{ + "id" "32649" + "classname" "prop_static" + "angles" "0 15 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rockpack_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1266 -2868 64" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "32729" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/foliage/cactus.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "318 -3382 130" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "32760" + "classname" "prop_static" + "angles" "0 315 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/foliage/cactus.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "128 -2816 64" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "32796" + "classname" "prop_static" + "angles" "0 315 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/foliage/cactus.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-632 -2936 56" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "32804" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-702 -2974 84" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "32844" + "classname" "prop_static" + "angles" "0 210 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-612 -2876 84" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "32852" + "classname" "prop_static" + "angles" "11.8501 279.198 1.90445" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-600 -2912 78" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "32968" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rockpack_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "920 -3644 108" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "32980" + "classname" "prop_static" + "angles" "0 240 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rockpack_05.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "86 1024 122" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "32992" + "classname" "prop_static" + "angles" "0 87 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rockpack_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-66 998 122" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "33038" + "classname" "prop_static" + "angles" "0 274.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rockpack_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-336 1004 118" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "33050" + "classname" "prop_static" + "angles" "0 274.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rockpack_05.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-294 1064 118" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "33069" + "classname" "prop_static" + "angles" "0 124.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rockpack_05.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-532 1092 94" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "33085" + "classname" "prop_static" + "angles" "0 124.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rockpack_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-504 980 124" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "33108" + "classname" "prop_static" + "angles" "0 56 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-814 1110 126" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "33145" + "classname" "prop_static" + "angles" "0 73 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-856 1050 106" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "33165" + "classname" "prop_static" + "angles" "0 73 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-986 978 84" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "33200" + "classname" "prop_static" + "angles" "0 331 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-796 970 84" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "33278" + "classname" "prop_static" + "angles" "0 315 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/foliage/cactus.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-432 1136 136" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "33282" + "classname" "prop_static" + "angles" "0 192.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/foliage/cactus.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-224 1120 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "31068" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "304 -3520 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "31091" + "classname" "prop_static" + "angles" "-3.58987 284.574 13.5408" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "208 -3504 112" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "31130" + "classname" "prop_static" + "angles" "-3.58987 255.074 13.5408" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "224 -3584 144" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "31142" + "classname" "prop_static" + "angles" "-3.58987 255.074 13.5408" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "192 -3584 160" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "31161" + "classname" "prop_static" + "angles" "-0.711243 254.674 24.1661" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "240 -3600 176" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "31181" + "classname" "prop_static" + "angles" "-0.711243 121.174 24.1661" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "178 -3636 176" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "31193" + "classname" "prop_static" + "angles" "-0.129337 285 0.482965" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "4 -3446 80" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "31213" + "classname" "prop_static" + "angles" "-0.129337 45 0.482965" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2 -3476 108" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "31229" + "classname" "prop_static" + "angles" "-0.129337 113.5 0.482965" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-192 -3400 84" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "31264" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "492 -3432 148" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "31276" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "216 -3216 106" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "31284" + "classname" "prop_static" + "angles" "-1.42787 286.889 6.35185" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "394 -3500 160" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "31308" + "classname" "prop_static" + "angles" "-3.58987 255.074 13.5408" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "424 -3462 186" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "31324" + "classname" "prop_static" + "angles" "-1.03365 103.028 2.3184" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rock_tiny_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-108 -3374 112" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "31371" + "classname" "prop_static" + "angles" "0 240 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rockpack_05.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-426 -3504 56" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "29526" + "classname" "prop_static" + "angles" "0 240 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rockpack_05.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-128 -3456 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "29581" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rockpack_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "176 -3808 96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "29616" + "classname" "prop_static" + "angles" "0 300 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rockpack_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "368 -3632 96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "29632" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rockpack_05.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "400 -3504 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "29645" + "classname" "prop_static" + "angles" "0 240 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rockpack_05.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "464 -3520 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "29693" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rockpack_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "592 -3664 144" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "27212" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/valley/nature/rockpack_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-64 -3680 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19129" + "classname" "light" + "_light" "255 255 255 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "1088 640 352" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "19134" + "classname" "light" + "_light" "255 255 255 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "960 640 352" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "19139" + "classname" "light" + "_light" "255 255 255 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "992 576 224" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "19144" + "classname" "light" + "_light" "255 255 255 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "768 576 224" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "19149" + "classname" "func_detail" + solid + { + "id" "19150" + side + { + "id" "23588" + "plane" "(1456 96 352) (1440 112 352) (1440 128 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23587" + "plane" "(1440 128 192) (1440 112 192) (1456 96 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23586" + "plane" "(1456 96 192) (1440 112 192) (1440 112 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23585" + "plane" "(1440 112 192) (1440 128 192) (1440 128 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23584" + "plane" "(1456 128 192) (1456 96 192) (1456 96 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23583" + "plane" "(1440 128 192) (1456 128 192) (1456 128 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "19151" + "classname" "func_detail" + solid + { + "id" "19152" + side + { + "id" "23594" + "plane" "(1312 96 352) (1328 112 352) (1440 112 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23593" + "plane" "(1456 96 192) (1440 112 192) (1328 112 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23592" + "plane" "(1312 96 192) (1328 112 192) (1328 112 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23591" + "plane" "(1440 112 192) (1456 96 192) (1456 96 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23590" + "plane" "(1328 112 192) (1440 112 192) (1440 112 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL_BLUE" + "uaxis" "[1 0 0 -672] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23589" + "plane" "(1456 96 192) (1312 96 192) (1312 96 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "19153" + "classname" "func_detail" + solid + { + "id" "19154" + side + { + "id" "23600" + "plane" "(1328 112 352) (1312 96 352) (1312 176 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23599" + "plane" "(1328 192 192) (1312 176 192) (1312 96 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23598" + "plane" "(1312 176 192) (1328 192 192) (1328 192 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23597" + "plane" "(1328 112 192) (1312 96 192) (1312 96 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23596" + "plane" "(1328 192 192) (1328 112 192) (1328 112 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL_BLUE" + "uaxis" "[0 -1 0 352] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23595" + "plane" "(1312 96 192) (1312 176 192) (1312 176 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "19155" + "classname" "func_detail" + solid + { + "id" "19156" + side + { + "id" "23605" + "plane" "(1248 336 192) (1216 336 192) (1216 368 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 1 0 -389] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23604" + "plane" "(1216 368 96) (1216 336 96) (1248 336 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23603" + "plane" "(1216 336 96) (1216 368 96) (1216 368 192)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23602" + "plane" "(1248 336 96) (1216 336 96) (1216 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23601" + "plane" "(1216 368 96) (1248 336 96) (1248 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -13768]" + } +} +entity +{ + "id" "19157" + "classname" "func_detail" + solid + { + "id" "19158" + side + { + "id" "23611" + "plane" "(1184 784 96) (1216 784 96) (1216 336 96)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23610" + "plane" "(1184 336 80) (1216 336 80) (1216 784 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23609" + "plane" "(1216 784 80) (1216 336 80) (1216 336 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23608" + "plane" "(1184 784 80) (1216 784 80) (1216 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23607" + "plane" "(1216 336 80) (1184 336 80) (1184 336 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23606" + "plane" "(1184 336 80) (1184 784 80) (1184 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19159" + side + { + "id" "23617" + "plane" "(1184 496 96) (1104 576 96) (1104 640 96)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23616" + "plane" "(1104 640 80) (1104 576 80) (1184 496 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23615" + "plane" "(1184 496 80) (1104 576 80) (1104 576 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23614" + "plane" "(1184 640 80) (1184 496 80) (1184 496 96)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23613" + "plane" "(1104 576 80) (1104 640 80) (1104 640 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23612" + "plane" "(1104 640 80) (1184 640 80) (1184 640 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19160" + side + { + "id" "23623" + "plane" "(1104 576 96) (1024 656 96) (1024 784 96)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23622" + "plane" "(1104 784 80) (1024 784 80) (1024 656 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23621" + "plane" "(1024 656 80) (1024 784 80) (1024 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23620" + "plane" "(1024 784 80) (1104 784 80) (1104 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23619" + "plane" "(1104 576 80) (1024 656 80) (1024 656 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23618" + "plane" "(1104 784 80) (1104 576 80) (1104 576 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19161" + side + { + "id" "23629" + "plane" "(1104 752 96) (1104 784 96) (1184 784 96)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23628" + "plane" "(1184 784 80) (1104 784 80) (1104 752 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23627" + "plane" "(1104 784 80) (1184 784 80) (1184 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23626" + "plane" "(1184 784 80) (1184 752 80) (1184 752 96)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23625" + "plane" "(1104 752 80) (1104 784 80) (1104 784 96)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23624" + "plane" "(1184 752 80) (1104 752 80) (1104 752 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19162" + side + { + "id" "23635" + "plane" "(480 784 96) (1024 784 96) (1024 656 96)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23634" + "plane" "(480 656 80) (1024 656 80) (1024 784 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23633" + "plane" "(1024 784 80) (1024 656 80) (1024 656 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23632" + "plane" "(480 784 80) (1024 784 80) (1024 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23631" + "plane" "(1024 656 80) (480 656 80) (480 656 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23630" + "plane" "(480 656 80) (480 784 80) (480 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19163" + side + { + "id" "23641" + "plane" "(1104 640 96) (1104 752 96) (1108 747.852 96)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 819.2] 0.078125" + "vaxis" "[0 1 0 -731.431] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "23640" + "plane" "(1104 752 80) (1104 640 80) (1108 644 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23639" + "plane" "(1104 640 80) (1104 752 80) (1104 752 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23638" + "plane" "(1108 747.848 80) (1108 644 80) (1108 644 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23637" + "plane" "(1104 752 80) (1108 747.85 80) (1108 747.852 96)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23636" + "plane" "(1108 644 80) (1104 640 80) (1104 640 96)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19164" + side + { + "id" "23647" + "plane" "(1180 644 96) (1108 644 96) (1108 748 96)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 819.2] 0.078125" + "vaxis" "[0 1 0 -731.431] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "23646" + "plane" "(1180 748 80) (1108 748 80) (1108 644 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23645" + "plane" "(1180 644 80) (1108 644 80) (1108 644 96)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 192] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23644" + "plane" "(1108 748 80) (1180 748 80) (1180 748 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23643" + "plane" "(1108 644 80) (1108 748 80) (1108 748 96)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 1 0 -992] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23642" + "plane" "(1180 748 80) (1180 644 80) (1180 644 96)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 1 0 -992] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19165" + side + { + "id" "23653" + "plane" "(1180 748 96) (1108 748 96) (1104 752 96)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 1 0 -436.153] 0.078" + "vaxis" "[1 0 0 6.25854] 0.109" + "rotation" "270" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "23652" + "plane" "(1184 752 80) (1104 752 80) (1108 748 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23651" + "plane" "(1104 752 80) (1184 752 80) (1184 752 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23650" + "plane" "(1180 748 80) (1108 748 80) (1108 748 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23649" + "plane" "(1108 748 80) (1104 752 80) (1104 752 96)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23648" + "plane" "(1184 752 80) (1180 748 80) (1180 748 96)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19166" + side + { + "id" "23659" + "plane" "(1184 640 96) (1104 640 96) (1108 644 96)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 -1 0 16.1529] 0.078" + "vaxis" "[-1 0 0 285.741] 0.109" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "23658" + "plane" "(1180 644 80) (1108 644 80) (1104 640 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23657" + "plane" "(1184 640 80) (1104 640 80) (1104 640 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23656" + "plane" "(1108 644 80) (1180 644 80) (1180 644 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23655" + "plane" "(1104 640 80) (1108 644 80) (1108 644 96)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23654" + "plane" "(1180 644 80) (1184 640 80) (1184 640 96)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19167" + side + { + "id" "23665" + "plane" "(1180 644 96) (1180 748 96) (1184 752 96)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 819.2] 0.078125" + "vaxis" "[0 1 0 -731.431] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "23664" + "plane" "(1180 748 80) (1180 644 80) (1184 640 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23663" + "plane" "(1184 752 80) (1184 640 80) (1184 640 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23662" + "plane" "(1180 644 80) (1180 748 80) (1180 748 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23661" + "plane" "(1180 748 80) (1184 752 80) (1184 752 96)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23660" + "plane" "(1184 640 80) (1180 644 80) (1180 644 96)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19168" + side + { + "id" "23671" + "plane" "(1128 552 96) (1032 456 96) (960 528 96)" + "material" "SOLUTION2/OFFICE/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 768] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23670" + "plane" "(960 528 80) (1032 456 80) (1128 552 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23669" + "plane" "(1128 552 80) (1032 456 80) (1032 456 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23668" + "plane" "(1024 656 80) (1128 552 80) (1128 552 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23667" + "plane" "(1032 456 80) (960 528 80) (960 528 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23666" + "plane" "(960 528 80) (1024 656 80) (1024 656 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19169" + side + { + "id" "23677" + "plane" "(960 528 96) (608 528 96) (480 656 96)" + "material" "SOLUTION2/OFFICE/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 768] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23676" + "plane" "(1024 656 80) (480 656 80) (608 528 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23675" + "plane" "(480 656 80) (1024 656 80) (1024 656 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23674" + "plane" "(960 528 80) (608 528 80) (608 528 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23673" + "plane" "(608 528 80) (480 656 80) (480 656 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23672" + "plane" "(1024 656 80) (960 528 80) (960 528 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19170" + side + { + "id" "23684" + "plane" "(640 528 96) (960 528 96) (1072 416 96)" + "material" "CONCRETE/BAGGAGE_CONCRETEFLOORA" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23683" + "plane" "(640 384 80) (1072 384 80) (1072 416 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23682" + "plane" "(1072 416 80) (1072 384 80) (1072 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23681" + "plane" "(640 528 80) (960 528 80) (960 528 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23680" + "plane" "(1072 384 80) (640 384 80) (640 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23679" + "plane" "(640 384 80) (640 528 80) (640 528 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23678" + "plane" "(960 528 80) (1072 416 80) (1072 416 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19171" + side + { + "id" "23690" + "plane" "(768 336 96) (768 384 96) (1024 384 96)" + "material" "CONCRETE/BAGGAGE_CONCRETEFLOORA" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23689" + "plane" "(768 384 80) (768 336 80) (1024 336 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23688" + "plane" "(768 336 80) (768 384 80) (768 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23687" + "plane" "(1024 384 80) (1024 336 80) (1024 336 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23686" + "plane" "(768 384 80) (1024 384 80) (1024 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23685" + "plane" "(1024 336 80) (768 336 80) (768 336 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19172" + side + { + "id" "23696" + "plane" "(608 288 96) (608 528 96) (640 528 96)" + "material" "CONCRETE/BAGGAGE_CONCRETEFLOORA" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23695" + "plane" "(608 528 80) (608 288 80) (640 288 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23694" + "plane" "(608 288 80) (608 528 80) (608 528 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23693" + "plane" "(640 528 80) (640 288 80) (640 288 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23692" + "plane" "(608 528 80) (640 528 80) (640 528 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23691" + "plane" "(640 288 80) (608 288 80) (608 288 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19173" + side + { + "id" "23702" + "plane" "(480 656 96) (608 528 96) (608 288 96)" + "material" "SOLUTION2/OFFICE/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 768] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23701" + "plane" "(480 288 80) (608 288 80) (608 528 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23700" + "plane" "(608 528 80) (608 288 80) (608 288 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23699" + "plane" "(480 656 80) (608 528 80) (608 528 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23698" + "plane" "(608 288 80) (480 288 80) (480 288 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23697" + "plane" "(480 288 80) (480 656 80) (480 656 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19174" + side + { + "id" "23708" + "plane" "(224 784 96) (480 784 96) (480 512 96)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23707" + "plane" "(224 512 80) (480 512 80) (480 784 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23706" + "plane" "(480 784 80) (480 512 80) (480 512 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23705" + "plane" "(480 512 80) (224 512 80) (224 512 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23704" + "plane" "(224 784 80) (480 784 80) (480 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23703" + "plane" "(224 512 80) (224 784 80) (224 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19175" + side + { + "id" "23714" + "plane" "(448 288 96) (448 512 96) (480 512 96)" + "material" "SOLUTION/WOODFL5" + "uaxis" "[1 0 0 128] 0.125" + "vaxis" "[0 -1 0 -192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23713" + "plane" "(448 512 80) (448 288 80) (480 288 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23712" + "plane" "(448 288 80) (448 512 80) (448 512 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23711" + "plane" "(480 512 80) (480 288 80) (480 288 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23710" + "plane" "(448 512 80) (480 512 80) (480 512 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23709" + "plane" "(480 288 80) (448 288 80) (448 288 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14268]" + } +} +entity +{ + "id" "19176" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "752 364.5 100" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "19177" + side + { + "id" "23720" + "plane" "(768 336 104) (768 392 104) (769 393 104)" + "material" "METAL/DRTRIME" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 404] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23719" + "plane" "(768 392 96) (768 336 96) (769 336 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23718" + "plane" "(768 336 96) (768 392 96) (768 392 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23717" + "plane" "(769 393 96) (769 336 96) (769 336 104)" + "material" "METAL/DRTRIME" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 404] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23716" + "plane" "(768 392 96) (769 393 96) (769 393 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 20] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23715" + "plane" "(769 336 96) (768 336 96) (768 336 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19178" + side + { + "id" "23726" + "plane" "(769 393 104) (768 392 104) (736 392 104)" + "material" "METAL/DRTRIME" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 404] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23725" + "plane" "(735 393 96) (736 392 96) (768 392 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23724" + "plane" "(736 392 96) (735 393 96) (735 393 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23723" + "plane" "(769 393 96) (768 392 96) (768 392 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23722" + "plane" "(735 393 96) (769 393 96) (769 393 104)" + "material" "METAL/DRTRIME" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 404] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23721" + "plane" "(768 392 96) (736 392 96) (736 392 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19179" + side + { + "id" "23732" + "plane" "(735 384 104) (735 393 104) (736 392 104)" + "material" "METAL/DRTRIME" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 404] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23731" + "plane" "(735 393 96) (735 384 96) (736 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23730" + "plane" "(735 384 96) (735 393 96) (735 393 104)" + "material" "METAL/DRTRIME" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 404] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23729" + "plane" "(736 392 96) (736 384 96) (736 384 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23728" + "plane" "(735 393 96) (736 392 96) (736 392 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 20] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23727" + "plane" "(736 384 96) (735 384 96) (735 384 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15768]" + } +} +entity +{ + "id" "19181" + "classname" "func_detail" + solid + { + "id" "19182" + side + { + "id" "23738" + "plane" "(736 392 96) (736 384 96) (768 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23737" + "plane" "(736 384 96) (736 392 96) (736 392 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 -1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23736" + "plane" "(768 392 352) (768 392 96) (768 384 96)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23735" + "plane" "(736 392 352) (736 392 96) (768 392 96)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[-1 0 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23734" + "plane" "(736 384 352) (736 392 352) (768 392 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23733" + "plane" "(768 384 352) (768 384 96) (736 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -16268]" + } +} +entity +{ + "id" "19183" + "classname" "func_detail" + solid + { + "id" "19184" + side + { + "id" "23744" + "plane" "(1248 336 352) (1216 368 352) (1232 368 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23743" + "plane" "(1232 368 192) (1216 368 192) (1248 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23742" + "plane" "(1216 368 192) (1232 368 192) (1232 368 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23741" + "plane" "(1248 336 192) (1216 368 192) (1216 368 352)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[-0.707107 0.707107 0 926.506] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23740" + "plane" "(1248 352 192) (1248 336 192) (1248 336 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23739" + "plane" "(1232 368 192) (1248 352 192) (1248 352 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19185" + side + { + "id" "23750" + "plane" "(1216 368 352) (1216 592 352) (1232 592 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23749" + "plane" "(1216 592 96) (1216 368 96) (1232 368 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23748" + "plane" "(1216 368 96) (1216 592 96) (1216 592 352)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23747" + "plane" "(1232 592 96) (1232 368 96) (1232 368 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23746" + "plane" "(1216 592 96) (1232 592 96) (1232 592 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23745" + "plane" "(1232 368 96) (1216 368 96) (1216 368 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19186" + side + { + "id" "23756" + "plane" "(1248 352 352) (1280 352 352) (1280 336 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23755" + "plane" "(1248 336 192) (1280 336 192) (1280 352 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23754" + "plane" "(1280 352 192) (1280 336 192) (1280 336 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23753" + "plane" "(1280 336 192) (1248 336 192) (1248 336 352)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[-1 0 0 266.98] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23752" + "plane" "(1248 352 192) (1280 352 192) (1280 352 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23751" + "plane" "(1248 336 192) (1248 352 192) (1248 352 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19187" + side + { + "id" "23762" + "plane" "(1328 336 352) (1280 336 352) (1280 352 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23761" + "plane" "(1280 352 352) (1280 336 352) (1280 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23760" + "plane" "(1328 336 192) (1280 336 192) (1280 336 352)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[-1 0 0 266.98] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23759" + "plane" "(1280 352 192) (1280 336 192) (1328 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23758" + "plane" "(1328 336 192) (1328 336 352) (1312 352 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23757" + "plane" "(1312 352 352) (1280 352 352) (1280 352 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19188" + side + { + "id" "23768" + "plane" "(1216 688 464) (1216 784 464) (1232 784 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23767" + "plane" "(1216 784 352) (1216 464 352) (1232 464 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23766" + "plane" "(1216 464 352) (1216 784 352) (1216 784 464)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23765" + "plane" "(1232 784 352) (1232 464 352) (1232 688 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0.5] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23764" + "plane" "(1216 784 352) (1232 784 352) (1232 784 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0.5] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23763" + "plane" "(1232 464 352) (1216 464 352) (1216 688 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0.5] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19189" + side + { + "id" "23774" + "plane" "(1216 592 352) (1216 752 352) (1232 752 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23773" + "plane" "(1216 752 304) (1216 592 304) (1232 592 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23772" + "plane" "(1216 592 304) (1216 752 304) (1216 752 352)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23771" + "plane" "(1232 752 304) (1232 592 304) (1232 592 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23770" + "plane" "(1216 752 304) (1232 752 304) (1232 752 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23769" + "plane" "(1232 592 304) (1216 592 304) (1216 592 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19190" + side + { + "id" "23780" + "plane" "(1216 752 352) (1216 784 352) (1232 784 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23779" + "plane" "(1216 784 96) (1216 752 96) (1232 752 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23778" + "plane" "(1216 752 96) (1216 784 96) (1216 784 352)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23777" + "plane" "(1232 784 96) (1232 752 96) (1232 752 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23776" + "plane" "(1216 784 96) (1232 784 96) (1232 784 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23775" + "plane" "(1232 752 96) (1216 752 96) (1216 752 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 16000]" + } +} +entity +{ + "id" "19191" + "classname" "func_detail" + solid + { + "id" "19192" + side + { + "id" "23786" + "plane" "(448 560 416) (448 688 480) (816 688 480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23785" + "plane" "(448 688 400) (448 560 400) (816 560 400)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23784" + "plane" "(448 688 480) (448 560 416) (448 560 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23783" + "plane" "(816 688 400) (816 560 400) (816 560 416)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23782" + "plane" "(448 688 400) (816 688 400) (816 688 480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23781" + "plane" "(816 560 400) (448 560 400) (448 560 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19193" + side + { + "id" "23792" + "plane" "(448 688 480) (448 784 480) (816 784 480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23791" + "plane" "(448 784 400) (448 688 400) (816 688 400)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23790" + "plane" "(448 688 400) (448 784 400) (448 784 480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23789" + "plane" "(816 784 400) (816 688 400) (816 688 480)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23788" + "plane" "(448 784 400) (816 784 400) (816 784 480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23787" + "plane" "(816 688 400) (448 688 400) (448 688 480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19194" + side + { + "id" "23798" + "plane" "(448 464 368) (448 560 416) (816 560 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23797" + "plane" "(448 560 400) (448 464 352) (816 464 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23796" + "plane" "(448 464 352) (448 560 400) (448 560 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23795" + "plane" "(816 560 400) (816 464 352) (816 464 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23794" + "plane" "(816 464 352) (448 464 352) (448 464 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23793" + "plane" "(448 560 400) (816 560 400) (816 560 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "19195" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/support_bars_dec.mdl" + "renderamt" "255" + "rendercolor" "177 177 177" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1208 480 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "19199" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/support_bars_dec.mdl" + "renderamt" "255" + "rendercolor" "177 177 177" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "456 480 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "19203" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/support_bars_dec.mdl" + "renderamt" "255" + "rendercolor" "177 177 177" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "576 480 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "19207" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/support_bars_dec.mdl" + "renderamt" "255" + "rendercolor" "177 177 177" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "808 480 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "19211" + "classname" "prop_static" + "angles" "90 45 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_longer_one.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1248 334 252" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "19215" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-1 0 0" + "BasisOrigin" "1216 464 172" + "BasisU" "0 1 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "solution2/overlays/wallart" + "sides" "23741 23748" + "StartU" "1" + "StartV" "0" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1216 464 172" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" + } +} +entity +{ + "id" "19221" + "classname" "func_detail" + solid + { + "id" "19222" + side + { + "id" "23804" + "plane" "(1024 192 368) (1024 448 368) (1072 448 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23803" + "plane" "(1024 448 352) (1024 192 352) (1072 192 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23802" + "plane" "(1024 192 352) (1024 448 352) (1024 448 368)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23801" + "plane" "(1072 448 352) (1072 192 352) (1072 192 368)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23800" + "plane" "(1024 448 352) (1072 448 352) (1072 448 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23799" + "plane" "(1072 192 352) (1024 192 352) (1024 192 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +entity +{ + "id" "19223" + "classname" "func_detail" + solid + { + "id" "19224" + side + { + "id" "23810" + "plane" "(1200 352 368) (1200 448 368) (1216 448 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23809" + "plane" "(1200 448 352) (1200 352 352) (1216 368 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[1 0 0 -928] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23808" + "plane" "(1200 352 352) (1200 448 352) (1200 448 368)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23807" + "plane" "(1216 448 352) (1216 368 352) (1216 368 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23806" + "plane" "(1200 448 352) (1216 448 352) (1216 448 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23805" + "plane" "(1216 368 352) (1200 352 352) (1200 352 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19225" + side + { + "id" "23816" + "plane" "(1200 320 368) (1200 352 368) (1216 368 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23815" + "plane" "(1232 352 352) (1216 368 352) (1200 352 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[1 0 0 992] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23814" + "plane" "(1200 320 352) (1200 352 352) (1200 352 368)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 1 0 992] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23813" + "plane" "(1216 368 352) (1232 352 352) (1232 352 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23812" + "plane" "(1200 352 352) (1216 368 352) (1216 368 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23811" + "plane" "(1232 352 352) (1200 320 352) (1200 320 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19226" + side + { + "id" "23822" + "plane" "(1232 320 368) (1200 320 368) (1232 352 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23821" + "plane" "(1200 320 352) (1232 320 352) (1248 336 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[1 0 0 992] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23820" + "plane" "(1232 320 352) (1200 320 352) (1200 320 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23819" + "plane" "(1232 352 352) (1248 336 352) (1248 336 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23818" + "plane" "(1248 336 352) (1232 320 352) (1232 320 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23817" + "plane" "(1200 320 352) (1232 352 352) (1232 352 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19227" + side + { + "id" "23828" + "plane" "(1328 320 368) (1232 320 368) (1248 336 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23827" + "plane" "(1328 336 352) (1248 336 352) (1232 320 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 1 0 992] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23826" + "plane" "(1328 320 352) (1232 320 352) (1232 320 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23825" + "plane" "(1248 336 352) (1328 336 352) (1328 336 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23824" + "plane" "(1232 320 352) (1248 336 352) (1248 336 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23823" + "plane" "(1328 336 352) (1328 320 352) (1328 320 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "19228" + "classname" "prop_static" + "angles" "90 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_longer_one.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1076 344 232" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "19232" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "912 208 336" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "19236" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1152 224 336" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "19240" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_curve.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "880 176 336" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "19244" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1056 208 336" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "19248" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_curve.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "864 192 336" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "19252" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1024 224 336" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "19256" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/bladedroof.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1136 352 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19260" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/bladedroof.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1136 416 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19264" + "classname" "prop_static" + "angles" "0 0 180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1048 304 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19268" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/bladedroof.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1264 224 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19272" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/bladedroof.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1264 288 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19276" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/bladedroof.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1136 224 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19280" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/bladedroof.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1136 288 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19284" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/bladedroof.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "960 224 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19288" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/bladedroof.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "960 288 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19292" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/bladedroof.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "960 352 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19296" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/bladedroof.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "960 416 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19300" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/bladedroof.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "832 416 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19304" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/bladedroof.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "832 352 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19308" + "classname" "func_detail" + solid + { + "id" "19309" + side + { + "id" "23834" + "plane" "(1424 -832 192) (1424 -64 192) (1440 -64 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_002_COLOR" + "uaxis" "[0 1 0 608] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23833" + "plane" "(1424 -64 184) (1424 -832 184) (1440 -832 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23832" + "plane" "(1424 -832 184) (1424 -64 184) (1424 -64 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_002_COLOR" + "uaxis" "[0 1 0 -573] 0.125" + "vaxis" "[0 0 -1 31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23831" + "plane" "(1440 -64 184) (1440 -832 184) (1440 -832 192)" + "material" "PLASTER/PLASTERCEILING_INT_01" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23830" + "plane" "(1424 -64 184) (1440 -64 184) (1440 -64 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23829" + "plane" "(1440 -832 184) (1424 -832 184) (1424 -832 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "19310" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/bladedroof.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "832 288 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19314" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/bladedroof.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "832 224 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19318" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair_capped.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1144 -588 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19322" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1192 -588 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19326" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1212 -568 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19330" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1212 -520 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19334" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1212 -472 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19338" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1272 -836 92" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19342" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair_capped.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1320 -836 92" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19346" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1128 -836 92" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19350" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair_capped.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1080 -836 92" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19354" + "classname" "prop_static" + "angles" "0 315 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/globe.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1022.1 -386.198 120" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5768]" + } +} +entity +{ + "id" "19358" + "classname" "func_detail" + solid + { + "id" "19359" + side + { + "id" "23842" + "plane" "(670.918 -160 248) (851.875 -160 248) (867 -167.156 248)" + "material" "SOLUTION2/LIGHT/BOMBWOOD" + "uaxis" "[0 1 0 85.0924] 0.279965" + "vaxis" "[1 0 0 -54.561] 0.238281" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23841" + "plane" "(670.918 -246 128) (851.828 -246 128) (867 -238.828 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 52] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23840" + "plane" "(867 -167.168 128) (867 -238.828 128) (867 -238.836 248)" + "material" "SOLUTION2/LIGHT/BOMBWOOD" + "uaxis" "[0 1 0 85.0925] 0.279965" + "vaxis" "[0 0 -1 16.7875] 0.238281" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23839" + "plane" "(670.918 -160 128) (851.848 -160 128) (851.873 -160 248)" + "material" "SOLUTION2/LIGHT/BOMBWOOD" + "uaxis" "[-1 0 0 33.1133] 0.331606" + "vaxis" "[0 0 -1 16.7875] 0.238281" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23838" + "plane" "(851.832 -246 128) (670.919 -246 128) (670.918 -246 248)" + "material" "SOLUTION2/LIGHT/BOMBWOOD" + "uaxis" "[1 0 0 -33.125] 0.331604" + "vaxis" "[0 0 -1 16.7875] 0.238281" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23837" + "plane" "(851.852 -160 128) (867 -167.166 128) (867 -167.154 248)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23836" + "plane" "(867 -238.828 128) (851.832 -246 128) (851.852 -246 248)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23835" + "plane" "(670.919 -246 128) (670.919 -160 128) (670.919 -160 248)" + "material" "DE_TRAIN/BLENDGRAVELDIRT001A" + "uaxis" "[0 1 0 -40] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19360" + side + { + "id" "23847" + "plane" "(867 -238.824 248) (867 -246 248) (851.822 -246 248)" + "material" "WOOD/WOODSIDING_EXT_06" + "uaxis" "[-1 0 0 140] 0.25" + "vaxis" "[0 1 0 408] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23846" + "plane" "(851.84 -246 128) (867 -246 128) (867 -238.832 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 52] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23845" + "plane" "(867 -238.832 128) (867 -246 128) (867 -246 248)" + "material" "WOOD/WOODSIDING_EXT_06" + "uaxis" "[0 0 1 -224] 0.25" + "vaxis" "[0 1 0 408] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23844" + "plane" "(867 -246 128) (851.839 -246 128) (851.82 -246 248)" + "material" "WOOD/WOODSIDING_EXT_06" + "uaxis" "[0 0 1 -224] 0.25" + "vaxis" "[1 0 0 293] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23843" + "plane" "(851.844 -246 128) (867 -238.834 128) (867 -238.826 248)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19361" + side + { + "id" "23852" + "plane" "(851.852 -160 248) (867 -160 248) (867 -167.164 248)" + "material" "WOOD/WOODSIDING_EXT_06" + "uaxis" "[-1 0 0 140] 0.25" + "vaxis" "[0 1 0 396] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23851" + "plane" "(867 -167.164 128) (867 -160 128) (851.849 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 52] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23850" + "plane" "(867 -160 128) (867 -167.164 128) (867 -167.164 248)" + "material" "WOOD/WOODSIDING_EXT_06" + "uaxis" "[0 0 1 -224] 0.25" + "vaxis" "[0 1 0 396] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23849" + "plane" "(851.852 -160 128) (867 -160 128) (867 -160 248)" + "material" "WOOD/WOODSIDING_EXT_06" + "uaxis" "[0 0 1 -224] 0.25" + "vaxis" "[1 0 0 322] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23848" + "plane" "(867 -167.162 128) (851.853 -160 128) (851.852 -160 248)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19362" + side + { + "id" "23858" + "plane" "(671.156 -246 248) (656 -246 248) (656 -160 248)" + "material" "WOOD/WOODSIDING_EXT_06" + "uaxis" "[0 1 0 216] 0.25" + "vaxis" "[1 0 0 80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23857" + "plane" "(671.156 -160 128) (656 -160 128) (656 -246 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23856" + "plane" "(656 -246 128) (656 -160 128) (656 -160 248)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23855" + "plane" "(656 -160 128) (671.156 -160 128) (671.156 -160 248)" + "material" "WOOD/WOODSIDING_EXT_06" + "uaxis" "[0 0 1 -224] 0.25" + "vaxis" "[1 0 0 80] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23854" + "plane" "(671.156 -246 128) (656 -246 128) (656 -246 248)" + "material" "WOOD/WOODSIDING_EXT_06" + "uaxis" "[0 0 1 -224] 0.25" + "vaxis" "[1 0 0 80] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23853" + "plane" "(671.156 -160 128) (671.156 -246 128) (671.156 -246 248)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +entity +{ + "id" "19363" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/foliage/neat_shrub.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "648 -564 216" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19367" + "classname" "prop_static" + "angles" "0 330 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/foliage/shrub_1.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "736 -560 148" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19371" + "classname" "func_detail" + solid + { + "id" "19372" + side + { + "id" "23864" + "plane" "(828 -672 112) (828 -640 112) (996 -640 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23863" + "plane" "(828 -640 92) (828 -672 92) (996 -672 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23862" + "plane" "(828 -672 92) (828 -640 92) (828 -640 112)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[-0.242536 -0.970142 0 865.867] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23861" + "plane" "(996 -640 92) (996 -672 92) (996 -672 112)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[-0.242536 0.970142 0 263.67] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23860" + "plane" "(996 -672 92) (828 -672 92) (828 -672 112)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 0 -1 448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23859" + "plane" "(828 -640 92) (996 -640 92) (996 -640 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19373" + side + { + "id" "23870" + "plane" "(828 -736 104) (828 -704 104) (996 -704 104)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23869" + "plane" "(828 -704 92) (828 -736 92) (996 -736 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23868" + "plane" "(828 -736 92) (828 -704 92) (828 -704 104)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0 1 0 -387.324] 0.25" + "vaxis" "[0 0 -1 416] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23867" + "plane" "(996 -704 92) (996 -736 92) (996 -736 104)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0 -1 0 -190.103] 0.25" + "vaxis" "[0 0 -1 416] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23866" + "plane" "(996 -736 92) (828 -736 92) (828 -736 104)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 0 -1 368] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23865" + "plane" "(828 -704 92) (996 -704 92) (996 -704 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19374" + side + { + "id" "23876" + "plane" "(832 -768 96) (828 -736 96) (996 -736 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23875" + "plane" "(828 -736 92) (832 -768 92) (992 -768 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23874" + "plane" "(832 -768 92) (828 -736 92) (828 -736 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[-0.124034 0.992278 0 0.747108] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23873" + "plane" "(996 -736 92) (992 -768 92) (992 -768 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[-0.124034 -0.992278 0 326.788] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23872" + "plane" "(992 -768 92) (832 -768 92) (832 -768 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23871" + "plane" "(828 -736 92) (996 -736 92) (996 -736 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19375" + side + { + "id" "23882" + "plane" "(840 -800 96) (832 -768 96) (992 -768 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23881" + "plane" "(832 -768 92) (840 -800 92) (984 -800 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23880" + "plane" "(840 -800 92) (832 -768 92) (832 -768 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[-0.242536 0.970142 0 327.122] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23879" + "plane" "(992 -768 92) (984 -800 92) (984 -800 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[-0.242536 -0.970142 0 865.005] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23878" + "plane" "(984 -800 92) (840 -800 92) (840 -800 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23877" + "plane" "(832 -768 92) (992 -768 92) (992 -768 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19376" + side + { + "id" "23888" + "plane" "(844 -832 96) (840 -800 96) (984 -800 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23887" + "plane" "(840 -800 92) (844 -832 92) (980 -832 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23886" + "plane" "(844 -832 92) (840 -800 92) (840 -800 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[-0.124036 0.992278 0 1023.79] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23885" + "plane" "(984 -800 92) (980 -832 92) (980 -832 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[-0.124036 -0.992278 0 327.753] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23884" + "plane" "(980 -832 92) (844 -832 92) (844 -832 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23883" + "plane" "(840 -800 92) (984 -800 92) (984 -800 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19377" + side + { + "id" "23894" + "plane" "(840 -1056 96) (832 -1024 96) (992 -1024 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23893" + "plane" "(832 -1024 92) (840 -1056 92) (984 -1056 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23892" + "plane" "(840 -1056 92) (832 -1024 92) (832 -1024 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0 1 0 -384] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23891" + "plane" "(992 -1024 92) (984 -1056 92) (984 -1056 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[-0.242536 0.970142 0 215.313] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23890" + "plane" "(984 -1056 92) (840 -1056 92) (840 -1056 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23889" + "plane" "(832 -1024 92) (992 -1024 92) (992 -1024 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19378" + side + { + "id" "23900" + "plane" "(832 -1024 96) (828 -992 96) (996 -992 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23899" + "plane" "(828 -992 92) (832 -1024 92) (992 -1024 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23898" + "plane" "(832 -1024 92) (828 -992 92) (828 -992 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0.124036 0.992278 0 -828.421] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23897" + "plane" "(996 -992 92) (992 -1024 92) (992 -1024 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[-0.576398 0.817169 0 913.497] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23896" + "plane" "(992 -1024 92) (832 -1024 92) (832 -1024 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23895" + "plane" "(828 -992 92) (996 -992 92) (996 -992 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19379" + side + { + "id" "23906" + "plane" "(828 -960 96) (832 -928 96) (992 -928 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23905" + "plane" "(832 -928 92) (828 -960 92) (996 -960 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23904" + "plane" "(828 -960 92) (832 -928 92) (832 -928 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0.364478 0.931212 0 -838.207] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23903" + "plane" "(992 -928 92) (996 -960 92) (996 -960 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[-0.723384 -0.690444 0 -255.784] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23902" + "plane" "(996 -960 92) (828 -960 92) (828 -960 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23901" + "plane" "(832 -928 92) (992 -928 92) (992 -928 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19380" + side + { + "id" "23912" + "plane" "(828 -992 96) (828 -960 96) (996 -960 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23911" + "plane" "(828 -960 92) (828 -992 92) (996 -992 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23910" + "plane" "(828 -992 92) (828 -960 92) (828 -960 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0.246157 0.96923 0 -300.339] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23909" + "plane" "(996 -960 92) (996 -992 92) (996 -992 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[-0.942029 0.335531 0 459.033] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23908" + "plane" "(996 -992 92) (828 -992 92) (828 -992 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23907" + "plane" "(828 -960 92) (996 -960 92) (996 -960 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19381" + side + { + "id" "23918" + "plane" "(840 -896 96) (844 -864 96) (980 -864 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23917" + "plane" "(844 -864 92) (840 -896 92) (984 -896 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23916" + "plane" "(840 -896 92) (844 -864 92) (844 -864 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0.124035 0.992278 0 185.316] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23915" + "plane" "(980 -864 92) (984 -896 92) (984 -896 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0.124034 -0.992276 0 380.303] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23914" + "plane" "(984 -896 92) (840 -896 92) (840 -896 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23913" + "plane" "(844 -864 92) (980 -864 92) (980 -864 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19382" + side + { + "id" "23924" + "plane" "(832 -928 96) (840 -896 96) (984 -896 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23923" + "plane" "(840 -896 92) (832 -928 92) (992 -928 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23922" + "plane" "(832 -928 92) (840 -896 92) (840 -896 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0.480448 0.877023 0 -401.305] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23921" + "plane" "(984 -896 92) (992 -928 92) (992 -928 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0.242535 -0.970141 0 -6.78223] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23920" + "plane" "(992 -928 92) (832 -928 92) (832 -928 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23919" + "plane" "(840 -896 92) (984 -896 92) (984 -896 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19383" + side + { + "id" "23930" + "plane" "(844 -864 96) (844 -832 96) (980 -832 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23929" + "plane" "(844 -832 92) (844 -864 92) (980 -864 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23928" + "plane" "(844 -864 92) (844 -832 92) (844 -832 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0 1 0 630.748] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23927" + "plane" "(980 -832 92) (980 -864 92) (980 -864 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0 -1 0 839.833] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23926" + "plane" "(980 -864 92) (844 -864 92) (844 -864 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23925" + "plane" "(844 -832 92) (980 -832 92) (980 -832 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19384" + side + { + "id" "23936" + "plane" "(828 -672 120) (828 -640 120) (996 -640 120)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23935" + "plane" "(828 -640 112) (828 -672 112) (996 -672 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23934" + "plane" "(828 -672 112) (828 -640 112) (828 -640 120)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0.242536 0.970142 0 -249.745] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23933" + "plane" "(996 -640 112) (996 -672 112) (996 -672 120)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0.242536 -0.970142 0 -49.2244] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23932" + "plane" "(996 -672 112) (828 -672 112) (828 -672 120)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23931" + "plane" "(828 -640 112) (996 -640 112) (996 -640 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19385" + side + { + "id" "23942" + "plane" "(828 -640 128) (828 -624 128) (996 -624 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23941" + "plane" "(828 -624 120) (828 -640 120) (996 -640 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23940" + "plane" "(828 -640 120) (828 -624 120) (828 -624 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0.124034 0.992278 0 205.09] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23939" + "plane" "(996 -624 120) (996 -640 120) (996 -640 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0.124034 -0.992278 0 360.533] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23938" + "plane" "(828 -624 120) (996 -624 120) (996 -624 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23937" + "plane" "(996 -640 120) (828 -640 120) (828 -640 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 0 -1 768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19386" + side + { + "id" "23948" + "plane" "(828 -640 120) (828 -624 120) (996 -624 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23947" + "plane" "(828 -624 92) (828 -640 92) (996 -640 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23946" + "plane" "(828 -640 92) (828 -624 92) (828 -624 120)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0.124035 -0.992278 0 -422.475] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23945" + "plane" "(996 -624 92) (996 -640 92) (996 -640 120)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0.124035 0.992278 0 925.516] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23944" + "plane" "(828 -624 92) (996 -624 92) (996 -624 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23943" + "plane" "(996 -640 92) (828 -640 92) (828 -640 120)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 0 -1 752] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19387" + side + { + "id" "23954" + "plane" "(828 -704 112) (828 -672 112) (996 -672 112)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23953" + "plane" "(828 -672 104) (828 -704 104) (996 -704 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23952" + "plane" "(828 -704 104) (828 -672 104) (828 -672 112)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0.124036 0.992278 0 -819.878] 0.25" + "vaxis" "[0 0 -1 448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23951" + "plane" "(996 -672 104) (996 -704 104) (996 -704 112)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0.124036 -0.992278 0 -662.517] 0.25" + "vaxis" "[0 0 -1 448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23950" + "plane" "(996 -704 104) (828 -704 104) (828 -704 112)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 0 -1 368] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23949" + "plane" "(828 -672 104) (996 -672 104) (996 -672 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19388" + side + { + "id" "23960" + "plane" "(828 -704 104) (828 -672 104) (996 -672 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23959" + "plane" "(828 -672 92) (828 -704 92) (996 -704 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23958" + "plane" "(828 -704 92) (828 -672 92) (828 -672 104)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[-0.124034 -0.992278 0 411.993] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23957" + "plane" "(996 -672 92) (996 -704 92) (996 -704 104)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[-0.124034 0.992278 0 -147.044] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23956" + "plane" "(996 -704 92) (828 -704 92) (828 -704 104)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 0 -1 336] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23955" + "plane" "(828 -672 92) (996 -672 92) (996 -672 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10268]" + } +} +entity +{ + "id" "19389" + "classname" "func_detail" + solid + { + "id" "19390" + side + { + "id" "23966" + "plane" "(996 -800 96) (996 -624 96) (1392 -624 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -705.939] 0.231308" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23965" + "plane" "(996 -624 92) (996 -800 92) (1392 -800 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -1.93936] 0.231308" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23964" + "plane" "(996 -800 92) (996 -624 92) (996 -624 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0 0 1 -256] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23963" + "plane" "(1392 -624 92) (1392 -800 92) (1392 -800 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23962" + "plane" "(996 -624 92) (1392 -624 92) (1392 -624 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -1.93936] 0.231308" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23961" + "plane" "(1392 -800 92) (996 -800 92) (996 -800 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[-1 0 0 144.78] 0.231308" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19391" + side + { + "id" "23972" + "plane" "(1248 -624 96) (1248 -256 96) (1392 -256 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -981.333] 0.204545" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23971" + "plane" "(1248 -256 92) (1248 -624 92) (1392 -624 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -21.3335] 0.204545" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23970" + "plane" "(1248 -624 92) (1248 -256 92) (1248 -256 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23969" + "plane" "(1392 -256 92) (1392 -624 92) (1392 -624 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23968" + "plane" "(1248 -256 92) (1392 -256 92) (1392 -256 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -21.3335] 0.204545" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23967" + "plane" "(1392 -624 92) (1248 -624 92) (1248 -624 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -21.3335] 0.204545" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19392" + side + { + "id" "23977" + "plane" "(984 -800 96) (989 -808 96) (980 -832.028 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23976" + "plane" "(980 -832 92) (989 -808 92) (984 -800 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.866025 0.5 0 40.683] 0.25" + "vaxis" "[0.5 -0.866025 0 6.07761] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23975" + "plane" "(989 -808 92) (980 -832 92) (980 -832 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[-0.351124 -0.936329 0 380.135] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23974" + "plane" "(984 -800 92) (989 -808 92) (989 -808 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0.866025 0.5 0 112.683] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23973" + "plane" "(980 -832 92) (984 -800 92) (984 -800 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[-0.5 0.866025 0 569.922] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19393" + side + { + "id" "23982" + "plane" "(1008 -800 96) (989 -808 96) (984 -800 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23981" + "plane" "(989 -808 92) (1008 -800 92) (984 -800 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23980" + "plane" "(1008 -800 92) (989 -808 92) (989 -808 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[-0.921635 -0.388057 0 313.093] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23979" + "plane" "(984 -800 92) (1008 -800 92) (1008 -800 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23978" + "plane" "(989 -808 92) (984 -800 92) (984 -800 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19394" + side + { + "id" "23988" + "plane" "(984 -800 96) (992 -768 96) (996 -768 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23987" + "plane" "(992 -768 92) (984 -800 92) (996 -800 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23986" + "plane" "(984 -800 92) (992 -768 92) (992 -768 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23985" + "plane" "(996 -768 92) (996 -800 92) (996 -800 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23984" + "plane" "(992 -768 92) (996 -768 92) (996 -768 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23983" + "plane" "(996 -800 92) (984 -800 92) (984 -800 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19395" + side + { + "id" "23993" + "plane" "(996 -736.016 96) (996 -768 96) (992 -768 96)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23992" + "plane" "(992 -768 92) (996 -768 92) (996 -736.016 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23991" + "plane" "(996 -736 92) (996 -768 92) (996 -768 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23990" + "plane" "(996 -768 92) (992 -768 92) (992 -768 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23989" + "plane" "(992 -768 92) (996 -736 92) (996 -736 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "19396" + "classname" "func_detail" + solid + { + "id" "19397" + side + { + "id" "23999" + "plane" "(784 -1056 304) (784 -640 304) (800 -640 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23998" + "plane" "(784 -640 288) (784 -1056 288) (800 -1056 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23997" + "plane" "(784 -1056 288) (784 -640 288) (784 -640 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23996" + "plane" "(800 -640 288) (800 -1056 288) (800 -1056 304)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23995" + "plane" "(784 -640 288) (800 -640 288) (800 -640 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23994" + "plane" "(800 -1056 288) (784 -1056 288) (784 -1056 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19398" + side + { + "id" "24005" + "plane" "(784 -744 288) (784 -736 288) (800 -736 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24004" + "plane" "(784 -736 112) (784 -744 112) (800 -744 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24003" + "plane" "(784 -744 112) (784 -736 112) (784 -736 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24002" + "plane" "(800 -736 112) (800 -744 112) (800 -744 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24001" + "plane" "(784 -736 112) (800 -736 112) (800 -736 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24000" + "plane" "(800 -744 112) (784 -744 112) (784 -744 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19399" + side + { + "id" "24011" + "plane" "(792 -736 288) (792 -640 288) (796 -640 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24010" + "plane" "(792 -640 112) (792 -736 112) (796 -736 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24009" + "plane" "(792 -736 112) (792 -640 112) (792 -640 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24008" + "plane" "(796 -640 112) (796 -736 112) (796 -736 288)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[0 1 0 170.667] 0.375" + "vaxis" "[0 0 -1 162.909] 0.6875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24007" + "plane" "(792 -640 112) (796 -640 112) (796 -640 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24006" + "plane" "(796 -736 112) (792 -736 112) (792 -736 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19400" + side + { + "id" "24017" + "plane" "(784 -848 288) (784 -840 288) (800 -840 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24016" + "plane" "(784 -840 112) (784 -848 112) (800 -848 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24015" + "plane" "(784 -848 112) (784 -840 112) (784 -840 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24014" + "plane" "(800 -840 112) (800 -848 112) (800 -848 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24013" + "plane" "(784 -840 112) (800 -840 112) (800 -840 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24012" + "plane" "(800 -848 112) (784 -848 112) (784 -848 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19401" + side + { + "id" "24023" + "plane" "(784 -1056 112) (784 -640 112) (800 -640 112)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24022" + "plane" "(784 -640 92) (784 -1056 92) (800 -1056 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24021" + "plane" "(784 -1056 92) (784 -640 92) (784 -640 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24020" + "plane" "(800 -640 92) (800 -1056 92) (800 -1056 112)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24019" + "plane" "(784 -640 92) (800 -640 92) (800 -640 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24018" + "plane" "(800 -1056 92) (784 -1056 92) (784 -1056 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19402" + side + { + "id" "24029" + "plane" "(784 -952 288) (784 -944 288) (800 -944 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24028" + "plane" "(784 -944 112) (784 -952 112) (800 -952 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24027" + "plane" "(784 -952 112) (784 -944 112) (784 -944 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24026" + "plane" "(800 -944 112) (800 -952 112) (800 -952 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24025" + "plane" "(784 -944 112) (800 -944 112) (800 -944 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24024" + "plane" "(800 -952 112) (784 -952 112) (784 -952 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19403" + side + { + "id" "24035" + "plane" "(784 -1056 288) (784 -1048 288) (800 -1048 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24034" + "plane" "(784 -1048 112) (784 -1056 112) (800 -1056 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24033" + "plane" "(784 -1056 112) (784 -1048 112) (784 -1048 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24032" + "plane" "(800 -1048 112) (800 -1056 112) (800 -1056 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24031" + "plane" "(784 -1048 112) (800 -1048 112) (800 -1048 288)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24030" + "plane" "(800 -1056 112) (784 -1056 112) (784 -1056 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19404" + side + { + "id" "24041" + "plane" "(792 -1048 288) (792 -952 288) (796 -952 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24040" + "plane" "(792 -952 112) (792 -1048 112) (796 -1048 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24039" + "plane" "(792 -1048 112) (792 -952 112) (792 -952 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24038" + "plane" "(796 -952 112) (796 -1048 112) (796 -1048 288)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[0 1 0 234.667] 0.375" + "vaxis" "[0 0 -1 162.909] 0.6875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24037" + "plane" "(792 -952 112) (796 -952 112) (796 -952 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24036" + "plane" "(796 -1048 112) (792 -1048 112) (792 -1048 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19405" + side + { + "id" "24047" + "plane" "(792 -944 288) (792 -848 288) (796 -848 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24046" + "plane" "(792 -848 112) (792 -944 112) (796 -944 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24045" + "plane" "(792 -944 112) (792 -848 112) (792 -848 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24044" + "plane" "(796 -848 112) (796 -944 112) (796 -944 288)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[0 1 0 213.333] 0.375" + "vaxis" "[0 0 -1 162.909] 0.6875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24043" + "plane" "(792 -848 112) (796 -848 112) (796 -848 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24042" + "plane" "(796 -944 112) (792 -944 112) (792 -944 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19406" + side + { + "id" "24053" + "plane" "(792 -840 288) (792 -744 288) (796 -744 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24052" + "plane" "(792 -744 112) (792 -840 112) (796 -840 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24051" + "plane" "(792 -840 112) (792 -744 112) (792 -744 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24050" + "plane" "(796 -744 112) (796 -840 112) (796 -840 288)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[0 1 0 192] 0.375" + "vaxis" "[0 0 -1 162.909] 0.6875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24049" + "plane" "(792 -744 112) (796 -744 112) (796 -744 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24048" + "plane" "(796 -840 112) (792 -840 112) (792 -840 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19407" + side + { + "id" "24059" + "plane" "(464 -640 304) (464 -624 304) (800 -624 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24058" + "plane" "(464 -624 92) (464 -640 92) (800 -640 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24057" + "plane" "(464 -640 92) (464 -624 92) (464 -624 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24056" + "plane" "(800 -624 92) (800 -640 92) (800 -640 304)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24055" + "plane" "(464 -624 92) (800 -624 92) (800 -624 304)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24054" + "plane" "(800 -640 92) (464 -640 92) (464 -640 304)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" + } +} +entity +{ + "id" "19408" + "classname" "func_detail" + solid + { + "id" "19409" + side + { + "id" "24065" + "plane" "(1120 -624 128) (1120 -288 128) (1248 -288 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24064" + "plane" "(1248 -624 120) (1248 -288 120) (1120 -288 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24063" + "plane" "(1248 -624 128) (1248 -288 128) (1248 -288 120)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 448] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24062" + "plane" "(1120 -624 128) (1248 -624 128) (1248 -624 120)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[1 0 0 448] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24061" + "plane" "(1120 -288 128) (1120 -624 128) (1120 -624 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24060" + "plane" "(1248 -288 128) (1120 -288 128) (1120 -288 120)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -512] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19410" + side + { + "id" "24071" + "plane" "(800 -624 128) (800 -480 128) (1120 -480 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24070" + "plane" "(1120 -624 120) (1120 -480 120) (800 -480 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24069" + "plane" "(1120 -624 128) (1120 -480 128) (1120 -480 120)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0 1 0 447.999] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24068" + "plane" "(800 -624 128) (1120 -624 128) (1120 -624 120)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24067" + "plane" "(800 -480 128) (800 -624 128) (800 -624 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24066" + "plane" "(1120 -480 128) (800 -480 128) (800 -480 120)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19411" + side + { + "id" "24077" + "plane" "(800 -288 128) (928 -288 128) (928 -480 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24076" + "plane" "(800 -480 120) (928 -480 120) (928 -288 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24075" + "plane" "(800 -288 128) (800 -480 128) (800 -480 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24074" + "plane" "(800 -480 128) (928 -480 128) (928 -480 120)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24073" + "plane" "(928 -288 128) (800 -288 128) (800 -288 120)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24072" + "plane" "(928 -480 128) (928 -288 128) (928 -288 120)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0 0 -1 256] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19412" + side + { + "id" "24083" + "plane" "(800 -256 128) (800 -480 128) (512 -480 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24082" + "plane" "(800 -480 96) (800 -256 96) (512 -256 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24081" + "plane" "(512 -256 128) (512 -480 128) (512 -480 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24080" + "plane" "(800 -480 128) (800 -256 128) (800 -256 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24079" + "plane" "(800 -256 128) (512 -256 128) (512 -256 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24078" + "plane" "(512 -480 128) (800 -480 128) (800 -480 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19413" + side + { + "id" "24089" + "plane" "(1248 64 128) (1248 -288 128) (800 -288 128)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24088" + "plane" "(800 64 120) (800 -288 120) (1248 -288 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24087" + "plane" "(1248 -288 128) (1248 64 128) (1248 64 120)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[0 1 0 447.999] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24086" + "plane" "(1248 64 128) (800 64 128) (800 64 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24085" + "plane" "(800 64 128) (800 -288 128) (800 -288 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24084" + "plane" "(800 -288 128) (1248 -288 128) (1248 -288 120)" + "material" "SOLUTION2/OUTDOOR/MODERN_FLOOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -6268]" + } +} +entity +{ + "id" "19416" + "classname" "func_detail" + solid + { + "id" "19417" + side + { + "id" "24107" + "plane" "(1120 -616 128) (1120 -624 128) (1240 -624 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24106" + "plane" "(1240 -616 167) (1240 -616 128) (1240 -624 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24105" + "plane" "(1240 -624 167) (1240 -624 128) (1120 -624 128)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24104" + "plane" "(1120 -624 167) (1120 -624 128) (1120 -616 128)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24103" + "plane" "(1120 -616 167) (1120 -616 128) (1240 -616 128)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24102" + "plane" "(1240 -616 167) (1240 -624 167) (1120 -624 167)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19418" + side + { + "id" "24113" + "plane" "(1240 -616 172) (1240 -624 172) (1120 -624 172)" + "material" "WOOD/WOODSIDING_EXT_06" + "uaxis" "[1 0 0 -480] 0.25" + "vaxis" "[0 -1 0 448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24112" + "plane" "(1240 -624 167) (1240 -624 172) (1240 -616 172)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24111" + "plane" "(1120 -624 167) (1120 -624 172) (1240 -624 172)" + "material" "WOOD/WOODSIDING_EXT_06" + "uaxis" "[1 0 0 -480] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24110" + "plane" "(1120 -616 167) (1120 -616 172) (1120 -624 172)" + "material" "WOOD/WOODSIDING_EXT_06" + "uaxis" "[0 -1 0 480] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24109" + "plane" "(1240 -616 167) (1240 -616 172) (1120 -616 172)" + "material" "WOOD/WOODSIDING_EXT_06" + "uaxis" "[1 0 0 -480] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24108" + "plane" "(1120 -616 167) (1120 -624 167) (1240 -624 167)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19419" + side + { + "id" "24119" + "plane" "(1240 -400 128) (1240 -624 128) (1248 -624 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24118" + "plane" "(1240 -624 167) (1240 -624 128) (1240 -400 128)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24117" + "plane" "(1248 -400 167) (1248 -400 128) (1248 -624 128)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24116" + "plane" "(1240 -400 167) (1240 -400 128) (1248 -400 128)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24115" + "plane" "(1248 -624 167) (1248 -624 128) (1240 -624 128)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24114" + "plane" "(1240 -624 167) (1240 -400 167) (1248 -400 167)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19420" + side + { + "id" "24125" + "plane" "(1240 -624 172) (1240 -400 172) (1248 -400 172)" + "material" "WOOD/WOODSIDING_EXT_06" + "uaxis" "[0 1 0 -480] 0.25" + "vaxis" "[1 0 0 448] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24124" + "plane" "(1240 -400 167) (1240 -400 172) (1240 -624 172)" + "material" "WOOD/WOODSIDING_EXT_06" + "uaxis" "[0 1 0 -480] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24123" + "plane" "(1248 -624 167) (1248 -624 172) (1248 -400 172)" + "material" "WOOD/WOODSIDING_EXT_06" + "uaxis" "[0 1 0 -480] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24122" + "plane" "(1248 -400 167) (1248 -400 172) (1240 -400 172)" + "material" "WOOD/WOODSIDING_EXT_06" + "uaxis" "[1 0 0 -480] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24121" + "plane" "(1240 -624 167) (1240 -624 172) (1248 -624 172)" + "material" "WOOD/WOODSIDING_EXT_06" + "uaxis" "[1 0 0 -480] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24120" + "plane" "(1240 -400 167) (1240 -624 167) (1248 -624 167)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -6768]" + } +} +entity +{ + "id" "19421" + "classname" "env_cubemap" + "sides" "" + "origin" "1024 -256 248" + editor + { + "color" "0 0 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -7268]" + } +} +entity +{ + "id" "19424" + "classname" "env_cubemap" + "sides" "" + "origin" "1024 -640 240" + editor + { + "color" "0 0 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -7268]" + } +} +entity +{ + "id" "19427" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/pipe_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "896 -472 416" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "19431" + "classname" "func_detail" + solid + { + "id" "19432" + side + { + "id" "24131" + "plane" "(1296 192 192) (1296 336 192) (1328 336 192)" + "material" "SOLUTION/CARPETTILEGRAY" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24130" + "plane" "(1296 336 176) (1296 192 176) (1328 192 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24129" + "plane" "(1296 192 176) (1296 336 176) (1296 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24128" + "plane" "(1328 336 176) (1328 192 176) (1328 192 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24127" + "plane" "(1328 192 176) (1296 192 176) (1296 192 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24126" + "plane" "(1296 336 176) (1328 336 176) (1328 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19433" + side + { + "id" "24137" + "plane" "(800 304 192) (1296 304 192) (1296 224 192)" + "material" "FLOORS/HR_C/HR_FLOOR_TILE_001" + "uaxis" "[1 0 0 -640] 0.125" + "vaxis" "[0 -1 0 512] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "24136" + "plane" "(800 224 176) (1296 224 176) (1296 304 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24135" + "plane" "(1296 304 176) (1296 224 176) (1296 224 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24134" + "plane" "(800 304 176) (1296 304 176) (1296 304 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24133" + "plane" "(1296 224 176) (800 224 176) (800 224 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24132" + "plane" "(800 224 176) (800 304 176) (800 304 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19434" + side + { + "id" "24143" + "plane" "(768 192 192) (768 224 192) (1296 224 192)" + "material" "SOLUTION/CARPETTILEGRAY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24142" + "plane" "(768 224 176) (768 192 176) (1296 192 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24141" + "plane" "(768 192 176) (768 224 176) (768 224 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24140" + "plane" "(1296 224 176) (1296 192 176) (1296 192 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24139" + "plane" "(1296 192 176) (768 192 176) (768 192 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24138" + "plane" "(768 224 176) (1296 224 176) (1296 224 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19435" + side + { + "id" "24149" + "plane" "(768 304 192) (768 336 192) (1296 336 192)" + "material" "SOLUTION/CARPETTILEGRAY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24148" + "plane" "(768 320 176) (768 304 176) (1296 304 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24147" + "plane" "(768 304 176) (768 320 176) (768 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24146" + "plane" "(1296 320 176) (1296 304 176) (1296 304 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24145" + "plane" "(1296 304 176) (768 304 176) (768 304 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24144" + "plane" "(768 320 176) (1296 320 176) (1296 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19436" + side + { + "id" "24155" + "plane" "(800 224 192) (768 224 192) (768 304 192)" + "material" "SOLUTION/CARPETTILEGRAY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24154" + "plane" "(800 304 176) (768 304 176) (768 224 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24153" + "plane" "(768 224 176) (768 304 176) (768 304 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24152" + "plane" "(768 304 176) (800 304 176) (800 304 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24151" + "plane" "(800 224 176) (768 224 176) (768 224 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24150" + "plane" "(800 304 176) (800 224 176) (800 224 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19437" + side + { + "id" "24161" + "plane" "(1248 336 192) (1248 320 176) (768 320 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24160" + "plane" "(768 336 96) (768 320 96) (1248 320 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24159" + "plane" "(768 336 192) (768 320 176) (768 320 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24158" + "plane" "(1248 336 96) (1248 320 96) (1248 320 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24157" + "plane" "(768 336 96) (1248 336 96) (1248 336 192)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL_BLUE" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24156" + "plane" "(1248 320 96) (768 320 96) (768 320 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19438" + "classname" "func_detail" + solid + { + "id" "19439" + side + { + "id" "24167" + "plane" "(1328 336 368) (1328 512 368) (1600 512 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24166" + "plane" "(1328 512 352) (1328 336 352) (1600 336 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24165" + "plane" "(1328 336 352) (1328 512 352) (1328 512 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24164" + "plane" "(1600 512 352) (1600 336 352) (1600 336 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24163" + "plane" "(1328 512 352) (1600 512 352) (1600 512 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24162" + "plane" "(1600 336 352) (1328 336 352) (1328 336 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -1268]" + } +} +entity +{ + "id" "19440" + "classname" "func_detail" + solid + { + "id" "19441" + side + { + "id" "24173" + "plane" "(1328 336 192) (1456 336 192) (1456 112 192)" + "material" "FLOORS/HR_C/HR_FLOOR_TILE_001" + "uaxis" "[1 0 0 896] 0.125" + "vaxis" "[0 -1 0 512] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "24172" + "plane" "(1328 112 176) (1456 112 176) (1456 336 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24171" + "plane" "(1456 336 176) (1456 112 176) (1456 112 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24170" + "plane" "(1328 336 176) (1456 336 176) (1456 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24169" + "plane" "(1456 112 176) (1328 112 176) (1328 112 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24168" + "plane" "(1328 112 176) (1328 336 176) (1328 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "19442" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/pipe_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "688 -588.485 432" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "19446" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/pipe_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1040 -472 416" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "19450" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/pipe_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1296 -472 416" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "19454" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "656 -248 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11268]" + } +} +entity +{ + "id" "19458" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/support_tall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "656 -632 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11268]" + } +} +entity +{ + "id" "19462" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/support_tall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1424 -632 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11268]" + } +} +entity +{ + "id" "19466" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/support_tall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1416 -256 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11268]" + } +} +entity +{ + "id" "19470" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "816 48 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11268]" + } +} +entity +{ + "id" "19474" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1232 48 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11268]" + } +} +entity +{ + "id" "19478" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "816 -256 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11268]" + } +} +entity +{ + "id" "19482" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/support_tall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "816 -640 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11268]" + } +} +entity +{ + "id" "19486" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/support_tall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1232 -640 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11268]" + } +} +entity +{ + "id" "19490" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "816 -256 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11268]" + } +} +entity +{ + "id" "19494" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1232 -256 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11268]" + } +} +entity +{ + "id" "19498" + "classname" "prop_static" + "angles" "0 315 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/globe_tarp_nohit.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1022.1 -386.198 120" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14768]" + } +} +entity +{ + "id" "19502" + "classname" "prop_static" + "angles" "0 45 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/foliage/shrub_1.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1300 -44 144" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 16000]" + } +} +entity +{ + "id" "19506" + "classname" "prop_static" + "angles" "0 75 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/foliage/tree.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1292 12 124" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -16268]" + } +} +entity +{ + "id" "19510" + "classname" "prop_static" + "angles" "0 165 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/foliage/tree.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1368 -56 148" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -16268]" + } +} +entity +{ + "id" "19514" + "classname" "prop_static" + "angles" "0 210 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/foliage/tree.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "612 -488 152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -16268]" + } +} +entity +{ + "id" "19518" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/foliage/tree.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "712 -548 136" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -16268]" + } +} +entity +{ + "id" "19522" + "classname" "prop_static" + "angles" "0 45 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/foliage/shrub_1.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1300 -204 112" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 16000]" + } +} +entity +{ + "id" "19526" + "classname" "prop_static" + "angles" "0 105 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/foliage/shrub_1.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1380 -180 120" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 16000]" + } +} +entity +{ + "id" "19530" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/foliage/neat_shrub_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "560 -500 156" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 16000]" + } +} +entity +{ + "id" "19534" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/foliage/neat_shrub_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "752 -496 156" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 16000]" + } +} +entity +{ + "id" "19538" + "classname" "prop_static" + "angles" "-3.84097 75.4892 -14.5108" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/foliage/shrub_1.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "604 -548 160" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19542" + "classname" "prop_static" + "angles" "0 75 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/foliage/shrub_1.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "540 -584 144" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19546" + "classname" "prop_static" + "angles" "0 75 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/foliage/shrub_1.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "688 -508 132" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19550" + "classname" "prop_static" + "angles" "0 254 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/foliage/neat_shrub.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1320 -144 168" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19554" + "classname" "func_detail" + solid + { + "id" "19555" + side + { + "id" "24179" + "plane" "(624 784 96) (496 784 96) (496 800 96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[1 0 0 224] 0.16" + "vaxis" "[0 -1 0 281] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24178" + "plane" "(624 800 80) (496 800 80) (496 784 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24177" + "plane" "(496 784 80) (496 800 80) (496 800 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24176" + "plane" "(496 800 80) (624 800 80) (624 800 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24175" + "plane" "(624 784 80) (496 784 80) (496 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24174" + "plane" "(624 800 80) (624 784 80) (624 784 96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19556" + side + { + "id" "24185" + "plane" "(768 784 96) (640 784 96) (640 800 96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[1 0 0 224] 0.16" + "vaxis" "[0 -1 0 281] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24184" + "plane" "(768 800 80) (640 800 80) (640 784 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24183" + "plane" "(640 800 80) (768 800 80) (768 800 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24182" + "plane" "(768 784 80) (640 784 80) (640 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24181" + "plane" "(640 784 80) (640 800 80) (640 800 96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24180" + "plane" "(768 800 80) (768 784 80) (768 784 96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19557" + side + { + "id" "24191" + "plane" "(944 784 96) (816 784 96) (816 800 96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[1 0 0 224] 0.16" + "vaxis" "[0 -1 0 281] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24190" + "plane" "(944 800 80) (816 800 80) (816 784 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24189" + "plane" "(816 800 80) (944 800 80) (944 800 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24188" + "plane" "(944 784 80) (816 784 80) (816 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24187" + "plane" "(816 784 80) (816 800 80) (816 800 96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24186" + "plane" "(944 800 80) (944 784 80) (944 784 96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19558" + side + { + "id" "24197" + "plane" "(960 800 96) (1088 800 96) (1088 784 96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[1 0 0 224] 0.16" + "vaxis" "[0 -1 0 281] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24196" + "plane" "(960 784 80) (1088 784 80) (1088 800 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24195" + "plane" "(1088 800 80) (1088 784 80) (1088 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24194" + "plane" "(960 800 80) (1088 800 80) (1088 800 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24193" + "plane" "(1088 784 80) (960 784 80) (960 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24192" + "plane" "(960 784 80) (960 800 80) (960 800 96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -2268]" + } +} +entity +{ + "id" "19559" + "classname" "func_detail" + solid + { + "id" "19560" + side + { + "id" "24203" + "plane" "(1456 336 192) (1648 336 192) (1648 -64 192)" + "material" "FLOORS/HR_C/HR_FLOOR_TILE_001" + "uaxis" "[1 0 0 -640] 0.125" + "vaxis" "[0 -1 0 512] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "24202" + "plane" "(1456 -64 176) (1648 -64 176) (1648 336 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24201" + "plane" "(1648 336 176) (1648 -64 176) (1648 -64 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24200" + "plane" "(1456 336 176) (1648 336 176) (1648 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24199" + "plane" "(1648 -64 176) (1456 -64 176) (1456 -64 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24198" + "plane" "(1456 -64 176) (1456 336 176) (1456 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "19561" + "classname" "func_detail" + solid + { + "id" "19562" + side + { + "id" "24209" + "plane" "(1232 544 96) (1232 784 96) (1504 784 96)" + "material" "CONCRETE/BAGGAGE_CONCRETEFLOORA" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24208" + "plane" "(1232 784 80) (1232 544 80) (1504 544 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24207" + "plane" "(1232 544 80) (1232 784 80) (1232 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24206" + "plane" "(1504 784 80) (1504 544 80) (1504 544 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24205" + "plane" "(1232 784 80) (1504 784 80) (1504 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24204" + "plane" "(1504 544 80) (1232 544 80) (1232 544 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19563" + side + { + "id" "24215" + "plane" "(1504 544 96) (1504 784 96) (1536 784 96)" + "material" "CONCRETE/BAGGAGE_CONCRETEFLOORA" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24214" + "plane" "(1640 680 80) (1536 784 80) (1504 784 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24213" + "plane" "(1504 544 80) (1504 784 80) (1504 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24212" + "plane" "(1536 784 80) (1640 680 80) (1640 680 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24211" + "plane" "(1504 784 80) (1536 784 80) (1536 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24210" + "plane" "(1640 680 80) (1504 544 80) (1504 544 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19564" + side + { + "id" "24221" + "plane" "(1216 592 96) (1216 752 96) (1232 752 96)" + "material" "CONCRETE/BAGGAGE_CONCRETEFLOORA" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24220" + "plane" "(1216 752 80) (1216 592 80) (1232 592 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24219" + "plane" "(1216 592 80) (1216 752 80) (1216 752 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24218" + "plane" "(1232 752 80) (1232 592 80) (1232 592 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24217" + "plane" "(1216 752 80) (1232 752 80) (1232 752 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24216" + "plane" "(1232 592 80) (1216 592 80) (1216 592 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19565" + side + { + "id" "24227" + "plane" "(1248 800 80) (1248 784 80) (1520 784 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24226" + "plane" "(1248 784 96) (1248 784 80) (1248 800 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24225" + "plane" "(1520 800 96) (1520 800 80) (1520 784 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24224" + "plane" "(1248 800 96) (1248 800 80) (1520 800 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24223" + "plane" "(1520 784 96) (1520 784 80) (1248 784 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24222" + "plane" "(1248 784 96) (1248 800 96) (1520 800 96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[1 0 0 224] 0.16" + "vaxis" "[0 -1 0 281] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19566" + side + { + "id" "24233" + "plane" "(1656 680 80) (1560 776 80) (1552 768 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24232" + "plane" "(1640 680 96) (1640 680 80) (1552 768 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24231" + "plane" "(1560 776 96) (1560 776 80) (1656 680 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24230" + "plane" "(1552 768 96) (1552 768 80) (1560 776 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24229" + "plane" "(1656 680 96) (1656 680 80) (1640 680 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24228" + "plane" "(1640 680 96) (1552 768 96) (1560 776 96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0.707107 -0.707107 0 427.306] 0.16" + "vaxis" "[-0.707107 -0.707107 0 484.76] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14268]" + } +} +entity +{ + "id" "19567" + "classname" "func_detail" + solid + { + "id" "19568" + side + { + "id" "24239" + "plane" "(1232 544 95.875) (1232 528 95.875) (1504 528 95.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24238" + "plane" "(1232 528 352) (1232 528 95.875) (1232 544 95.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24237" + "plane" "(1504 544 352) (1504 544 95.875) (1504 528 95.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24236" + "plane" "(1232 544 352) (1232 544 95.875) (1504 544 95.875)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24235" + "plane" "(1504 528 352) (1504 528 95.875) (1232 528 95.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24234" + "plane" "(1232 528 352) (1232 544 352) (1504 544 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19569" + side + { + "id" "24245" + "plane" "(1640 680 95.875) (1504 544 95.875) (1504 528 95.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24244" + "plane" "(1504 528 352) (1504 528 95.875) (1504 544 95.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24243" + "plane" "(1504 544 352) (1504 544 95.875) (1640 680 95.875)" + "material" "SOLUTION2/GARAGE/WHITEWALLBRICKS" + "uaxis" "[0.707107 0.707107 0 -861.239] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24242" + "plane" "(1656 680 352) (1656 680 95.875) (1504 528 95.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24241" + "plane" "(1640 680 352) (1640 680 95.875) (1656 680 95.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24240" + "plane" "(1656 680 352) (1504 528 352) (1504 544 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19570" + side + { + "id" "24251" + "plane" "(1656 680 294) (1560 776 294) (1552 768 294)" + "material" "SOLUTION2/GARAGE/WHITEWALLBRICKS" + "uaxis" "[-1 0 0 224] 0.25" + "vaxis" "[0 1 0 -856] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24250" + "plane" "(1640 680 352) (1640 680 294) (1552 768 294)" + "material" "SOLUTION2/GARAGE/WHITEWALLBRICKS" + "uaxis" "[-0.707107 0.707107 0 224] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24249" + "plane" "(1560 776 352) (1560 776 294) (1656 680 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24248" + "plane" "(1552 768 352) (1552 768 294) (1560 776 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24247" + "plane" "(1656 680 352) (1656 680 294) (1640 680 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24246" + "plane" "(1640 680 352) (1552 768 352) (1560 776 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19571" + side + { + "id" "24257" + "plane" "(1560 776 95.875) (1536 800 95.875) (1536 784 95.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24256" + "plane" "(1536 784 352) (1536 784 95.875) (1536 800 95.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24255" + "plane" "(1552 768 352) (1552 768 95.875) (1536 784 95.875)" + "material" "SOLUTION2/GARAGE/WHITEWALLBRICKS" + "uaxis" "[-0.707107 0.707107 0 -721.021] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24254" + "plane" "(1536 800 352) (1536 800 95.875) (1560 776 95.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24253" + "plane" "(1560 776 352) (1560 776 95.875) (1552 768 95.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24252" + "plane" "(1552 768 352) (1536 784 352) (1536 800 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19572" + side + { + "id" "24263" + "plane" "(1520 800 95.875) (1520 784 95.875) (1536 784 95.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24262" + "plane" "(1520 784 352) (1520 784 95.875) (1520 800 95.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24261" + "plane" "(1536 800 352) (1536 800 95.875) (1536 784 95.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24260" + "plane" "(1520 800 352) (1520 800 95.875) (1536 800 95.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24259" + "plane" "(1536 784 352) (1536 784 95.875) (1520 784 95.875)" + "material" "SOLUTION2/GARAGE/WHITEWALLBRICKS" + "uaxis" "[-1 0 0 224] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24258" + "plane" "(1520 784 352) (1520 800 352) (1536 800 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19573" + side + { + "id" "24269" + "plane" "(1376 784 296) (1376 800 296) (1392 800 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24268" + "plane" "(1376 800 95.875) (1376 784 95.875) (1392 784 95.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24267" + "plane" "(1376 784 95.875) (1376 800 95.875) (1376 800 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24266" + "plane" "(1392 800 95.875) (1392 784 95.875) (1392 784 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24265" + "plane" "(1376 800 95.875) (1392 800 95.875) (1392 800 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24264" + "plane" "(1392 784 95.875) (1376 784 95.875) (1376 784 296)" + "material" "SOLUTION2/GARAGE/WHITEWALLBRICKS" + "uaxis" "[-1 0 0 224] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19574" + side + { + "id" "24275" + "plane" "(1248 800 294) (1248 784 294) (1520 784 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24274" + "plane" "(1248 784 352) (1248 784 294) (1248 800 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24273" + "plane" "(1520 800 352) (1520 800 294) (1520 784 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24272" + "plane" "(1248 800 352) (1248 800 294) (1520 800 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24271" + "plane" "(1520 784 352) (1520 784 294) (1248 784 294)" + "material" "SOLUTION2/GARAGE/WHITEWALLBRICKS" + "uaxis" "[-1 0 0 224] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24270" + "plane" "(1248 784 352) (1248 800 352) (1520 800 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19575" + side + { + "id" "24281" + "plane" "(1232 784 352) (1232 800 352) (1248 800 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24280" + "plane" "(1232 800 95.875) (1232 784 95.875) (1248 784 95.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24279" + "plane" "(1232 784 95.875) (1232 800 95.875) (1232 800 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24278" + "plane" "(1248 800 95.875) (1248 784 95.875) (1248 784 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24277" + "plane" "(1232 800 95.875) (1248 800 95.875) (1248 800 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24276" + "plane" "(1248 784 95.875) (1232 784 95.875) (1232 784 352)" + "material" "SOLUTION2/GARAGE/WHITEWALLBRICKS" + "uaxis" "[-1 0 0 224] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19576" + side + { + "id" "24287" + "plane" "(1232 544 368) (1232 784 368) (1504 784 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -62] 0.25" + "vaxis" "[1 0 0 -53] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24286" + "plane" "(1232 784 352) (1232 544 352) (1504 544 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24285" + "plane" "(1232 544 352) (1232 784 352) (1232 784 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24284" + "plane" "(1504 784 352) (1504 544 352) (1504 544 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24283" + "plane" "(1232 784 352) (1504 784 352) (1504 784 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24282" + "plane" "(1504 544 352) (1232 544 352) (1232 544 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19577" + side + { + "id" "24293" + "plane" "(1504 544 368) (1504 784 368) (1536 784 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -62] 0.25" + "vaxis" "[1 0 0 -21] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24292" + "plane" "(1640 680 352) (1536 784 352) (1504 784 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24291" + "plane" "(1504 544 352) (1504 784 352) (1504 784 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24290" + "plane" "(1536 784 352) (1640 680 352) (1640 680 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24289" + "plane" "(1504 784 352) (1536 784 352) (1536 784 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24288" + "plane" "(1640 680 352) (1504 544 352) (1504 544 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14768]" + } +} +entity +{ + "id" "19578" + "classname" "prop_static" + "angles" "0 45 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/window_straight.mdl" + "renderamt" "255" + "rendercolor" "103 103 103" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1608 736 96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -16268]" + } +} +entity +{ + "id" "19582" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/window_straight.mdl" + "renderamt" "255" + "rendercolor" "103 103 103" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1312 800 96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -16268]" + } +} +entity +{ + "id" "19586" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/window_straight.mdl" + "renderamt" "255" + "rendercolor" "103 103 103" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1456 800 96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -16268]" + } +} +entity +{ + "id" "19590" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/skylights2.mdl" + "renderamt" "255" + "rendercolor" "97 153 209" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1016 592 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "19594" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "1418 -448 320" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "19595" + side + { + "id" "24299" + "plane" "(1432 -700 384) (1432 -580 384) (1436 -580 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24298" + "plane" "(1432 -580 192) (1432 -700 192) (1436 -700 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24297" + "plane" "(1432 -700 192) (1432 -580 192) (1432 -580 384)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[0 1 0 -42.6667] 0.46875" + "vaxis" "[0 0 -1 192] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24296" + "plane" "(1436 -580 192) (1436 -700 192) (1436 -700 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24295" + "plane" "(1432 -580 192) (1436 -580 192) (1436 -580 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24294" + "plane" "(1436 -700 192) (1432 -700 192) (1432 -700 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19596" + side + { + "id" "24305" + "plane" "(1432 -572 384) (1432 -452 384) (1436 -452 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24304" + "plane" "(1432 -452 192) (1432 -572 192) (1436 -572 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24303" + "plane" "(1432 -572 192) (1432 -452 192) (1432 -452 384)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[0 1 0 -59.7337] 0.46875" + "vaxis" "[0 0 -1 192] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24302" + "plane" "(1436 -452 192) (1436 -572 192) (1436 -572 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24301" + "plane" "(1432 -452 192) (1436 -452 192) (1436 -452 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24300" + "plane" "(1436 -572 192) (1432 -572 192) (1432 -572 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19597" + side + { + "id" "24311" + "plane" "(1432 -828 384) (1432 -708 384) (1436 -708 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24310" + "plane" "(1432 -708 192) (1432 -828 192) (1436 -828 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24309" + "plane" "(1432 -828 192) (1432 -708 192) (1432 -708 384)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[0 1 0 -25.6001] 0.46875" + "vaxis" "[0 0 -1 192] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24308" + "plane" "(1436 -708 192) (1436 -828 192) (1436 -828 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24307" + "plane" "(1432 -708 192) (1436 -708 192) (1436 -708 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24306" + "plane" "(1436 -828 192) (1432 -828 192) (1432 -828 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19598" + side + { + "id" "24317" + "plane" "(1432 -444 384) (1432 -324 384) (1436 -324 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24316" + "plane" "(1432 -324 192) (1432 -444 192) (1436 -444 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24315" + "plane" "(1432 -444 192) (1432 -324 192) (1432 -324 384)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[0 1 0 -76.8001] 0.46875" + "vaxis" "[0 0 -1 192] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24314" + "plane" "(1436 -324 192) (1436 -444 192) (1436 -444 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24313" + "plane" "(1432 -324 192) (1436 -324 192) (1436 -324 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24312" + "plane" "(1436 -444 192) (1432 -444 192) (1432 -444 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19599" + side + { + "id" "24323" + "plane" "(1432 -316 384) (1432 -196 384) (1436 -196 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24322" + "plane" "(1432 -196 192) (1432 -316 192) (1436 -316 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24321" + "plane" "(1432 -316 192) (1432 -196 192) (1432 -196 384)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[0 1 0 -93.8667] 0.46875" + "vaxis" "[0 0 -1 192] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24320" + "plane" "(1436 -196 192) (1436 -316 192) (1436 -316 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24319" + "plane" "(1432 -196 192) (1436 -196 192) (1436 -196 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24318" + "plane" "(1436 -316 192) (1432 -316 192) (1432 -316 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19600" + side + { + "id" "24329" + "plane" "(1432 -188 384) (1432 -68 384) (1436 -68 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24328" + "plane" "(1432 -68 192) (1432 -188 192) (1436 -188 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24327" + "plane" "(1432 -188 192) (1432 -68 192) (1432 -68 384)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[0 1 0 -110.933] 0.46875" + "vaxis" "[0 0 -1 192] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24326" + "plane" "(1436 -68 192) (1436 -188 192) (1436 -188 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24325" + "plane" "(1432 -68 192) (1436 -68 192) (1436 -68 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24324" + "plane" "(1436 -188 192) (1432 -188 192) (1432 -188 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9500]" + } +} +entity +{ + "id" "19619" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair_capped.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1396 -680 96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19623" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1396 -728 96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19627" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair_capped.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1396 -776 96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19631" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair_capped.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "856 -600 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19635" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair_capped.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "872 -472 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19639" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair_capped.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "824 -472 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19643" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair_capped.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1216 -228 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19647" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1216 -180 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19651" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1216 -132 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19655" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1216 -36 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19659" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair_capped.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1216 12 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19663" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1216 -84 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19667" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair_capped.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1212 -424 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "19671" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1136 -656 96" + "BasisU" "1 1.06581e-014 0" + "BasisV" "-1.06581e-014 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "solution2/overlays/edge_poop" + "sides" "23966" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -32 0" + "uv1" "-128 32 0" + "uv2" "128 32 0" + "uv3" "128 -32 0" + "origin" "1136 -656 96" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "19677" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1324 -288 96" + "BasisU" "1 1.06581e-014 0" + "BasisV" "-1.06581e-014 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "solution2/overlays/edge_poop" + "sides" "23972" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -32 0" + "uv1" "-128 32 0" + "uv2" "128 32 0" + "uv3" "128 -32 0" + "origin" "1324 -288 96" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "19683" + "classname" "info_overlay" + "angles" "0 90 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1280 -344 96" + "BasisU" "-4.37114e-008 1 0" + "BasisV" "-1 -4.37114e-008 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "solution2/overlays/edge_poop" + "sides" "23972" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -32 0" + "uv1" "-128 32 0" + "uv2" "128 32 0" + "uv3" "128 -32 0" + "origin" "1280 -344 96" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "19689" + "classname" "info_overlay" + "angles" "0 90 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1280 -516 96" + "BasisU" "-4.37114e-008 1 0" + "BasisV" "-1 -4.37114e-008 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "solution2/overlays/edge_poop" + "sides" "23972" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -32 0" + "uv1" "-128 32 0" + "uv2" "128 32 0" + "uv3" "128 -32 0" + "origin" "1280 -516 96" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "19695" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "1052 -688 96" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "overlays/wall_stain001" + "sides" "23966" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "1052 -688 96" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "19701" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/longblind_smaller_nohit.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "788 -688 148" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15000]" + } +} +entity +{ + "id" "19705" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/longblind_smaller_nohit.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "788 -792 144" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15000]" + } +} +entity +{ + "id" "19709" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/longblind_smaller_nohit.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "788 -896 160" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15000]" + } +} +entity +{ + "id" "19714" + "classname" "prop_dynamic" + "angles" "0 224.5 0" + "body" "0" + "DisableBoneFollowers" "0" + "disablereceiveshadows" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/solution/misc/computer.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "1381 477 231.352" + editor + { + "color" "195 176 0" + "groupid" "19713" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "19718" + "classname" "prop_static" + "angles" "90 32 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_binder02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1381.91 423.077 232.974" + editor + { + "color" "195 176 0" + "groupid" "19713" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3500 11500]" + } +} +entity +{ + "id" "19722" + "classname" "prop_static" + "angles" "90 32 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_binder02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1383.75 392.987 232.974" + editor + { + "color" "195 176 0" + "groupid" "19713" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3500 11500]" + } +} +entity +{ + "id" "19726" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_conference_table.mdl" + "renderamt" "255" + "rendercolor" "97 97 97" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1377 448 192.25" + editor + { + "color" "195 176 0" + "groupid" "19713" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3500 11500]" + } +} +entity +{ + "id" "19732" + "classname" "func_detail" + solid + { + "id" "19733" + side + { + "id" "24415" + "plane" "(1509 338 352) (1509 342 352) (1513 342 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24414" + "plane" "(1509 342 192) (1509 338 192) (1513 338 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24413" + "plane" "(1509 338 192) (1509 342 192) (1509 342 352)" + "material" "GLASS/HR_G/HR_GLASS_WINDOW_FRAME_001" + "uaxis" "[0 0 1 -228] 0.25" + "vaxis" "[0 1 0 64] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24412" + "plane" "(1513 342 192) (1513 338 192) (1513 338 352)" + "material" "GLASS/HR_G/HR_GLASS_WINDOW_FRAME_001" + "uaxis" "[0 0 1 -228] 0.25" + "vaxis" "[0 1 0 64] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24411" + "plane" "(1509 342 192) (1513 342 192) (1513 342 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24410" + "plane" "(1513 338 192) (1509 338 192) (1509 338 352)" + "material" "GLASS/HR_G/HR_GLASS_WINDOW_FRAME_001" + "uaxis" "[0 0 1 -228] 0.25" + "vaxis" "[1 0 0 16] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "243 172 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19734" + side + { + "id" "24421" + "plane" "(1573 338 352) (1573 342 352) (1577 342 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24420" + "plane" "(1573 342 192) (1573 338 192) (1577 338 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24419" + "plane" "(1573 338 192) (1573 342 192) (1573 342 352)" + "material" "GLASS/HR_G/HR_GLASS_WINDOW_FRAME_001" + "uaxis" "[0 0 1 -228] 0.25" + "vaxis" "[0 1 0 64] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24418" + "plane" "(1577 342 192) (1577 338 192) (1577 338 352)" + "material" "GLASS/HR_G/HR_GLASS_WINDOW_FRAME_001" + "uaxis" "[0 0 1 -228] 0.25" + "vaxis" "[0 1 0 64] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24417" + "plane" "(1573 342 192) (1577 342 192) (1577 342 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24416" + "plane" "(1577 338 192) (1573 338 192) (1573 338 352)" + "material" "GLASS/HR_G/HR_GLASS_WINDOW_FRAME_001" + "uaxis" "[0 0 1 -228] 0.25" + "vaxis" "[1 0 0 16] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "243 172 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19735" + side + { + "id" "24427" + "plane" "(1513 338 310) (1513 342 310) (1573 342 310)" + "material" "GLASS/HR_G/HR_GLASS_WINDOW_FRAME_001" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 -1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24426" + "plane" "(1513 342 302) (1513 338 302) (1573 338 302)" + "material" "GLASS/HR_G/HR_GLASS_WINDOW_FRAME_001" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 -1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24425" + "plane" "(1513 338 302) (1513 342 302) (1513 342 310)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24424" + "plane" "(1573 342 302) (1573 338 302) (1573 338 310)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24423" + "plane" "(1513 342 302) (1573 342 302) (1573 342 310)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24422" + "plane" "(1573 338 302) (1513 338 302) (1513 338 310)" + "material" "GLASS/HR_G/HR_GLASS_WINDOW_FRAME_001" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "243 172 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "243 172 0" + "groupid" "19731" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 5000]" + } +} +entity +{ + "id" "19736" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_005b_lock.mdl" + "renderamt" "255" + "rendercolor" "199 191 186" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1573 339 192.25" + editor + { + "color" "243 172 0" + "groupid" "19731" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19746" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0.221867 -0.961007 0.165047" + "BasisOrigin" "1004 -446.874 90" + "BasisU" "0.975077 -0.218666 0.0375545" + "BasisV" "-0 0.169265 0.98557" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/bombsite_letter_a" + "sides" "" + "StartU" "0" + "StartV" "1" + "uv0" "-32 -32 0" + "uv1" "-32 32 0" + "uv2" "32 32 0" + "uv3" "32 -32 0" + "origin" "1004 -446.874 154" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "19752" + "classname" "prop_static" + "angles" "0 45 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/foliage/shrub_1_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1328 0 160" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 16000]" + } +} +entity +{ + "id" "19756" + "classname" "func_detail" + solid + { + "id" "19757" + side + { + "id" "24433" + "plane" "(640 -256 488) (640 -128 456) (656 -128 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24432" + "plane" "(640 -128 448) (640 -256 448) (656 -256 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24431" + "plane" "(656 -256 488) (656 -128 456) (656 -128 448)" + "material" "SOLUTION2/BRIGHTMATS/HOLES" + "uaxis" "[0 1 0 128] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24430" + "plane" "(640 -256 448) (640 -128 448) (640 -128 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24429" + "plane" "(640 -128 448) (656 -128 448) (656 -128 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24428" + "plane" "(656 -256 448) (640 -256 448) (640 -256 488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19758" + side + { + "id" "24439" + "plane" "(640 -384 456) (640 -256 488) (656 -256 488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24438" + "plane" "(640 -256 448) (640 -384 448) (656 -384 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24437" + "plane" "(656 -256 448) (656 -384 448) (656 -384 456)" + "material" "SOLUTION2/BRIGHTMATS/HOLES" + "uaxis" "[0 1 0 128] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24436" + "plane" "(640 -256 488) (640 -384 456) (640 -384 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24435" + "plane" "(656 -384 448) (640 -384 448) (640 -384 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24434" + "plane" "(640 -256 448) (656 -256 448) (656 -256 488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19759" + side + { + "id" "24445" + "plane" "(640 -640 488) (640 -512 456) (656 -512 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24444" + "plane" "(640 -512 448) (640 -640 448) (656 -640 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24443" + "plane" "(656 -640 488) (656 -512 456) (656 -512 448)" + "material" "SOLUTION2/BRIGHTMATS/HOLES" + "uaxis" "[0 1 0 128] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24442" + "plane" "(640 -640 448) (640 -512 448) (640 -512 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24441" + "plane" "(640 -512 448) (656 -512 448) (656 -512 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24440" + "plane" "(656 -640 448) (640 -640 448) (640 -640 488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19760" + side + { + "id" "24451" + "plane" "(640 -768 456) (640 -640 488) (656 -640 488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24450" + "plane" "(640 -640 448) (640 -768 448) (656 -768 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24449" + "plane" "(656 -640 448) (656 -768 448) (656 -768 456)" + "material" "SOLUTION2/BRIGHTMATS/HOLES" + "uaxis" "[0 1 0 128] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24448" + "plane" "(640 -640 488) (640 -768 456) (640 -768 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24447" + "plane" "(656 -768 448) (640 -768 448) (640 -768 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24446" + "plane" "(640 -640 448) (656 -640 448) (656 -640 488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19761" + side + { + "id" "24457" + "plane" "(640 -864 448) (640 80 448) (656 63.4375 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24456" + "plane" "(640 80 390) (640 -864 390) (656 -864 390)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24455" + "plane" "(656 63.4375 390) (656 -864 390) (656 -864 448)" + "material" "SOLUTION2/BRIGHTMATS/HOLES" + "uaxis" "[0 1 0 128] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24454" + "plane" "(640 -864 390) (640 80 390) (640 80 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24453" + "plane" "(656 -864 390) (640 -864 390) (640 -864 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24452" + "plane" "(640 80 390) (656 63.4375 390) (656 63.4375 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "19762" + "classname" "func_detail" + solid + { + "id" "19763" + side + { + "id" "24463" + "plane" "(520 -624 156) (520 -456 156) (792 -456 156)" + "material" "GROUND/HR_G/HR_GRAVEL_001" + "uaxis" "[1 0 0 -207] 0.125" + "vaxis" "[0 -1 0 128] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "24462" + "plane" "(520 -456 128) (520 -624 128) (792 -624 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24461" + "plane" "(520 -624 128) (520 -456 128) (520 -456 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24460" + "plane" "(792 -456 128) (792 -624 128) (792 -624 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24459" + "plane" "(520 -456 128) (792 -456 128) (792 -456 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24458" + "plane" "(792 -624 128) (520 -624 128) (520 -624 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19764" + side + { + "id" "24469" + "plane" "(512 -624 160) (512 -448 160) (520 -456 160)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24468" + "plane" "(512 -448 128) (512 -624 128) (520 -624 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24467" + "plane" "(512 -624 128) (512 -448 128) (512 -448 160)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24466" + "plane" "(520 -456 128) (520 -624 128) (520 -624 160)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24465" + "plane" "(512 -448 128) (520 -456 128) (520 -456 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24464" + "plane" "(520 -624 128) (512 -624 128) (512 -624 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19765" + side + { + "id" "24475" + "plane" "(792 -624 160) (792 -456 160) (800 -448 160)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 -1 0 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24474" + "plane" "(792 -456 128) (792 -624 128) (800 -624 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24473" + "plane" "(792 -624 128) (792 -456 128) (792 -456 160)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24472" + "plane" "(800 -448 128) (800 -624 128) (800 -624 160)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24471" + "plane" "(792 -456 128) (800 -448 128) (800 -448 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24470" + "plane" "(800 -624 128) (792 -624 128) (792 -624 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19766" + side + { + "id" "24481" + "plane" "(792 -456 160) (520 -456 160) (512 -448 160)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 -1 0 -896] 0.25" + "vaxis" "[-1 0 0 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24480" + "plane" "(800 -448 128) (512 -448 128) (520 -456 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24479" + "plane" "(512 -448 128) (800 -448 128) (800 -448 160)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24478" + "plane" "(792 -456 128) (520 -456 128) (520 -456 160)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[1 0 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24477" + "plane" "(800 -448 128) (792 -456 128) (792 -456 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24476" + "plane" "(520 -456 128) (512 -448 128) (512 -448 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +entity +{ + "id" "19767" + "classname" "func_detail" + solid + { + "id" "19768" + side + { + "id" "24487" + "plane" "(978.544 -433.961 222) (979.431 -430.117 221.341) (1034 -442.719 221.342)" + "material" "SOLUTION2/LIGHT/BOMBWOOD" + "uaxis" "[0.97437 -0.224951 0 -196.976] 0.21875" + "vaxis" "[-0.221866 -0.961007 0.165048 77.6927] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24486" + "plane" "(975.874 -445.559 126.655) (974.987 -449.404 127.316) (1029.55 -462 127.315)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.97437 -0.224951 0 -29.5979] 0.194444" + "vaxis" "[-0.221866 -0.961007 0.165048 -18.3071] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24485" + "plane" "(974.986 -449.402 127.317) (975.872 -445.563 126.658) (979.436 -430.121 221.343)" + "material" "SOLUTION2/LIGHT/BOMBWOOD" + "uaxis" "[-0.221866 -0.961007 0.165048 182.837] 0.28125" + "vaxis" "[-0.0371276 -0.160817 -0.986286 477.32] 0.1875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24484" + "plane" "(1030.44 -458.156 126.655) (1029.55 -462 127.315) (1033.11 -446.559 222)" + "material" "SOLUTION2/LIGHT/BOMBWOOD" + "uaxis" "[0.221866 0.961007 -0.165048 -182.839] 0.28125" + "vaxis" "[-0.0371276 -0.160817 -0.986286 477.32] 0.1875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24483" + "plane" "(975.871 -445.56 126.657) (1030.44 -458.157 126.657) (1034 -442.718 221.338)" + "material" "SOLUTION2/LIGHT/BOMBWOOD" + "uaxis" "[0.97437 -0.224951 0 -198.002] 0.218556" + "vaxis" "[-0.0371276 -0.160817 -0.986286 477.32] 0.1875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24482" + "plane" "(1029.55 -462 127.316) (974.988 -449.402 127.316) (978.547 -433.962 222)" + "material" "SOLUTION2/LIGHT/BOMBWOOD" + "uaxis" "[0.97437 -0.224951 0 -196.976] 0.21875" + "vaxis" "[-0.0371276 -0.160817 -0.986286 477.32] 0.1875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "19769" + "classname" "func_detail" + solid + { + "id" "19770" + side + { + "id" "24493" + "plane" "(1248 -256 144) (1248 -240 144) (1424 -240 144)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[1 0 0 -448] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24492" + "plane" "(1248 -240 92) (1248 -256 92) (1424 -256 92)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -15] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "24491" + "plane" "(1248 -256 92) (1248 -240 92) (1248 -240 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24490" + "plane" "(1424 -240 92) (1424 -256 92) (1424 -256 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24489" + "plane" "(1248 -240 92) (1424 -240 92) (1424 -240 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24488" + "plane" "(1424 -256 92) (1248 -256 92) (1248 -256 144)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[1 0 0 -448] 0.25" + "vaxis" "[0 0 -1 448] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19771" + side + { + "id" "24499" + "plane" "(1248 -240 144) (1248 64 144) (1424 64 144)" + "material" "GROUND/HR_G/HR_GRAVEL_001" + "uaxis" "[1 0 0 -975] 0.125" + "vaxis" "[0 -1 0 128] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "24498" + "plane" "(1248 64 92) (1248 -240 92) (1424 -240 92)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -15] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "24497" + "plane" "(1248 -240 92) (1248 64 92) (1248 64 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24496" + "plane" "(1424 64 92) (1424 -240 92) (1424 -240 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24495" + "plane" "(1248 64 92) (1424 64 92) (1424 64 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24494" + "plane" "(1424 -240 92) (1248 -240 92) (1248 -240 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19772" + side + { + "id" "24505" + "plane" "(1424 -48 144) (1424 64 144) (1440 64 144)" + "material" "GROUND/HR_G/HR_GRAVEL_001" + "uaxis" "[1 0 0 -79] 0.125" + "vaxis" "[0 -1 0 128] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "24504" + "plane" "(1424 64 92) (1424 -48 92) (1440 -48 92)" + "material" "TERRI/TOOLS/TOOLSNODRAWBLUE" + "uaxis" "[1 0 0 -15] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "24503" + "plane" "(1424 -48 92) (1424 64 92) (1424 64 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24502" + "plane" "(1440 64 92) (1440 -48 92) (1440 -48 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24501" + "plane" "(1424 64 92) (1440 64 92) (1440 64 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24500" + "plane" "(1440 -48 92) (1424 -48 92) (1424 -48 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "19773" + "classname" "info_overlay" + "angles" "0 270 0" + "BasisNormal" "0 0 -1" + "BasisOrigin" "1408 4 368" + "BasisU" "1.31134e-007 -1 0" + "BasisV" "-1 -1.31134e-007 0" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "solution2/overlays/edge_poop" + "sides" "" + "StartU" "1" + "StartV" "0" + "uv0" "-128 -32 0" + "uv1" "-128 32 0" + "uv2" "128 32 0" + "uv3" "128 -32 0" + "origin" "1408 4 432" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "19779" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-1 0 0" + "BasisOrigin" "1440 24 400" + "BasisU" "0 1 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "solution2/overlays/edge_poop" + "sides" "25405" + "StartU" "1" + "StartV" "0" + "uv0" "-128 -32 0" + "uv1" "-128 32 0" + "uv2" "128 32 0" + "uv3" "128 -32 0" + "origin" "1440 24 400" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "19787" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/vent_vent.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "736 424 320" + editor + { + "color" "236 209 0" + "groupid" "19786" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "19791" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/vent_64_corner_right.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "832 424 320" + editor + { + "color" "236 209 0" + "groupid" "19786" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "19795" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/vent_64_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "832 328 320" + editor + { + "color" "236 209 0" + "groupid" "19786" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "19799" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/vent_64_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "832 232 320" + editor + { + "color" "236 209 0" + "groupid" "19786" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "19803" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/vent_64_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "608 424 320" + editor + { + "color" "236 209 0" + "groupid" "19786" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "19807" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/vent_64_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "480 424 320" + editor + { + "color" "236 209 0" + "groupid" "19786" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "19811" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/vent_64_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "832 184 320" + editor + { + "color" "236 209 0" + "groupid" "19785" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "19837" + "classname" "func_detail" + solid + { + "id" "19838" + side + { + "id" "24633" + "plane" "(136 352 288) (48 352 288) (48 384 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24632" + "plane" "(136 384 96) (48 384 96) (48 352 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24631" + "plane" "(48 384 96) (136 384 96) (136 384 288)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREEN_LIGHT" + "uaxis" "[1 0 0 316] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24630" + "plane" "(136 352 96) (48 352 96) (48 352 288)" + "material" "PLASTER/PLASTERCEILING_INT_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24629" + "plane" "(48 352 96) (48 384 96) (48 384 288)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREEN_LIGHT" + "uaxis" "[0 1 0 316] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24628" + "plane" "(136 384 96) (136 352 96) (136 352 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 243 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19839" + side + { + "id" "24638" + "plane" "(136 384 288) (96 384 288) (136 424 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24637" + "plane" "(136 424 96) (96 384 96) (136 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24636" + "plane" "(136 384 96) (96 384 96) (96 384 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24635" + "plane" "(96 384 96) (136 424 96) (136 424 288)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREEN_LIGHT" + "uaxis" "[0 1 0 316] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24634" + "plane" "(136 424 96) (136 384 96) (136 384 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 243 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "150 243 0" + "groupid" "19823" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "19840" + "classname" "func_detail" + solid + { + "id" "19841" + side + { + "id" "24644" + "plane" "(-136 168 288) (-152 168 288) (-152 224 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24643" + "plane" "(-136 224 126) (-152 224 126) (-152 168 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24642" + "plane" "(-152 224 126) (-136 224 126) (-136 224 288)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREEN_LIGHT" + "uaxis" "[1 0 0 316] 0.125" + "vaxis" "[0 0 -1 304] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24641" + "plane" "(-136 168 126) (-152 168 126) (-152 168 288)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREEN_LIGHT" + "uaxis" "[1 0 0 316] 0.125" + "vaxis" "[0 0 -1 304] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24640" + "plane" "(-152 168 126) (-152 224 126) (-152 224 288)" + "material" "PLASTER/PLASTERCEILING_INT_01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24639" + "plane" "(-136 224 126) (-136 168 126) (-136 168 288)" + "material" "PLASTER/PLASTERCEILING_INT_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 243 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19842" + side + { + "id" "24650" + "plane" "(16 176 288) (-136 176 288) (-136 216 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24649" + "plane" "(16 216 126) (-136 216 126) (-136 176 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24648" + "plane" "(-136 216 126) (16 216 126) (16 216 288)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREEN_LIGHT" + "uaxis" "[1 0 0 316] 0.125" + "vaxis" "[0 0 -1 304] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24647" + "plane" "(16 176 126) (-136 176 126) (-136 176 288)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREEN_LIGHT" + "uaxis" "[1 0 0 316] 0.125" + "vaxis" "[0 0 -1 304] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24646" + "plane" "(-136 176 126) (-136 216 126) (-136 216 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24645" + "plane" "(16 216 126) (16 176 126) (16 176 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 243 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19843" + side + { + "id" "24656" + "plane" "(32 168 288) (16 168 288) (16 224 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24655" + "plane" "(32 224 126) (16 224 126) (16 168 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24654" + "plane" "(16 224 126) (32 224 126) (32 224 288)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREEN_LIGHT" + "uaxis" "[1 0 0 316] 0.125" + "vaxis" "[0 0 -1 304] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24653" + "plane" "(32 168 126) (16 168 126) (16 168 288)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREEN_LIGHT" + "uaxis" "[1 0 0 316] 0.125" + "vaxis" "[0 0 -1 304] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24652" + "plane" "(32 224 126) (32 168 126) (32 168 288)" + "material" "PLASTER/PLASTERCEILING_INT_01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24651" + "plane" "(16 168 126) (16 224 126) (16 224 288)" + "material" "PLASTER/PLASTERCEILING_INT_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 243 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "150 243 0" + "groupid" "19823" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "19846" + "classname" "env_cubemap" + "sides" "" + "origin" "1048.24 264 256" + editor + { + "color" "205 138 0" + "groupid" "19844" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "19849" + "classname" "info_overlay" + "angles" "0 270 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "812 -464 128" + "BasisU" "-4.37114e-008 -1 0" + "BasisV" "1 -4.37114e-008 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "solution2/overlays/paint_strip_black" + "sides" "" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -8 0" + "uv1" "-128 8 0" + "uv2" "128 8 0" + "uv3" "128 -8 0" + "origin" "812 -464 128" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "19855" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "1028 -228 128" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "solution2/overlays/paint_strip_black" + "sides" "" + "StartU" "0" + "StartV" "1" + "uv0" "-196 -7.99999 0" + "uv1" "-196 7.99999 0" + "uv2" "196 7.99999 0" + "uv3" "196 -7.99999 0" + "origin" "1028 -228 128" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "19861" + "classname" "info_overlay" + "angles" "0 90 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1232 -336 128" + "BasisU" "-4.37114e-008 1 0" + "BasisV" "-1 -4.37114e-008 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "solution2/overlays/paint_strip_black" + "sides" "" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -8 0" + "uv1" "-128 8 0" + "uv2" "128 8 0" + "uv3" "128 -8 0" + "origin" "1232 -336 128" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19867" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -0 1" + "BasisOrigin" "996 -604 128" + "BasisU" "1 0 0" + "BasisV" "-0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "solution2/overlays/paint_strip_black" + "sides" "" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -8 0" + "uv1" "-128 8 0" + "uv2" "128 8 0" + "uv3" "128 -8 0" + "origin" "996 -604 128" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19875" + "classname" "env_cubemap" + "sides" "" + "origin" "1048.24 488 160" + editor + { + "color" "205 138 0" + "groupid" "19873" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "19880" + "classname" "env_cubemap" + "sides" "" + "origin" "792.236 736 160" + editor + { + "color" "205 138 0" + "groupid" "19878" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "19885" + "classname" "env_cubemap" + "sides" "" + "origin" "488.079 736 160" + editor + { + "color" "205 138 0" + "groupid" "19883" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "19888" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/solution/exterior/blind_4.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1376 348 264" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3500 11500]" + } +} +entity +{ + "id" "19892" + "classname" "func_detail" + solid + { + "id" "19893" + side + { + "id" "24686" + "plane" "(1248 176 352) (1112 176 352) (1112 192 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24685" + "plane" "(1248 192 288) (1248 192 352) (1112 192 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL_BLUE" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24684" + "plane" "(1112 176 328) (1112 176 352) (1248 176 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24683" + "plane" "(1248 176 288) (1248 176 352) (1248 192 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24682" + "plane" "(1112 192 328) (1112 192 352) (1112 176 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24681" + "plane" "(1248 192 288) (1112 192 328) (1112 176 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19894" + side + { + "id" "24692" + "plane" "(1248 192 192) (1112 192 192) (1112 176 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24691" + "plane" "(1112 192 328) (1112 192 192) (1248 192 192)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24690" + "plane" "(1248 176 288) (1248 176 192) (1112 176 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24689" + "plane" "(1248 192 288) (1248 192 192) (1248 176 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24688" + "plane" "(1112 176 328) (1112 176 192) (1112 192 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24687" + "plane" "(1112 192 328) (1248 192 288) (1248 176 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "19895" + "classname" "func_detail" + solid + { + "id" "19896" + side + { + "id" "24698" + "plane" "(1112 176 352) (976 176 352) (976 192 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24697" + "plane" "(1112 192 288) (1112 192 352) (976 192 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL_BLUE" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24696" + "plane" "(976 176 328) (976 176 352) (1112 176 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24695" + "plane" "(1112 176 288) (1112 176 352) (1112 192 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24694" + "plane" "(976 192 328) (976 192 352) (976 176 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24693" + "plane" "(1112 192 288) (976 192 328) (976 176 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19897" + side + { + "id" "24704" + "plane" "(1112 192 192) (976 192 192) (976 176 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24703" + "plane" "(976 192 328) (976 192 192) (1112 192 192)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24702" + "plane" "(1112 176 288) (1112 176 192) (976 176 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24701" + "plane" "(1112 192 288) (1112 192 192) (1112 176 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24700" + "plane" "(976 176 328) (976 176 192) (976 192 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24699" + "plane" "(976 192 328) (1112 192 288) (1112 176 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "19898" + "classname" "func_detail" + solid + { + "id" "19899" + side + { + "id" "24710" + "plane" "(976 176 352) (840 176 352) (840 192 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24709" + "plane" "(976 192 288) (976 192 352) (840 192 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL_BLUE" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24708" + "plane" "(840 176 328) (840 176 352) (976 176 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24707" + "plane" "(976 176 288) (976 176 352) (976 192 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24706" + "plane" "(840 192 328) (840 192 352) (840 176 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24705" + "plane" "(976 192 288) (840 192 328) (840 176 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19900" + side + { + "id" "24716" + "plane" "(976 192 192) (840 192 192) (840 176 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24715" + "plane" "(840 192 328) (840 192 192) (976 192 192)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24714" + "plane" "(976 176 288) (976 176 192) (840 176 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24713" + "plane" "(976 192 288) (976 192 192) (976 176 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24712" + "plane" "(840 176 328) (840 176 192) (840 192 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24711" + "plane" "(840 192 328) (976 192 288) (976 176 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "19901" + "classname" "func_detail" + solid + { + "id" "19902" + side + { + "id" "24722" + "plane" "(736 176 352) (768 192 352) (840 192 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24721" + "plane" "(768 192 192) (736 176 192) (840 176 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24720" + "plane" "(736 176 192) (768 192 192) (768 192 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24719" + "plane" "(840 192 192) (840 176 192) (840 176 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24718" + "plane" "(768 192 192) (840 192 192) (840 192 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24717" + "plane" "(840 176 192) (736 176 192) (736 176 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "19903" + "classname" "func_detail" + solid + { + "id" "19904" + side + { + "id" "24728" + "plane" "(1328 192 352) (1312 176 352) (1248 176 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24727" + "plane" "(1248 192 192) (1248 176 192) (1312 176 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24726" + "plane" "(1248 176 192) (1248 192 192) (1248 192 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24725" + "plane" "(1328 192 192) (1312 176 192) (1312 176 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24724" + "plane" "(1248 192 192) (1328 192 192) (1328 192 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL_BLUE" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24723" + "plane" "(1312 176 192) (1248 176 192) (1248 176 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "19905" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "1133 -50 62" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke/asphalt_crack_02" + "sides" "" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1133 -50 126" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11268]" + } +} +entity +{ + "id" "19911" + "classname" "prop_static" + "angles" "0 289.5 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1284.43 255.473 351.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 6000]" + } +} +entity +{ + "id" "19915" + "classname" "prop_static" + "angles" "0 289.5 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1603.42 184.832 351.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 6000]" + } +} +entity +{ + "id" "19919" + "classname" "prop_static" + "angles" "0 289.5 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1256.9 221.692 351.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 6000]" + } +} +entity +{ + "id" "19923" + "classname" "prop_static" + "angles" "0 0 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1048 224 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19927" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_industrial_props/nuke_industrial_electrical_panel_002_small.mdl" + "renderamt" "255" + "rendercolor" "97 153 209" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1048 416 192.394" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3500 11500]" + } +} +entity +{ + "id" "19931" + "classname" "func_detail" + solid + { + "id" "19932" + side + { + "id" "24734" + "plane" "(1600 340 352) (1328 340 352) (1328 341 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24733" + "plane" "(1328 340 274) (1328 340 352) (1600 340 352)" + "material" "GLASS/METAL_DOOR_GLASS_001" + "uaxis" "[-1 0 0 130] 0.25" + "vaxis" "[0 0 -1 352] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24732" + "plane" "(1600 341 274) (1600 341 352) (1328 341 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24731" + "plane" "(1328 341 274) (1328 341 352) (1328 340 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24730" + "plane" "(1600 340 274) (1600 340 352) (1600 341 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24729" + "plane" "(1600 341 274) (1328 341 274) (1328 340 274)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19933" + side + { + "id" "24740" + "plane" "(1600 340 272) (1600 340 268) (1328 340 268)" + "material" "GLASS/METAL_DOOR_GLASS_001" + "uaxis" "[-1 0 0 130] 0.25" + "vaxis" "[0 0 -1 352] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24739" + "plane" "(1328 341 272) (1328 341 268) (1600 341 268)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24738" + "plane" "(1328 340 272) (1328 340 268) (1328 341 268)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24737" + "plane" "(1600 341 272) (1600 341 268) (1600 340 268)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24736" + "plane" "(1600 340 272) (1328 340 272) (1328 341 272)" + "material" "GLASS/HR_G/HR_GLASS_FROSTED_001" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24735" + "plane" "(1600 341 268) (1328 341 268) (1328 340 268)" + "material" "GLASS/HR_G/HR_GLASS_FROSTED_001" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19934" + side + { + "id" "24746" + "plane" "(1600 340 274) (1600 340 272) (1328 340 272)" + "material" "GLASS/HR_G/HR_GLASS_FROSTED_001" + "uaxis" "[-1 0 0 4] 0.125" + "vaxis" "[0 0 -1 192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24745" + "plane" "(1328 341 274) (1328 341 272) (1600 341 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24744" + "plane" "(1328 340 274) (1328 340 272) (1328 341 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24743" + "plane" "(1600 341 274) (1600 341 272) (1600 340 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24742" + "plane" "(1600 340 274) (1328 340 274) (1328 341 274)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24741" + "plane" "(1600 341 272) (1328 341 272) (1328 340 272)" + "material" "GLASS/HR_G/HR_GLASS_FROSTED_001" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19935" + side + { + "id" "24752" + "plane" "(1600 340 268) (1600 340 192) (1328 340 192)" + "material" "GLASS/HR_G/HR_GLASS_FROSTED_001" + "uaxis" "[-1 0 0 4] 0.125" + "vaxis" "[0 0 -1 192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24751" + "plane" "(1328 341 268) (1328 341 192) (1600 341 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24750" + "plane" "(1328 340 268) (1328 340 192) (1328 341 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24749" + "plane" "(1600 341 268) (1600 341 192) (1600 340 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24748" + "plane" "(1600 341 192) (1328 341 192) (1328 340 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24747" + "plane" "(1600 340 268) (1328 340 268) (1328 341 268)" + "material" "GLASS/HR_G/HR_GLASS_FROSTED_001" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "19938" + "classname" "env_cubemap" + "sides" "" + "origin" "1152.16 720 160" + editor + { + "color" "205 138 0" + "groupid" "19936" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "19943" + "classname" "env_cubemap" + "sides" "" + "origin" "592.33 448 160" + editor + { + "color" "205 138 0" + "groupid" "19941" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "19946" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_office/file_cabinet_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1584 458 192.259" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9000]" + } +} +entity +{ + "id" "19950" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_office/file_cabinet_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1584 496 192.259" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9000]" + } +} +entity +{ + "id" "19954" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_office/file_cabinet_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1584 420 192.259" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9000]" + } +} +entity +{ + "id" "19959" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "model" "models/props_foliage/mall_big_plant01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1011 748.995 107" + editor + { + "color" "174 167 0" + "groupid" "19958" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19963" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_foliage/mall_pot_large01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1012 748.995 96.25" + editor + { + "color" "174 167 0" + "groupid" "19958" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "19967" + "classname" "prop_static" + "angles" "0 45 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_chair/nuke_office_chair.mdl" + "renderamt" "255" + "rendercolor" "97 97 97" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1461.84 433.994 192" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3500 11500]" + } +} +entity +{ + "id" "19989" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "752 728 32" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/nuke_floor_markings_darker_full" + "sides" "" + "StartU" "0" + "StartV" "1" + "uv0" "-36 -32 0" + "uv1" "-36 32 0" + "uv2" "36 32 0" + "uv3" "36 -32 0" + "origin" "752 728 96" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11500]" + } +} +entity +{ + "id" "19995" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "672 728 32" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/nuke_floor_markings_darker_full" + "sides" "" + "StartU" "0" + "StartV" "1" + "uv0" "-36 -32 0" + "uv1" "-36 32 0" + "uv2" "36 32 0" + "uv3" "36 -32 0" + "origin" "672 728 96" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12000]" + } +} +entity +{ + "id" "20001" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "model" "models/props_foliage/mall_big_plant01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1616 309 203" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20005" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_foliage/mall_pot_large01.mdl" + "renderamt" "255" + "rendercolor" "209 245 154" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1467 -115 192.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "20013" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_exit_left_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1648 -48 289" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20017" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "766 385 171.97" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "20018" + side + { + "id" "24788" + "plane" "(768 377 197.969) (768 393 197.969) (769 393 197.969)" + "material" "SOLUTION/SIGNS" + "uaxis" "[0 -1 0 343] 0.25" + "vaxis" "[-1 0 0 -419] 0.25" + "rotation" "270" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24787" + "plane" "(768 393 145.969) (768 377 145.969) (769 377 145.969)" + "material" "SOLUTION/SIGNS" + "uaxis" "[0 -1 0 343] 0.25" + "vaxis" "[-1 0 0 -419] 0.25" + "rotation" "270" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24786" + "plane" "(768 377 145.969) (768 393 145.969) (768 393 197.969)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 27.877] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24785" + "plane" "(769 393 145.969) (769 377 145.969) (769 377 197.969)" + "material" "SOLUTION/SIGNS" + "uaxis" "[0 0 -1 -180] 0.25" + "vaxis" "[0 -1 0 112] 0.25" + "rotation" "270" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24784" + "plane" "(768 393 145.969) (769 393 145.969) (769 393 197.969)" + "material" "SOLUTION/SIGNS" + "uaxis" "[0 0 -1 -173.123] 0.25" + "vaxis" "[-1 0 0 -419] 0.25" + "rotation" "270" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24783" + "plane" "(769 377 145.969) (768 377 145.969) (768 377 197.969)" + "material" "SOLUTION/SIGNS" + "uaxis" "[0 0 -1 -173.123] 0.25" + "vaxis" "[-1 0 0 -419] 0.25" + "rotation" "270" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20019" + side + { + "id" "24794" + "plane" "(763 392 197.969) (763 393 197.969) (768 393 197.969)" + "material" "SOLUTION/SIGNS" + "uaxis" "[0 -1 0 -429] 0.25" + "vaxis" "[-1 0 0 -383] 0.25" + "rotation" "270" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24793" + "plane" "(763 393 145.969) (763 392 145.969) (768 392 145.969)" + "material" "SOLUTION/SIGNS" + "uaxis" "[0 -1 0 -429] 0.25" + "vaxis" "[-1 0 0 -383] 0.25" + "rotation" "270" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24792" + "plane" "(763 392 145.969) (763 393 145.969) (763 393 197.969)" + "material" "SOLUTION/SIGNS" + "uaxis" "[0 0 -1 -173] 0.25" + "vaxis" "[0 -1 0 -383] 0.25" + "rotation" "270" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24791" + "plane" "(768 393 145.969) (768 392 145.969) (768 392 197.969)" + "material" "SOLUTION/SIGNS" + "uaxis" "[0 0 -1 -173.123] 0.25" + "vaxis" "[0 -1 0 61] 0.25" + "rotation" "270" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24790" + "plane" "(763 393 145.969) (768 393 145.969) (768 393 197.969)" + "material" "SOLUTION/SIGNS" + "uaxis" "[0 0 -1 -173.123] 0.25" + "vaxis" "[-1 0 0 -383] 0.25" + "rotation" "270" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24789" + "plane" "(768 392 145.969) (763 392 145.969) (763 392 197.969)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 27.877] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "20021" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_frame_001_8.mdl" + "renderamt" "255" + "rendercolor" "97 97 97" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1652 226 192.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "20025" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001b_low.mdl" + "renderamt" "255" + "rendercolor" "97 97 97" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1655 256 192.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "20029" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/signs/sign_restroom_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1653 226 270.238" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20033" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_frame_001_8.mdl" + "renderamt" "255" + "rendercolor" "97 97 97" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1652 71 192.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "20037" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001b_low.mdl" + "renderamt" "255" + "rendercolor" "97 97 97" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1655 101 192.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "20041" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1647.5 96 348" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "20042" + side + { + "id" "24800" + "plane" "(1647 -64 352) (1647 336 352) (1648 336 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24799" + "plane" "(1647 336 344) (1647 -64 344) (1648 -64 344)" + "material" "METAL/DRTRIME" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 -1 0 427] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24798" + "plane" "(1647 -64 344) (1647 336 344) (1647 336 352)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 11] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24797" + "plane" "(1648 336 344) (1648 -64 344) (1648 -64 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24796" + "plane" "(1647 336 344) (1648 336 344) (1648 336 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24795" + "plane" "(1648 -64 344) (1647 -64 344) (1647 -64 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "20044" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "768.5 264.5 196" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "20045" + side + { + "id" "24806" + "plane" "(768 193 200) (768 336 200) (769 336 200)" + "material" "METAL/DRTRIME" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -301] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24805" + "plane" "(768 336 192) (768 193 192) (769 193 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24804" + "plane" "(768 193 192) (768 336 192) (768 336 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24803" + "plane" "(769 336 192) (769 193 192) (769 193 200)" + "material" "METAL/DRTRIME" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 404] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24802" + "plane" "(768 336 192) (769 336 192) (769 336 200)" + "material" "METAL/DRTRIME" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -45] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24801" + "plane" "(769 193 192) (768 193 192) (768 193 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -8268]" + } +} +entity +{ + "id" "20047" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "3" + "HDRColorScale" "1.0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "materials/sprites/glow01.vmt" + "renderamt" "150" + "rendercolor" "165 182 201" + "renderfx" "0" + "rendermode" "9" + "scale" "2" + "spawnflags" "1" + "origin" "1352 88.7546 343" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -6768]" + } +} +entity +{ + "id" "20050" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "3" + "HDRColorScale" "1.0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "materials/sprites/glow01.vmt" + "renderamt" "150" + "rendercolor" "165 182 201" + "renderfx" "0" + "rendermode" "9" + "scale" "2" + "spawnflags" "1" + "origin" "1152 311.326 343" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -6768]" + } +} +entity +{ + "id" "20053" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "3" + "HDRColorScale" "1.0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "materials/sprites/glow01.vmt" + "renderamt" "150" + "rendercolor" "165 182 201" + "renderfx" "0" + "rendermode" "9" + "scale" "2" + "spawnflags" "1" + "origin" "644 268.448 279" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -6768]" + } +} +entity +{ + "id" "20056" + "classname" "prop_physics_multiplayer" + "angles" "0 34 0" + "fademaxdist" "1350" + "fademindist" "1100" + "fadescale" "1" + "inertiaScale" "1.0" + "model" "models/props_junk/garbage_sodacan01a_fullsheet.mdl" + "physdamagescale" "0.1" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "spawnflags" "4" + "origin" "825 453.932 138" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 -15768]" + } +} +entity +{ + "id" "20060" + "classname" "ambient_generic" + "cspinup" "0" + "fadeinsecs" "0" + "fadeoutsecs" "0" + "health" "2" + "lfomodpitch" "0" + "lfomodvol" "0" + "lforate" "0" + "lfotype" "0" + "message" "ambient/atmosphere/corridor_room_tone_01.wav" + "pitch" "100" + "pitchstart" "100" + "preset" "6" + "radius" "97" + "spawnflags" "48" + "spindown" "0" + "spinup" "0" + "volstart" "0" + "origin" "915.752 406.796 104" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "20063" + "classname" "prop_static" + "angles" "0 87 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_recycling_bins/nuke_recycling_bin_01_nosign.mdl" + "renderamt" "255" + "rendercolor" "97 153 209" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1152 764 96.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "20067" + "classname" "prop_static" + "angles" "0 87 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_recycling_bins/nuke_recycling_bin_01_nosign.mdl" + "renderamt" "255" + "rendercolor" "97 153 209" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1188 760 96.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "20071" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "182 120 121" + "screenspacefade" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1280 336 308.6" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3500 11500]" + } +} +entity +{ + "id" "20089" + "classname" "prop_static" + "angles" "0 87 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_recycling_bins/nuke_recycling_bin_01_nosign.mdl" + "renderamt" "255" + "rendercolor" "97 153 209" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1196 532 96.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "20093" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/solution/interior/furnishing/drinks.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "833 356 96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "20097" + "classname" "prop_physics" + "angles" "0 0 0" + "body" "0" + "damagetoenablemotion" "0" + "Damagetype" "0" + "disablereceiveshadows" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "ExploitableByPlayer" "0" + "fademindist" "-1" + "fadescale" "1" + "forcetoenablemotion" "0" + "inertiaScale" "1.0" + "massScale" "0" + "minhealthdmg" "0" + "model" "models/solution/misc/coffecup.mdl" + "nodamageforces" "0" + "PerformanceMode" "0" + "physdamagescale" "0.1" + "pressuredelay" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowcastdist" "0" + "skin" "0" + "spawnflags" "260" + "origin" "922.421 483.235 135.492" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "20101" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_vending_machine/nuke_snack_machine.mdl" + "renderamt" "255" + "rendercolor" "97 97 97" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "931 334 91" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "20105" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/solution/interior/furnishing/drinks.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "876 356 96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "20109" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_conference_table.mdl" + "renderamt" "255" + "rendercolor" "111 131 200" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "879 468 96.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3500 11500]" + } +} +entity +{ + "id" "20113" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_chair/nuke_chair.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "838 489 96.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3500 11500]" + } +} +entity +{ + "id" "20117" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_chair/nuke_chair.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "921 489 96.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3500 11500]" + } +} +entity +{ + "id" "20121" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_chair/nuke_chair.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "836 446 96.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3500 11500]" + } +} +entity +{ + "id" "20125" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_chair/nuke_chair.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "866 445 96.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3500 11500]" + } +} +entity +{ + "id" "20142" + "classname" "prop_physics" + "angles" "0 0 0" + "body" "0" + "damagetoenablemotion" "0" + "Damagetype" "0" + "disablereceiveshadows" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "ExploitableByPlayer" "0" + "fademindist" "-1" + "fadescale" "1" + "forcetoenablemotion" "0" + "inertiaScale" "1.0" + "massScale" "0" + "minhealthdmg" "0" + "model" "models/solution/misc/coffecup.mdl" + "nodamageforces" "0" + "PerformanceMode" "0" + "physdamagescale" "0.1" + "pressuredelay" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowcastdist" "0" + "skin" "1" + "spawnflags" "260" + "origin" "897.932 457.8 135.492" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "20146" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_electric_panel/nuke_electric_panel02.mdl" + "renderamt" "255" + "rendercolor" "224 223 227" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "765 237 309.175" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3500 11500]" + } +} +entity +{ + "id" "20150" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_industrial_props/nuke_industrial_electrical_panel_002_small.mdl" + "renderamt" "255" + "rendercolor" "97 153 209" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1048 336 258.538" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3500 11500]" + } +} +entity +{ + "id" "20154" + "classname" "prop_static" + "angles" "0 270 0" + "fademaxdist" "4400" + "fademindist" "2200" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/tree_small_beech_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "877 866.187 91" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "20158" + "classname" "prop_static" + "angles" "0 0 0" + "fademaxdist" "4400" + "fademindist" "2200" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/tree_small_beech_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1154 875 96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "20162" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_mall/mall_bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "960 865 96.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "20166" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_mall/mall_bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1060 865 96.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "20180" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_light_switch_001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1593 382 250.044" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20184" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_256.mdl" + "renderamt" "255" + "rendercolor" "97 153 209" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1024 334 192.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "20188" + "classname" "prop_static" + "angles" "0 90 0" + "fademaxdist" "3662" + "fademindist" "3611" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_vending_machine/nuke_vending_machine.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "986 350 96.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20192" + "classname" "func_detail" + solid + { + "id" "20193" + side + { + "id" "24945" + "plane" "(1024 336 320) (1024 336 128) (1024 416 128)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24944" + "plane" "(1072 416 320) (1072 416 128) (1072 336 128)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[0 1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24943" + "plane" "(1024 416 320) (1024 416 128) (1072 416 128)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24942" + "plane" "(1072 336 320) (1072 336 128) (1024 336 128)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24941" + "plane" "(1024 416 128) (1024 336 128) (1072 336 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24940" + "plane" "(1024 336 320) (1024 416 320) (1072 416 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20194" + side + { + "id" "24951" + "plane" "(1024 416 96) (1024 336 96) (1072 336 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24950" + "plane" "(1024 336 128) (1024 336 96) (1024 416 96)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL_BLUE" + "uaxis" "[0 1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24949" + "plane" "(1072 416 128) (1072 416 96) (1072 336 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24948" + "plane" "(1024 416 128) (1024 416 96) (1072 416 96)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL_BLUE" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24947" + "plane" "(1072 336 128) (1072 336 96) (1024 336 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24946" + "plane" "(1024 336 128) (1024 416 128) (1072 416 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20195" + side + { + "id" "24957" + "plane" "(1024 336 352) (1024 416 352) (1072 416 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24956" + "plane" "(1024 416 320) (1024 416 352) (1024 336 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL_BLUE" + "uaxis" "[0 1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24955" + "plane" "(1072 336 320) (1072 336 352) (1072 416 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL_BLUE" + "uaxis" "[0 1 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24954" + "plane" "(1072 416 320) (1072 416 352) (1024 416 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL_BLUE" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24953" + "plane" "(1024 336 320) (1024 336 352) (1072 336 352)" + "material" "SOLUTION2/BUMPSOURCE/RESINWALL_BLUE" + "uaxis" "[1 0 0 224] 0.125" + "vaxis" "[0 0 -1 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24952" + "plane" "(1024 416 320) (1024 336 320) (1072 336 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20205" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_foliage/mall_pot_large01.mdl" + "renderamt" "255" + "rendercolor" "209 245 154" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1617 309 192.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "20209" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/signs/sign_authorised_personel_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1653 71 275.031" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20251" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_power_socket.mdl" + "renderamt" "255" + "rendercolor" "96 94 108" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "789 336 119.197" + editor + { + "color" "165 118 0" + "groupid" "20250" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20255" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_power_socket.mdl" + "renderamt" "255" + "rendercolor" "96 94 108" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "799 336 119.431" + editor + { + "color" "165 118 0" + "groupid" "20250" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20259" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1187 1024.93 92.9954" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "20263" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1183.01 975.637 93" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "20268" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001_cover.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1440 -13 256" + editor + { + "color" "207 232 0" + "groupid" "20267" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20272" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1440 -13 256" + editor + { + "color" "207 232 0" + "groupid" "20267" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20282" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_power_socket.mdl" + "renderamt" "255" + "rendercolor" "96 94 108" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1224 192 223.698" + editor + { + "color" "165 118 0" + "groupid" "20281" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20286" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_power_socket.mdl" + "renderamt" "255" + "rendercolor" "96 94 108" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1234 192 223.932" + editor + { + "color" "165 118 0" + "groupid" "20281" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20291" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_power_socket.mdl" + "renderamt" "255" + "rendercolor" "96 94 108" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1377 0 216.169" + editor + { + "color" "165 118 0" + "groupid" "20290" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20295" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_power_socket.mdl" + "renderamt" "255" + "rendercolor" "96 94 108" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1387 0 216.403" + editor + { + "color" "165 118 0" + "groupid" "20290" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20300" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "97 153 209" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1080 338 189" + editor + { + "color" "102 123 0" + "groupid" "20299" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "20304" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_72.mdl" + "renderamt" "255" + "rendercolor" "97 153 209" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1080 412 141" + editor + { + "color" "102 123 0" + "groupid" "20299" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "20310" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1151.13 421.536 345.767" + editor + { + "color" "201 110 0" + "groupid" "20309" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 4500]" + } +} +entity +{ + "id" "20314" + "classname" "light_spot" + "_cone" "80" + "_constant_attn" "1000" + "_exponent" "1" + "_inner_cone" "1" + "_light" "254 248 222 230" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-89 0 0" + "pitch" "-89" + "spawnflags" "0" + "origin" "1151.28 421.536 337.693" + editor + { + "color" "201 110 0" + "groupid" "20309" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 0]" + } +} +entity +{ + "id" "20319" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "3" + "HDRColorScale" "1.0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "materials/sprites/glow01.vmt" + "renderamt" "150" + "rendercolor" "165 182 201" + "renderfx" "0" + "rendermode" "9" + "scale" "2" + "spawnflags" "1" + "origin" "1151.06 422 343" + editor + { + "color" "201 110 0" + "groupid" "20308" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -6768]" + } +} +entity +{ + "id" "20324" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1648 -29 259.739" + editor + { + "color" "235 244 0" + "groupid" "20323" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20328" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001_cover.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1648 -29 259.739" + editor + { + "color" "235 244 0" + "groupid" "20323" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20332" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1647 -29 259" + editor + { + "color" "235 244 0" + "groupid" "20322" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20336" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1647 -29 322" + editor + { + "color" "235 244 0" + "groupid" "20322" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20350" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "897.147 271.127 346" + editor + { + "color" "198 219 0" + "groupid" "20349" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 4500]" + } +} +entity +{ + "id" "20354" + "classname" "light_spot" + "_cone" "80" + "_constant_attn" "1000" + "_exponent" "1" + "_inner_cone" "1" + "_light" "254 248 222 230" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-89 90 0" + "pitch" "-89" + "spawnflags" "0" + "origin" "897.147 271.277 337.926" + editor + { + "color" "198 219 0" + "groupid" "20349" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 0]" + } +} +entity +{ + "id" "20359" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "3" + "HDRColorScale" "1.0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "materials/sprites/glow01.vmt" + "renderamt" "150" + "rendercolor" "165 182 201" + "renderfx" "0" + "rendermode" "9" + "scale" "2" + "spawnflags" "1" + "origin" "896.925 271 343" + editor + { + "color" "198 219 0" + "groupid" "20348" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -6768]" + } +} +entity +{ + "id" "20364" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1048.15 264.127 346" + editor + { + "color" "198 219 0" + "groupid" "20363" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 4500]" + } +} +entity +{ + "id" "20368" + "classname" "light_spot" + "_cone" "80" + "_constant_attn" "1000" + "_exponent" "1" + "_inner_cone" "1" + "_light" "254 248 222 230" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-89 90 0" + "pitch" "-89" + "spawnflags" "0" + "origin" "1048.15 264.277 337.926" + editor + { + "color" "198 219 0" + "groupid" "20363" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 0]" + } +} +entity +{ + "id" "20373" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "3" + "HDRColorScale" "1.0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "materials/sprites/glow01.vmt" + "renderamt" "150" + "rendercolor" "165 182 201" + "renderfx" "0" + "rendermode" "9" + "scale" "2" + "spawnflags" "1" + "origin" "1047.92 264 343" + editor + { + "color" "198 219 0" + "groupid" "20362" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -6768]" + } +} +entity +{ + "id" "20377" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_001_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "768 314 253.001" + editor + { + "color" "108 197 0" + "groupid" "20376" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "20381" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "216 33 65" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "772 314 225.862" + editor + { + "color" "108 197 0" + "groupid" "20376" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "20386" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_corner_ridged_small.mdl" + "renderamt" "255" + "rendercolor" "97 153 209" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1212 763 228" + editor + { + "color" "104 161 0" + "groupid" "20385" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20390" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_128.mdl" + "renderamt" "255" + "rendercolor" "97 153 209" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1210 763 224" + editor + { + "color" "104 161 0" + "groupid" "20385" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20394" + "classname" "prop_static" + "angles" "-90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_wallcap.mdl" + "renderamt" "255" + "rendercolor" "97 153 209" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1210 763 96.25" + editor + { + "color" "104 161 0" + "groupid" "20385" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20398" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_128.mdl" + "renderamt" "255" + "rendercolor" "97 153 209" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1210 776.545 224" + editor + { + "color" "104 161 0" + "groupid" "20385" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20402" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_corner_ridged_small.mdl" + "renderamt" "255" + "rendercolor" "97 153 209" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1212 776.545 228" + editor + { + "color" "104 161 0" + "groupid" "20385" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20406" + "classname" "prop_static" + "angles" "-90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_wallcap.mdl" + "renderamt" "255" + "rendercolor" "97 153 209" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1210 776.545 96.25" + editor + { + "color" "104 161 0" + "groupid" "20385" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20465" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1351.87 90.3605 346" + editor + { + "color" "0 111 160" + "groupid" "20464" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 4500]" + } +} +entity +{ + "id" "20469" + "classname" "light_spot" + "_cone" "80" + "_constant_attn" "1000" + "_exponent" "1" + "_inner_cone" "1" + "_light" "254 248 222 230" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-89 180 0" + "pitch" "-89" + "spawnflags" "0" + "origin" "1351.72 90.3605 337.926" + editor + { + "color" "0 111 160" + "groupid" "20464" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 0]" + } +} +entity +{ + "id" "20475" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1152.13 310.853 345.767" + editor + { + "color" "161 102 0" + "groupid" "20474" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 4500]" + } +} +entity +{ + "id" "20479" + "classname" "light_spot" + "_cone" "80" + "_constant_attn" "1000" + "_exponent" "1" + "_inner_cone" "1" + "_light" "254 248 222 230" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-89 0 0" + "pitch" "-89" + "spawnflags" "0" + "origin" "1152.28 310.853 337.693" + editor + { + "color" "161 102 0" + "groupid" "20474" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 0]" + } +} +entity +{ + "id" "20491" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/window_straight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "784 80 128" + editor + { + "color" "227 232 0" + "groupid" "20490" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "20495" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/window_straight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1040 80 128" + editor + { + "color" "227 232 0" + "groupid" "20490" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "20499" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/window_straight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "912 80 128" + editor + { + "color" "227 232 0" + "groupid" "20490" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "20503" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/window_straight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1168 80 128" + editor + { + "color" "227 232 0" + "groupid" "20490" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "20507" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/longblind_nohit.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "784 80 176" + editor + { + "color" "227 232 0" + "groupid" "20484" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15000]" + } +} +entity +{ + "id" "20511" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/longblind_nohit.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "912 80 152" + editor + { + "color" "227 232 0" + "groupid" "20484" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15000]" + } +} +entity +{ + "id" "20515" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/longblind_nohit.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1040 80 184" + editor + { + "color" "227 232 0" + "groupid" "20484" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15000]" + } +} +entity +{ + "id" "20519" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/longblind_nohit.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1168 80 256" + editor + { + "color" "227 232 0" + "groupid" "20484" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15000]" + } +} +entity +{ + "id" "20526" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/pipe_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1056 20 416" + editor + { + "color" "111 196 0" + "groupid" "20525" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20530" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/pipe_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "800 20 416" + editor + { + "color" "111 196 0" + "groupid" "20525" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20534" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/pipe_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1312 20 416" + editor + { + "color" "111 196 0" + "groupid" "20525" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20538" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/pipe_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "672 20 416" + editor + { + "color" "111 196 0" + "groupid" "20524" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20544" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1056 -24 416" + editor + { + "color" "197 118 0" + "groupid" "20543" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20548" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "800 -24 416" + editor + { + "color" "197 118 0" + "groupid" "20543" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20552" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1312 -24 416" + editor + { + "color" "197 118 0" + "groupid" "20543" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20556" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "656 -24 416" + editor + { + "color" "197 118 0" + "groupid" "20542" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20562" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1056 -36 420" + editor + { + "color" "167 148 0" + "groupid" "20561" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20566" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "800 -36 420" + editor + { + "color" "167 148 0" + "groupid" "20561" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20570" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1312 -36 420" + editor + { + "color" "167 148 0" + "groupid" "20561" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20574" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "656 -36 420" + editor + { + "color" "167 148 0" + "groupid" "20560" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20579" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1052 -192 444" + editor + { + "color" "213 154 0" + "groupid" "20578" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20583" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "796 -192 444" + editor + { + "color" "213 154 0" + "groupid" "20578" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20587" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1308 -192 444" + editor + { + "color" "213 154 0" + "groupid" "20578" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20595" + "classname" "func_detail" + solid + { + "id" "20596" + side + { + "id" "25419" + "plane" "(448 240 120) (448 256 120) (640 256 120)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 -1 0 -160] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25418" + "plane" "(448 256 96) (448 240 96) (640 240 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25417" + "plane" "(448 240 96) (448 256 96) (448 256 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25416" + "plane" "(640 256 96) (640 240 96) (640 240 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25415" + "plane" "(448 256 96) (640 256 96) (640 256 120)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[1 0 0 224] 0.16" + "vaxis" "[0 0 -1 681] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25414" + "plane" "(640 240 96) (448 240 96) (448 240 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20597" + side + { + "id" "25425" + "plane" "(448 256 112) (448 272 112) (640 272 112)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 -1 0 -160] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25424" + "plane" "(448 272 96) (448 256 96) (640 256 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25423" + "plane" "(448 256 96) (448 272 96) (448 272 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25422" + "plane" "(640 272 96) (640 256 96) (640 256 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25421" + "plane" "(448 272 96) (640 272 96) (640 272 112)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[1 0 0 224] 0.16" + "vaxis" "[0 0 -1 1006] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25420" + "plane" "(640 256 96) (448 256 96) (448 256 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20598" + side + { + "id" "25431" + "plane" "(448 272 104) (448 288 104) (640 288 104)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 -1 0 -160] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "25430" + "plane" "(448 288 96) (448 272 96) (640 272 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25429" + "plane" "(448 272 96) (448 288 96) (448 288 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25428" + "plane" "(640 288 96) (640 272 96) (640 272 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25427" + "plane" "(448 288 96) (640 288 96) (640 288 104)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[1 0 0 224] 0.16" + "vaxis" "[0 0 -1 956] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25426" + "plane" "(640 272 96) (448 272 96) (448 272 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20621" + "classname" "prop_physics_multiplayer" + "angles" "0 90 0" + "body" "0" + "damagetoenablemotion" "0" + "Damagetype" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "ExploitableByPlayer" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "forcetoenablemotion" "1" + "inertiaScale" "1.0" + "massScale" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "minhealthdmg" "0" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "nodamageforces" "0" + "PerformanceMode" "0" + "physdamagescale" "0.1" + "physicsmode" "0" + "pressuredelay" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowcastdist" "0" + "shadowdepthnocache" "0" + "skin" "0" + "spawnflags" "260" + "origin" "912 193 291" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 14000]" + } +} +entity +{ + "id" "20625" + "classname" "prop_static" + "angles" "0 91 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "850" + "fademindist" "700" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_wasteland/prison_switchbox001a.mdl" + "renderamt" "255" + "rendercolor" "96 132 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "890 193 268.797" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[11000 -5768]" + } +} +entity +{ + "id" "20629" + "classname" "prop_physics_multiplayer" + "angles" "0 90 0" + "body" "0" + "damagetoenablemotion" "0" + "Damagetype" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "ExploitableByPlayer" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "forcetoenablemotion" "1" + "inertiaScale" "1.0" + "massScale" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "minhealthdmg" "0" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "nodamageforces" "0" + "PerformanceMode" "0" + "physdamagescale" "0.1" + "physicsmode" "0" + "pressuredelay" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowcastdist" "0" + "shadowdepthnocache" "0" + "skin" "0" + "spawnflags" "260" + "origin" "1001 193 291" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 14000]" + } +} +entity +{ + "id" "20633" + "classname" "prop_static" + "angles" "0 91 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "850" + "fademindist" "700" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_wasteland/prison_switchbox001a.mdl" + "renderamt" "255" + "rendercolor" "96 132 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "979 193 268.797" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[11000 -5768]" + } +} +entity +{ + "id" "20637" + "classname" "env_cubemap" + "cubemapsize" "0" + "sides" "" + "origin" "1520 144 257" + editor + { + "color" "0 0 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "20643" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/skylight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "976 -256 452" + editor + { + "color" "211 148 0" + "groupid" "20642" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "20647" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/skylight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "848 -256 452" + editor + { + "color" "211 148 0" + "groupid" "20642" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "20651" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/skylight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1232 -256 452" + editor + { + "color" "211 148 0" + "groupid" "20642" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "20655" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/skylight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1360 -256 452" + editor + { + "color" "211 148 0" + "groupid" "20642" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "20659" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/skylight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1104 -256 452" + editor + { + "color" "211 148 0" + "groupid" "20641" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "20663" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/skylight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "720 -256 452" + editor + { + "color" "211 148 0" + "groupid" "20641" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "20669" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/skylight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1232 -640 452" + editor + { + "color" "211 148 0" + "groupid" "20668" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "20673" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/skylight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1360 -640 452" + editor + { + "color" "211 148 0" + "groupid" "20668" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "20677" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/skylight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "976 -640 452" + editor + { + "color" "211 148 0" + "groupid" "20668" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "20681" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/skylight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "848 -640 452" + editor + { + "color" "211 148 0" + "groupid" "20668" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "20685" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/skylight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1104 -640 452" + editor + { + "color" "211 148 0" + "groupid" "20667" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "20689" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/skylight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "720 -640 452" + editor + { + "color" "211 148 0" + "groupid" "20667" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "20695" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "1296 -704 476" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "20696" + side + { + "id" "25569" + "plane" "(1168 -768 464) (1168 -640 496) (1424 -640 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25568" + "plane" "(1168 -640 488) (1168 -768 456) (1424 -768 456)" + "material" "GLASS/HOTEL_GLASS001" + "uaxis" "[1 0 0 -288] 0.5" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25567" + "plane" "(1168 -768 456) (1168 -640 488) (1168 -640 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25566" + "plane" "(1424 -640 488) (1424 -768 456) (1424 -768 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25565" + "plane" "(1168 -640 488) (1424 -640 488) (1424 -640 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25564" + "plane" "(1424 -768 456) (1168 -768 456) (1168 -768 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "211 148 0" + "groupid" "20694" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "20698" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "1040 -704 476" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "20699" + side + { + "id" "25575" + "plane" "(912 -768 464) (912 -640 496) (1168 -640 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25574" + "plane" "(912 -640 488) (912 -768 456) (1168 -768 456)" + "material" "GLASS/HOTEL_GLASS001" + "uaxis" "[1 0 0 224] 0.5" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25573" + "plane" "(912 -768 456) (912 -640 488) (912 -640 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25572" + "plane" "(1168 -640 488) (1168 -768 456) (1168 -768 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25571" + "plane" "(912 -640 488) (1168 -640 488) (1168 -640 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25570" + "plane" "(1168 -768 456) (912 -768 456) (912 -768 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "211 148 0" + "groupid" "20694" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "20701" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "784 -704 476" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "20702" + side + { + "id" "25581" + "plane" "(656 -768 464) (656 -640 496) (912 -640 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25580" + "plane" "(656 -640 488) (656 -768 456) (912 -768 456)" + "material" "GLASS/HOTEL_GLASS001" + "uaxis" "[1 0 0 224] 0.5" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25579" + "plane" "(656 -768 456) (656 -640 488) (656 -640 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25578" + "plane" "(912 -640 488) (912 -768 456) (912 -768 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25577" + "plane" "(656 -640 488) (912 -640 488) (912 -640 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25576" + "plane" "(912 -768 456) (656 -768 456) (656 -768 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "211 148 0" + "groupid" "20694" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "20705" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "1296 -576 476" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "20706" + side + { + "id" "25587" + "plane" "(1168 -640 496) (1168 -512 464) (1424 -512 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25586" + "plane" "(1168 -512 456) (1168 -640 488) (1424 -640 488)" + "material" "GLASS/HOTEL_GLASS001" + "uaxis" "[-1 0 0 288] 0.5" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25585" + "plane" "(1424 -512 456) (1424 -640 488) (1424 -640 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25584" + "plane" "(1168 -640 488) (1168 -512 456) (1168 -512 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25583" + "plane" "(1424 -640 488) (1168 -640 488) (1168 -640 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25582" + "plane" "(1168 -512 456) (1424 -512 456) (1424 -512 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "211 148 0" + "groupid" "20704" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "20708" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "1040 -576 476" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "20709" + side + { + "id" "25593" + "plane" "(912 -640 496) (912 -512 464) (1168 -512 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25592" + "plane" "(912 -512 456) (912 -640 488) (1168 -640 488)" + "material" "GLASS/HOTEL_GLASS001" + "uaxis" "[-1 0 0 288] 0.5" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25591" + "plane" "(1168 -512 456) (1168 -640 488) (1168 -640 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25590" + "plane" "(912 -640 488) (912 -512 456) (912 -512 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25589" + "plane" "(1168 -640 488) (912 -640 488) (912 -640 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25588" + "plane" "(912 -512 456) (1168 -512 456) (1168 -512 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "211 148 0" + "groupid" "20704" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "20711" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "784 -576 476" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "20712" + side + { + "id" "25599" + "plane" "(656 -640 496) (656 -512 464) (912 -512 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25598" + "plane" "(656 -512 456) (656 -640 488) (912 -640 488)" + "material" "GLASS/HOTEL_GLASS001" + "uaxis" "[-1 0 0 288] 0.5" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25597" + "plane" "(912 -512 456) (912 -640 488) (912 -640 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25596" + "plane" "(656 -640 488) (656 -512 456) (656 -512 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25595" + "plane" "(912 -640 488) (656 -640 488) (656 -640 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25594" + "plane" "(656 -512 456) (912 -512 456) (912 -512 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "211 148 0" + "groupid" "20704" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "20716" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "1296 -192 476" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "20717" + side + { + "id" "25605" + "plane" "(1168 -256 496) (1168 -128 464) (1424 -128 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25604" + "plane" "(1168 -128 456) (1168 -256 488) (1424 -256 488)" + "material" "GLASS/HOTEL_GLASS001" + "uaxis" "[-1 0 0 288] 0.5" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25603" + "plane" "(1424 -128 456) (1424 -256 488) (1424 -256 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25602" + "plane" "(1168 -256 488) (1168 -128 456) (1168 -128 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25601" + "plane" "(1424 -256 488) (1168 -256 488) (1168 -256 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25600" + "plane" "(1168 -128 456) (1424 -128 456) (1424 -128 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "211 148 0" + "groupid" "20715" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "20719" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "1040 -192 476" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "20720" + side + { + "id" "25611" + "plane" "(912 -256 496) (912 -128 464) (1168 -128 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25610" + "plane" "(912 -128 456) (912 -256 488) (1168 -256 488)" + "material" "GLASS/HOTEL_GLASS001" + "uaxis" "[-1 0 0 288] 0.5" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25609" + "plane" "(1168 -128 456) (1168 -256 488) (1168 -256 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25608" + "plane" "(912 -256 488) (912 -128 456) (912 -128 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25607" + "plane" "(1168 -256 488) (912 -256 488) (912 -256 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25606" + "plane" "(912 -128 456) (1168 -128 456) (1168 -128 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "211 148 0" + "groupid" "20715" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "20722" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "784 -192 476" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "20723" + side + { + "id" "25617" + "plane" "(656 -256 496) (656 -128 464) (912 -128 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25616" + "plane" "(656 -128 456) (656 -256 488) (912 -256 488)" + "material" "GLASS/HOTEL_GLASS001" + "uaxis" "[-1 0 0 288] 0.5" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25615" + "plane" "(912 -128 456) (912 -256 488) (912 -256 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25614" + "plane" "(656 -256 488) (656 -128 456) (656 -128 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25613" + "plane" "(912 -256 488) (656 -256 488) (656 -256 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25612" + "plane" "(656 -128 456) (912 -128 456) (912 -128 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "211 148 0" + "groupid" "20715" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "20726" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "784 -320 476" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "20727" + side + { + "id" "25623" + "plane" "(656 -384 464) (656 -256 496) (912 -256 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25622" + "plane" "(656 -256 488) (656 -384 456) (912 -384 456)" + "material" "GLASS/HOTEL_GLASS001" + "uaxis" "[1 0 0 224] 0.5" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25621" + "plane" "(656 -384 456) (656 -256 488) (656 -256 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25620" + "plane" "(912 -256 488) (912 -384 456) (912 -384 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25619" + "plane" "(656 -256 488) (912 -256 488) (912 -256 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25618" + "plane" "(912 -384 456) (656 -384 456) (656 -384 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "211 148 0" + "groupid" "20725" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "20729" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "1040 -320 476" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "20730" + side + { + "id" "25629" + "plane" "(912 -384 464) (912 -256 496) (1168 -256 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25628" + "plane" "(912 -256 488) (912 -384 456) (1168 -384 456)" + "material" "GLASS/HOTEL_GLASS001" + "uaxis" "[1 0 0 224] 0.5" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25627" + "plane" "(912 -384 456) (912 -256 488) (912 -256 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25626" + "plane" "(1168 -256 488) (1168 -384 456) (1168 -384 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25625" + "plane" "(912 -256 488) (1168 -256 488) (1168 -256 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25624" + "plane" "(1168 -384 456) (912 -384 456) (912 -384 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "211 148 0" + "groupid" "20725" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "20732" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "1296 -320 476" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "20733" + side + { + "id" "25635" + "plane" "(1168 -384 464) (1168 -256 496) (1424 -256 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25634" + "plane" "(1168 -256 488) (1168 -384 456) (1424 -384 456)" + "material" "GLASS/HOTEL_GLASS001" + "uaxis" "[1 0 0 -288] 0.5" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25633" + "plane" "(1168 -384 456) (1168 -256 488) (1168 -256 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25632" + "plane" "(1424 -256 488) (1424 -384 456) (1424 -384 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25631" + "plane" "(1168 -256 488) (1424 -256 488) (1424 -256 496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25630" + "plane" "(1424 -384 456) (1168 -384 456) (1168 -384 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "211 148 0" + "groupid" "20725" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "20737" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1296 -284 456" + editor + { + "color" "211 148 0" + "groupid" "20736" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "20741" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1040 -284 456" + editor + { + "color" "211 148 0" + "groupid" "20736" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "20745" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "784 -284 456" + editor + { + "color" "211 148 0" + "groupid" "20736" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "20749" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/pipe_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1296 -268 456" + editor + { + "color" "211 148 0" + "groupid" "20735" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "20753" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/pipe_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1040 -268 456" + editor + { + "color" "211 148 0" + "groupid" "20735" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "20757" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/pipe_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "784 -268 456" + editor + { + "color" "211 148 0" + "groupid" "20735" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "20761" + "classname" "func_detail" + solid + { + "id" "20762" + side + { + "id" "25641" + "plane" "(656 -128 456) (656 -64 456) (1424 -64 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25640" + "plane" "(656 -64 432) (656 -128 432) (1424 -128 432)" + "material" "SOLUTION2/BRIGHTMATS/HOLES" + "uaxis" "[-1 0 0 576] 0.25" + "vaxis" "[0 1 0 896] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25639" + "plane" "(656 -128 432) (656 -64 432) (656 -64 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25638" + "plane" "(1424 -64 432) (1424 -128 432) (1424 -128 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25637" + "plane" "(656 -64 432) (1424 -64 432) (1424 -64 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25636" + "plane" "(1424 -128 432) (656 -128 432) (656 -128 456)" + "material" "SOLUTION2/BRIGHTMATS/TRIMS" + "uaxis" "[-1 0 0 0] 0.15" + "vaxis" "[0 0 -1 63.6666] 0.15" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20763" + side + { + "id" "25647" + "plane" "(656 -512 456) (656 -384 456) (1424 -384 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25646" + "plane" "(656 -384 432) (656 -512 432) (1424 -512 432)" + "material" "SOLUTION2/BRIGHTMATS/HOLES" + "uaxis" "[-1 0 0 576] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25645" + "plane" "(656 -512 432) (656 -384 432) (656 -384 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25644" + "plane" "(1424 -384 432) (1424 -512 432) (1424 -512 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25643" + "plane" "(656 -384 432) (1424 -384 432) (1424 -384 456)" + "material" "SOLUTION2/BRIGHTMATS/TRIMS" + "uaxis" "[-1 0 0 0] 0.15" + "vaxis" "[0 0 -1 63.6666] 0.15" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25642" + "plane" "(1424 -512 432) (656 -512 432) (656 -512 456)" + "material" "SOLUTION2/BRIGHTMATS/TRIMS" + "uaxis" "[-1 0 0 0] 0.15" + "vaxis" "[0 0 -1 63.6666] 0.15" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20764" + side + { + "id" "25653" + "plane" "(656 -864 456) (656 -768 456) (1424 -768 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25652" + "plane" "(656 -768 432) (656 -864 432) (1424 -864 432)" + "material" "SOLUTION2/BRIGHTMATS/HOLES" + "uaxis" "[-1 0 0 576] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25651" + "plane" "(656 -864 432) (656 -768 432) (656 -768 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25650" + "plane" "(1424 -768 432) (1424 -864 432) (1424 -864 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25649" + "plane" "(656 -768 432) (1424 -768 432) (1424 -768 456)" + "material" "SOLUTION2/BRIGHTMATS/TRIMS" + "uaxis" "[-1 0 0 0] 0.15" + "vaxis" "[0 0 -1 63.6666] 0.15" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25648" + "plane" "(1424 -864 432) (656 -864 432) (656 -864 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "211 148 0" + "groupid" "20640" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "20765" + "classname" "func_detail" + solid + { + "id" "20766" + side + { + "id" "25659" + "plane" "(1424 -768 456) (1424 -640 488) (1440 -640 488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25658" + "plane" "(1424 -640 448) (1424 -768 448) (1440 -768 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25657" + "plane" "(1424 -640 488) (1424 -768 456) (1424 -768 448)" + "material" "SOLUTION2/BRIGHTMATS/HOLES" + "uaxis" "[0 -1 0 128] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25656" + "plane" "(1440 -640 448) (1440 -768 448) (1440 -768 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25655" + "plane" "(1440 -768 448) (1424 -768 448) (1424 -768 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25654" + "plane" "(1424 -640 448) (1440 -640 448) (1440 -640 488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20767" + side + { + "id" "25665" + "plane" "(1424 -640 488) (1424 -512 456) (1440 -512 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25664" + "plane" "(1424 -512 448) (1424 -640 448) (1440 -640 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25663" + "plane" "(1424 -640 448) (1424 -512 448) (1424 -512 456)" + "material" "SOLUTION2/BRIGHTMATS/HOLES" + "uaxis" "[0 -1 0 128] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25662" + "plane" "(1440 -640 488) (1440 -512 456) (1440 -512 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25661" + "plane" "(1424 -512 448) (1440 -512 448) (1440 -512 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25660" + "plane" "(1440 -640 448) (1424 -640 448) (1424 -640 488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20768" + side + { + "id" "25671" + "plane" "(1424 -384 456) (1424 -256 488) (1440 -256 488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25670" + "plane" "(1424 -256 448) (1424 -384 448) (1440 -384 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25669" + "plane" "(1424 -256 488) (1424 -384 456) (1424 -384 448)" + "material" "SOLUTION2/BRIGHTMATS/HOLES" + "uaxis" "[0 -1 0 128] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25668" + "plane" "(1440 -256 448) (1440 -384 448) (1440 -384 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25667" + "plane" "(1440 -384 448) (1424 -384 448) (1424 -384 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25666" + "plane" "(1424 -256 448) (1440 -256 448) (1440 -256 488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20769" + side + { + "id" "25677" + "plane" "(1424 -256 488) (1424 -128 456) (1440 -128 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25676" + "plane" "(1424 -128 448) (1424 -256 448) (1440 -256 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25675" + "plane" "(1424 -256 448) (1424 -128 448) (1424 -128 456)" + "material" "SOLUTION2/BRIGHTMATS/HOLES" + "uaxis" "[0 -1 0 128] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25674" + "plane" "(1440 -256 488) (1440 -128 456) (1440 -128 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25673" + "plane" "(1424 -128 448) (1440 -128 448) (1440 -128 456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25672" + "plane" "(1440 -256 448) (1424 -256 448) (1424 -256 488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "211 148 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "211 148 0" + "groupid" "20640" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "20771" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/vent_64_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "784 -832 400" + editor + { + "color" "139 148 0" + "groupid" "20770" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20775" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/vent_64_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1040 -832 400" + editor + { + "color" "139 148 0" + "groupid" "20770" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20779" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/vent_64_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1296 -832 400" + editor + { + "color" "139 148 0" + "groupid" "20770" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20784" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/vent_64_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1040 -424 400" + editor + { + "color" "213 154 0" + "groupid" "20783" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20788" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/vent_64_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "784 -424 400" + editor + { + "color" "213 154 0" + "groupid" "20783" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20792" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/vent_64_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1296 -424 400" + editor + { + "color" "213 154 0" + "groupid" "20783" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20798" + "classname" "prop_static" + "angles" "7 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/wallpipe.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "848 -493 420.568" + editor + { + "color" "255 232 0" + "groupid" "20797" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20802" + "classname" "prop_static" + "angles" "0 0 83" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/wallpipe_transfer.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "848 -588.284 432.268" + editor + { + "color" "255 232 0" + "groupid" "20797" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20806" + "classname" "prop_static" + "angles" "0 180 97" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/wallpipe_transfer.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "848 -471.671 418.009" + editor + { + "color" "255 232 0" + "groupid" "20796" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "20811" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1224 -836 92" + editor + { + "color" "143 240 0" + "groupid" "20810" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "20815" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/chair.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1176 -836 92" + editor + { + "color" "143 240 0" + "groupid" "20810" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 9500]" + } +} +entity +{ + "id" "20820" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/window_straight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1424 -768 192" + editor + { + "color" "194 167 0" + "groupid" "20819" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "20824" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/window_straight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1424 -640 192" + editor + { + "color" "194 167 0" + "groupid" "20819" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "20828" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/window_straight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1424 -384 192" + editor + { + "color" "194 167 0" + "groupid" "20819" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "20832" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/window_straight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1424 -512 192" + editor + { + "color" "194 167 0" + "groupid" "20819" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "20836" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/window_straight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1424 -128 192" + editor + { + "color" "194 167 0" + "groupid" "20819" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "20840" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/window_straight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1424 -256 192" + editor + { + "color" "194 167 0" + "groupid" "20819" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "20844" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "653 -48 348" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "20845" + side + { + "id" "25683" + "plane" "(652 -142 388) (652 46 388) (654 46 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25682" + "plane" "(652 46 308) (652 -142 308) (654 -142 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25681" + "plane" "(652 -142 308) (652 46 308) (652 46 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25680" + "plane" "(654 46 308) (654 -142 308) (654 -142 388)" + "material" "GLASS/HOTEL_GLASS001" + "uaxis" "[0 -1 0 125.277] 0.367188" + "vaxis" "[0 0 -1 435.2] 0.15625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25679" + "plane" "(652 46 308) (654 46 308) (654 46 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25678" + "plane" "(654 -142 308) (652 -142 308) (652 -142 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" + } +} +entity +{ + "id" "20847" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "653 -751 348" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "20848" + side + { + "id" "25689" + "plane" "(652 -860 388) (652 -642 388) (654 -642 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25688" + "plane" "(652 -642 308) (652 -860 308) (654 -860 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25687" + "plane" "(652 -860 308) (652 -642 308) (652 -642 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25686" + "plane" "(654 -642 308) (654 -860 308) (654 -860 388)" + "material" "GLASS/HOTEL_GLASS001" + "uaxis" "[0 -1 0 -483.817] 0.425781" + "vaxis" "[0 0 -1 435.2] 0.15625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25685" + "plane" "(652 -642 308) (654 -642 308) (654 -642 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25684" + "plane" "(654 -860 308) (652 -860 308) (652 -860 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10500]" + } +} +entity +{ + "id" "20850" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "727 -867 348" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "20851" + side + { + "id" "25695" + "plane" "(796 -868 388) (658 -868 388) (658 -866 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25694" + "plane" "(796 -866 308) (658 -866 308) (658 -868 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25693" + "plane" "(658 -866 308) (796 -866 308) (796 -866 388)" + "material" "GLASS/HOTEL_GLASS001" + "uaxis" "[1 0 0 -393.275] 0.269531" + "vaxis" "[0 0 -1 435.2] 0.15625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25692" + "plane" "(796 -868 308) (658 -868 308) (658 -868 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25691" + "plane" "(796 -866 308) (796 -868 308) (796 -868 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25690" + "plane" "(658 -868 308) (658 -866 308) (658 -866 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "20853" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "797 -959 348" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "20854" + side + { + "id" "25701" + "plane" "(796 -1052 388) (796 -866 388) (798 -866 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25700" + "plane" "(796 -866 308) (796 -1052 308) (798 -1052 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25699" + "plane" "(796 -1052 308) (796 -866 308) (796 -866 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25698" + "plane" "(798 -866 308) (798 -1052 308) (798 -1052 388)" + "material" "GLASS/HOTEL_GLASS001" + "uaxis" "[0 -1 0 -335.829] 0.363281" + "vaxis" "[0 0 -1 435.2] 0.15625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25697" + "plane" "(796 -866 308) (798 -866 308) (798 -866 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25696" + "plane" "(798 -1052 308) (796 -1052 308) (796 -1052 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9500]" + } +} +entity +{ + "id" "20856" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "1027 -960 348" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "20857" + side + { + "id" "25707" + "plane" "(1026 -1054 388) (1026 -866 388) (1028 -866 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25706" + "plane" "(1026 -866 308) (1026 -1054 308) (1028 -1054 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25705" + "plane" "(1026 -1054 308) (1026 -866 308) (1026 -866 388)" + "material" "GLASS/HOTEL_GLASS001" + "uaxis" "[0 1 0 310.468] 0.367188" + "vaxis" "[0 0 -1 435.2] 0.15625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25704" + "plane" "(1028 -866 308) (1028 -1054 308) (1028 -1054 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25703" + "plane" "(1026 -866 308) (1028 -866 308) (1028 -866 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25702" + "plane" "(1028 -1054 308) (1026 -1054 308) (1026 -1054 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "20859" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "1224 -867 348" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "20860" + side + { + "id" "25713" + "plane" "(1422 -868 388) (1026 -868 388) (1026 -866 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25712" + "plane" "(1422 -866 308) (1026 -866 308) (1026 -868 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25711" + "plane" "(1026 -866 308) (1422 -866 308) (1422 -866 388)" + "material" "GLASS/HOTEL_GLASS001" + "uaxis" "[1 0 0 -288] 0.25" + "vaxis" "[0 0 -1 208] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25710" + "plane" "(1422 -868 308) (1026 -868 308) (1026 -868 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25709" + "plane" "(1422 -866 308) (1422 -868 308) (1422 -868 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25708" + "plane" "(1026 -868 308) (1026 -866 308) (1026 -866 388)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "20862" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/windowset_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1040 -1056 304" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20866" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/window_straight.mdl" + "renderamt" "255" + "rendercolor" "103 103 103" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1024 800 96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -16268]" + } +} +entity +{ + "id" "20870" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/window_straight.mdl" + "renderamt" "255" + "rendercolor" "103 103 103" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "880 800 96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -16268]" + } +} +entity +{ + "id" "20874" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/window_straight.mdl" + "renderamt" "255" + "rendercolor" "103 103 103" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "704 800 96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -16268]" + } +} +entity +{ + "id" "20878" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/window_straight.mdl" + "renderamt" "255" + "rendercolor" "103 103 103" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "560 800 96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -16268]" + } +} +entity +{ + "id" "20882" + "classname" "func_detail" + solid + { + "id" "20883" + side + { + "id" "25719" + "plane" "(1080 424 96) (1032 472 96) (1024 464 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25718" + "plane" "(1072 416 152) (1072 416 96) (1024 464 96)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25717" + "plane" "(1032 472 104) (1032 472 96) (1080 424 96)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25716" + "plane" "(1080 424 152) (1080 424 96) (1072 416 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25715" + "plane" "(1024 464 104) (1024 464 96) (1032 472 96)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0.707107 0.707107 0 -176.699] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25714" + "plane" "(1072 416 152) (1024 464 104) (1032 472 104)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[0.707107 -0.707107 0 -1119.84] 0.125" + "vaxis" "[-0.707107 -0.707107 0 225.398] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20884" + side + { + "id" "25725" + "plane" "(1168 512 96) (1120 560 96) (1112 552 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25724" + "plane" "(1160 504 152) (1160 504 96) (1112 552 96)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25723" + "plane" "(1120 560 104) (1120 560 96) (1168 512 96)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0.707107 -0.707107 0 797.334] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25722" + "plane" "(1168 512 152) (1168 512 96) (1160 504 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25721" + "plane" "(1112 552 104) (1112 552 96) (1120 560 96)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0.707107 0.707107 0 -322.503] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25720" + "plane" "(1160 504 152) (1112 552 104) (1120 560 104)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[0.707107 -0.707107 0 -1119.84] 0.125" + "vaxis" "[-0.707107 -0.707107 0 287.516] 0.125" + "rotation" "-45" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20885" + side + { + "id" "25732" + "plane" "(1216 512 96) (1168 512 96) (1160 504 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25731" + "plane" "(1216 496 152) (1216 496 96) (1168 496 96)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[-1 0 0 640] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25730" + "plane" "(1168 512 96) (1216 512 96) (1216 512 152)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[1 0 0 -995.217] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25729" + "plane" "(1216 512 152) (1216 512 96) (1216 496 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25728" + "plane" "(1168 496 152) (1168 496 96) (1160 504 96)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25727" + "plane" "(1216 496 152) (1168 496 152) (1160 504 152)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[-1 0 0 -1120] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25726" + "plane" "(1160 504 152) (1160 504 96) (1168 512 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20886" + side + { + "id" "25739" + "plane" "(1072 408 96) (1072 336 96) (1088 336 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25738" + "plane" "(1072 336 192) (1072 336 96) (1072 408 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25737" + "plane" "(1088 408 152) (1088 408 96) (1088 336 96)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -899.005] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25736" + "plane" "(1088 336 192) (1088 336 96) (1072 336 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25735" + "plane" "(1072 408 152) (1072 408 96) (1088 408 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25734" + "plane" "(1072 348 192) (1072 408 152) (1088 408 152)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[0 -0.832047 0.554698 -19.0054] 0.125" + "vaxis" "[-1 0 0 384] 0.125" + "rotation" "-45" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25733" + "plane" "(1072 336 192) (1072 348 192) (1088 348 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[0 -1 0 -747.404] 0.125" + "vaxis" "[-1 0 0 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20887" + side + { + "id" "25746" + "plane" "(1072 416 96) (1072 408 96) (1088 408 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25745" + "plane" "(1072 408 152) (1072 408 96) (1072 416 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.5" + "vaxis" "[0 0 -1 47] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25744" + "plane" "(1088 416 96) (1088 408 96) (1088 408 152)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -899.005] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25743" + "plane" "(1088 408 152) (1088 408 96) (1072 408 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25742" + "plane" "(1072 416 152) (1072 416 96) (1080 424 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25741" + "plane" "(1072 408 152) (1072 416 152) (1080 424 152)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[0.707107 -0.707107 0 -1119.42] 0.125" + "vaxis" "[-0.707107 -0.707107 0 225.398] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25740" + "plane" "(1080 424 152) (1080 424 96) (1088 416 96)" + "material" "BRICK/HR_BRICK/BRICK_G" + "uaxis" "[0 1 0 -896] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20888" + side + { + "id" "25752" + "plane" "(1064 440 120) (1056 448 120) (1136 528 120)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[0.5 0.5 -0.707107 902.823] 0.125" + "vaxis" "[-0.707107 0.707107 0 506.348] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25751" + "plane" "(1144 520 96) (1136 528 96) (1056 448 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25750" + "plane" "(1136 528 96) (1144 520 96) (1144 520 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25749" + "plane" "(1064 440 96) (1056 448 96) (1056 448 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25748" + "plane" "(1144 520 96) (1064 440 96) (1064 440 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25747" + "plane" "(1056 448 96) (1136 528 96) (1136 528 120)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 -160] 0.125" + "vaxis" "[0 0 -1 74.98] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20889" + side + { + "id" "25758" + "plane" "(1056 448 112) (1048 456 112) (1128 536 112)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[0.5 0.5 -0.707107 857.568] 0.125" + "vaxis" "[-0.707107 0.707107 0 58.3479] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25757" + "plane" "(1136 528 96) (1128 536 96) (1048 456 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25756" + "plane" "(1128 536 96) (1136 528 96) (1136 528 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25755" + "plane" "(1056 448 96) (1048 456 96) (1048 456 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25754" + "plane" "(1136 528 96) (1056 448 96) (1056 448 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25753" + "plane" "(1048 456 96) (1128 536 96) (1128 536 112)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 -96] 0.125" + "vaxis" "[0 0 -1 165.49] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20890" + side + { + "id" "25764" + "plane" "(1048 456 104) (1040 464 104) (1120 544 104)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[0.5 0.5 -0.707107 812.313] 0.125" + "vaxis" "[-0.707107 0.707107 0 122.348] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25763" + "plane" "(1128 536 96) (1120 544 96) (1040 464 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25762" + "plane" "(1120 544 96) (1128 536 96) (1128 536 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 40] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25761" + "plane" "(1048 456 96) (1040 464 96) (1040 464 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25760" + "plane" "(1128 536 96) (1048 456 96) (1048 456 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25759" + "plane" "(1040 464 96) (1120 544 96) (1120 544 104)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20891" + side + { + "id" "25770" + "plane" "(1072 432 128) (1064 440 128) (1144 520 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[0.5 0.5 -0.707107 948.078] 0.125" + "vaxis" "[-0.707107 0.707107 0 442.348] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25769" + "plane" "(1152 512 96) (1144 520 96) (1064 440 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25768" + "plane" "(1144 520 96) (1152 512 96) (1152 512 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25767" + "plane" "(1072 432 96) (1064 440 96) (1064 440 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25766" + "plane" "(1152 512 96) (1072 432 96) (1072 432 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25765" + "plane" "(1064 440 96) (1144 520 96) (1144 520 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 -224] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20892" + side + { + "id" "25776" + "plane" "(1088 416 144) (1080 424 144) (1160 504 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[0.5 0.5 -0.707107 1038.59] 0.125" + "vaxis" "[-0.707107 0.707107 0 314.348] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25775" + "plane" "(1168 496 96) (1160 504 96) (1080 424 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25774" + "plane" "(1160 504 96) (1168 496 96) (1168 496 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25773" + "plane" "(1088 416 96) (1080 424 96) (1080 424 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25772" + "plane" "(1168 496 96) (1088 416 96) (1088 416 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25771" + "plane" "(1080 424 96) (1160 504 96) (1160 504 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 315.452] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20893" + side + { + "id" "25782" + "plane" "(1080 424 136) (1072 432 136) (1152 512 136)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[0.5 0.5 -0.707107 993.332] 0.125" + "vaxis" "[-0.707107 0.707107 0 378.348] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25781" + "plane" "(1160 504 96) (1152 512 96) (1072 432 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25780" + "plane" "(1152 512 96) (1160 504 96) (1160 504 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25779" + "plane" "(1080 424 96) (1072 432 96) (1072 432 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25778" + "plane" "(1160 504 96) (1080 424 96) (1080 424 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25777" + "plane" "(1072 432 96) (1152 512 96) (1152 512 136)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 -288] 0.125" + "vaxis" "[0 0 -1 405.961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20894" + side + { + "id" "25789" + "plane" "(1088 408 144) (1088 416 144) (1168 496 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0.707107 -0.707107 0 -233] 0.125" + "vaxis" "[0.5 0.5 -0.707107 -48.9612] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25788" + "plane" "(1088 416 96) (1088 408 96) (1216 408 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25787" + "plane" "(1216 496 96) (1216 408 96) (1216 408 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25786" + "plane" "(1088 408 96) (1088 416 96) (1088 416 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25785" + "plane" "(1216 408 96) (1088 408 96) (1088 408 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25784" + "plane" "(1088 416 96) (1168 496 96) (1168 496 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25783" + "plane" "(1168 496 96) (1216 496 96) (1216 496 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20895" + side + { + "id" "25795" + "plane" "(1088 396 152) (1088 408 152) (1216 408 152)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 1 0 -69] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25794" + "plane" "(1088 408 96) (1088 396 96) (1216 396 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25793" + "plane" "(1216 408 96) (1216 396 96) (1216 396 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25792" + "plane" "(1088 396 96) (1088 408 96) (1088 408 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25791" + "plane" "(1216 396 96) (1088 396 96) (1088 396 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25790" + "plane" "(1088 408 96) (1216 408 96) (1216 408 152)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 315] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20896" + side + { + "id" "25801" + "plane" "(1088 384 160) (1088 396 160) (1216 396 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 1 0 -133] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25800" + "plane" "(1088 396 96) (1088 384 96) (1216 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25799" + "plane" "(1216 396 96) (1216 384 96) (1216 384 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25798" + "plane" "(1088 384 96) (1088 396 96) (1088 396 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25797" + "plane" "(1216 384 96) (1088 384 96) (1088 384 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25796" + "plane" "(1088 396 96) (1216 396 96) (1216 396 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20897" + side + { + "id" "25807" + "plane" "(1088 372 168) (1088 384 168) (1216 384 168)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 1 0 -197] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25806" + "plane" "(1088 384 96) (1088 372 96) (1216 372 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25805" + "plane" "(1216 384 96) (1216 372 96) (1216 372 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25804" + "plane" "(1088 372 96) (1088 384 96) (1088 384 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25803" + "plane" "(1216 372 96) (1088 372 96) (1088 372 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25802" + "plane" "(1088 384 96) (1216 384 96) (1216 384 168)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 123] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20898" + side + { + "id" "25813" + "plane" "(1088 360 176) (1088 372 176) (1216 372 176)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 1 0 -261] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25812" + "plane" "(1088 372 96) (1088 360 96) (1216 360 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25811" + "plane" "(1216 372 96) (1216 360 96) (1216 360 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25810" + "plane" "(1088 360 96) (1088 372 96) (1088 372 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25809" + "plane" "(1216 360 96) (1088 360 96) (1088 360 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25808" + "plane" "(1088 372 96) (1216 372 96) (1216 372 176)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 27] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20899" + side + { + "id" "25819" + "plane" "(1088 348 184) (1088 360 184) (1216 360 184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 1 0 -325] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25818" + "plane" "(1088 360 96) (1088 348 96) (1216 348 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25817" + "plane" "(1216 360 96) (1216 348 96) (1216 348 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25816" + "plane" "(1088 348 96) (1088 360 96) (1088 360 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25815" + "plane" "(1216 348 96) (1088 348 96) (1088 348 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25814" + "plane" "(1088 360 96) (1216 360 96) (1216 360 184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 443] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20900" + side + { + "id" "25825" + "plane" "(1088 336 192) (1088 348 192) (1216 348 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 1 0 -389] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25824" + "plane" "(1088 348 96) (1088 336 96) (1216 336 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25823" + "plane" "(1216 348 96) (1216 336 96) (1216 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25822" + "plane" "(1088 336 96) (1088 348 96) (1088 348 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25821" + "plane" "(1216 336 96) (1088 336 96) (1088 336 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25820" + "plane" "(1088 348 96) (1216 348 96) (1216 348 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 347] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupid" "22" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 14500]" + } +} +entity +{ + "id" "20901" + "classname" "func_detail" + solid + { + "id" "20902" + side + { + "id" "25831" + "plane" "(656 -144 304) (656 -136 296) (648 -136 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25830" + "plane" "(648 48 304) (648 40 296) (656 40 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25829" + "plane" "(648 -144 304) (648 -136 296) (648 40 296)" + "material" "METAL/DRTRIME" + "uaxis" "[0 0 1 -26.6666] 0.3" + "vaxis" "[0 1 0 -157.333] 0.3" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25828" + "plane" "(656 48 304) (656 40 296) (656 -136 296)" + "material" "METAL/DRTRIME" + "uaxis" "[0 0 -1 45.3333] 0.3" + "vaxis" "[0 1 0 -157.333] 0.3" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25827" + "plane" "(656 40 296) (648 40 296) (648 -136 296)" + "material" "METAL/DRTRIME" + "uaxis" "[-1 0 0 29.3332] 0.3" + "vaxis" "[0 1 0 -157.333] 0.3" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25826" + "plane" "(656 -144 304) (648 -144 304) (648 48 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20903" + side + { + "id" "25837" + "plane" "(656 48 304) (656 40 296) (648 40 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25836" + "plane" "(648 48 128) (648 40 128) (656 40 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25835" + "plane" "(648 48 304) (648 40 296) (648 40 128)" + "material" "METAL/DRTRIME" + "uaxis" "[0 1 0 -5.33333] 0.3" + "vaxis" "[0 0 -1 450.666] 0.3" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25834" + "plane" "(656 48 128) (656 40 128) (656 40 296)" + "material" "METAL/DRTRIME" + "uaxis" "[0 -1 0 -40] 0.3" + "vaxis" "[0 0 -1 450.666] 0.3" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25833" + "plane" "(656 40 128) (648 40 128) (648 40 296)" + "material" "METAL/DRTRIME" + "uaxis" "[-1 0 0 29.3333] 0.3" + "vaxis" "[0 0 -1 450.666] 0.3" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25832" + "plane" "(648 48 128) (656 48 128) (656 48 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20904" + side + { + "id" "25843" + "plane" "(648 -144 304) (648 -136 296) (656 -136 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25842" + "plane" "(648 -136 128) (648 -144 128) (656 -144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25841" + "plane" "(648 -144 128) (648 -136 128) (648 -136 296)" + "material" "METAL/DRTRIME" + "uaxis" "[0 -1 0 -5.33331] 0.3" + "vaxis" "[0 0 1 -61.3333] 0.3" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25840" + "plane" "(656 -144 304) (656 -136 296) (656 -136 128)" + "material" "METAL/DRTRIME" + "uaxis" "[0 1 0 -40] 0.3" + "vaxis" "[0 0 1 -61.3333] 0.3" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25839" + "plane" "(648 -136 128) (656 -136 128) (656 -136 296)" + "material" "METAL/DRTRIME" + "uaxis" "[-1 0 0 29.3332] 0.3" + "vaxis" "[0 0 1 -61.3333] 0.3" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25838" + "plane" "(656 -144 128) (648 -144 128) (648 -144 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "20905" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/longblind_nohit.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1436 -128 196" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15000]" + } +} +entity +{ + "id" "20909" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/longblind_nohit.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1436 -640 220" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15000]" + } +} +entity +{ + "id" "20913" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/longblind_nohit.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1436 -768 196" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15000]" + } +} +entity +{ + "id" "20917" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/buildings/support_bars_dec.mdl" + "renderamt" "255" + "rendercolor" "177 177 177" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "696 480 352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "20921" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1088 306 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "20925" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1056 466 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "20929" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_curve.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1056 466 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "20933" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "960 466 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "20937" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "832 466 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "20941" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "576 466 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "20945" + "classname" "prop_static" + "angles" "90 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/wallpipe.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1016 344 160" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "20949" + "classname" "prop_static" + "angles" "90 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/wallpipe.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1016 344 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "20953" + "classname" "prop_static" + "angles" "90 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_longer_one.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1016 360 184" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "20957" + "classname" "prop_static" + "angles" "-90 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_curve.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1016 360 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "20961" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1016 424 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "20965" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "992 456 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "20969" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_curve.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "984 456 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "20973" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "832 456 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "20977" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "576 456 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "20981" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/pipe_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1088 480 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "20985" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/pipe_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "832 480 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "20989" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/pipe_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "576 480 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "12410" + "classname" "info_deathmatch_spawn" + "angles" "0 0 0" + "enabled" "1" + "origin" "-150.546 -2787.83 65" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -6268]" + } +} +entity +{ + "id" "12412" + "classname" "info_deathmatch_spawn" + "angles" "0 0 0" + "enabled" "1" + "origin" "-618.964 -2584.04 65" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5768]" + } +} +entity +{ + "id" "12414" + "classname" "info_deathmatch_spawn" + "angles" "0 0 0" + "enabled" "1" + "origin" "-33.2822 -2384.66 33" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "12416" + "classname" "info_deathmatch_spawn" + "angles" "0 0 0" + "enabled" "1" + "origin" "-247.059 -2303.85 33" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -4768]" + } +} +entity +{ + "id" "12545" + "classname" "info_deathmatch_spawn" + "angles" "0 0 0" + "enabled" "1" + "origin" "-448 -2125 192" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -4768]" + } +} +entity +{ + "id" "13076" + "classname" "info_player_terrorist" + "angles" "0 0 0" + "enabled" "1" + "origin" "-603.17 -2651.43 65" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -6768]" + } +} +entity +{ + "id" "13212" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "374.5 -2365 32" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/gravel01" + "sides" "" + "StartU" "0" + "StartV" "1" + "uv0" "-67.5 -98.9999 0" + "uv1" "-67.5 98.9999 0" + "uv2" "67.5 98.9999 0" + "uv3" "67.5 -98.9999 0" + "origin" "374.5 -2365 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15768]" + } +} +entity +{ + "id" "13218" + "classname" "prop_static" + "angles" "0 1.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/props/packaging/plasticwrap_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "160 -1560 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "13222" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/props/packaging/plasticwrap_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "160 -1712 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "13226" + "classname" "prop_static" + "angles" "0 243.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/props/packaging/box_cube.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "176 -1576 96" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13230" + "classname" "prop_static" + "angles" "0 183 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/props/packaging/box_large.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "176 -1560 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13234" + "classname" "prop_static" + "angles" "0 295.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/props/packaging/box_cube.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "216 -1608 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13238" + "classname" "prop_static" + "angles" "0 175.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/props/packaging/box_tall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "176 -1656 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13242" + "classname" "prop_static" + "angles" "0 180.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/props/packaging/box_large.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "176 -1712 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13246" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/garagedoor_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "320 -2040 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "13250" + "classname" "light" + "_light" "255 255 255 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "256 -1536 176" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "13255" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/props/packaging/box_large.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "444 -1512 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13259" + "classname" "prop_static" + "angles" "0 180.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/props/packaging/box_large.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "476 -1512 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13263" + "classname" "prop_static" + "angles" "0 115.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/props/packaging/box_cube.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "472 -1604 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13267" + "classname" "prop_static" + "angles" "0 115.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/props/packaging/box_flaps.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "468 -1512 96" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13271" + "classname" "prop_static" + "angles" "0 115.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/props/packaging/box_flaps.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "468 -1456 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13275" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/props/packaging/plasticwrap_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "460 -1512 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "13279" + "classname" "prop_static" + "angles" "0 0.499997 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/props/packaging/box_large.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "444 -1512 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13283" + "classname" "prop_static" + "angles" "0 355.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/props/packaging/box_tall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "476 -1564 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13287" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/garagedoor.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "504 -1688 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "13291" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/garagedoor.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "504 -1688 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "13295" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/overlays/stain1.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "504 -1686 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13299" + "classname" "light" + "_light" "255 255 255 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "256 -1792 176" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "13304" + "classname" "light" + "_light" "255 255 255 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "384 -1792 176" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "13309" + "classname" "light" + "_light" "255 255 255 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "384 -1536 176" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "13314" + "classname" "prop_static" + "angles" "0 179 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_cover_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "494 -1834 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "13318" + "classname" "prop_static" + "angles" "0 4.00001 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_gate_003a_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "506 -1908 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "13322" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_gate_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "504 -1904 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "13326" + "classname" "prop_static" + "angles" "0 354 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_gate_001_64_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "504 -1840 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "13330" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "320 -1728 32" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_7" + "sides" "10011" + "StartU" "0" + "StartV" "1" + "uv0" "-126.149 -171.11 0" + "uv1" "-127.505 174.076 0" + "uv2" "127.4 171.93 0" + "uv3" "126.254 -174.896 0" + "origin" "320 -1728 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "13336" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "416 -1304 248" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "13340" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "416 -1560 248" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "13344" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "416 -1816 248" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "13348" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "256 -1976 248" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "13352" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_curve.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "416 -1944 248" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "13356" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/solution2/garage/vent_64_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "224 -1312 264.696" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13360" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/solution2/garage/vent_64_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "464 -1440 264.696" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13364" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/solution2/garage/vent_64_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "464 -1776 264.696" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13368" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/solution2/garage/vent_64_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "400 -1360 264.696" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13372" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/solution2/garage/vent_64_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "400 -1616 264.696" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13376" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/solution2/garage/vent_64_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "400 -1488 264.696" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13380" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/solution2/garage/vent_64_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "400 -1744 264.696" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13384" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/solution2/garage/vent_64_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "464 -1968 264.696" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13388" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/solution2/garage/vent_64_corner_left.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "400 -1968 264.696" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13392" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/solution2/garage/vent_64_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "400 -1872 264.696" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13396" + "classname" "func_detail" + solid + { + "id" "13397" + side + { + "id" "9848" + "plane" "(640 -2078 288) (640 -2048 288) (704 -2048 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9847" + "plane" "(640 -2048 32) (640 -2078 32) (642 -2080 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9846" + "plane" "(640 -2078 32) (640 -2048 32) (640 -2048 288)" + "material" "SOLUTION2/GARAGE/DARKWALL" + "uaxis" "[0 -1 0 -128] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9845" + "plane" "(704 -2048 32) (704 -2080 32) (704 -2080 288)" + "material" "SOLUTION2/OFFICE/PANEL_BLACK" + "uaxis" "[0 1 0 576] 0.5" + "vaxis" "[0 0 -1 192] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9844" + "plane" "(640 -2048 32) (704 -2048 32) (704 -2048 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9843" + "plane" "(704 -2080 32) (642 -2080 32) (642 -2080 288)" + "material" "SOLUTION2/GARAGE/DARKWALL" + "uaxis" "[1 0 0 -512] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9842" + "plane" "(642 -2080 32) (640 -2078 32) (640 -2078 288)" + "material" "SOLUTION2/GARAGE/DARKWALL" + "uaxis" "[0.707107 -0.707107 0 496.334] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13398" + side + { + "id" "9856" + "plane" "(448 -2078 288) (448 -2048 288) (512 -2048 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9855" + "plane" "(448 -2048 32) (448 -2078 32) (450 -2080 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9854" + "plane" "(448 -2078 32) (448 -2048 32) (448 -2048 288)" + "material" "SOLUTION2/GARAGE/DARKWALL" + "uaxis" "[0 -1 0 -896] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9853" + "plane" "(512 -2048 32) (512 -2078 32) (512 -2078 288)" + "material" "SOLUTION2/GARAGE/DARKWALL" + "uaxis" "[0 1 0 640] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9852" + "plane" "(448 -2048 32) (512 -2048 32) (512 -2048 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9851" + "plane" "(510 -2080 32) (450 -2080 32) (450 -2080 288)" + "material" "SOLUTION2/GARAGE/DARKWALL" + "uaxis" "[1 0 0 512] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9850" + "plane" "(512 -2078 32) (510 -2080 32) (510 -2080 288)" + "material" "SOLUTION2/GARAGE/DARKWALL" + "uaxis" "[0.707107 0.707107 0 -170.682] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9849" + "plane" "(450 -2080 32) (448 -2078 32) (448 -2078 288)" + "material" "SOLUTION2/GARAGE/DARKWALL" + "uaxis" "[0.707107 -0.707107 0 271.391] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13399" + side + { + "id" "9863" + "plane" "(128 -2080 288) (128 -2048 288) (192 -2048 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9862" + "plane" "(128 -2048 32) (128 -2080 32) (190 -2080 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9861" + "plane" "(128 -2080 32) (128 -2048 32) (128 -2048 288)" + "material" "SOLUTION2/OFFICE/PANEL_BLACK" + "uaxis" "[0 1 0 896] 0.5" + "vaxis" "[0 0 -1 192] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9860" + "plane" "(192 -2048 32) (192 -2078 32) (192 -2078 288)" + "material" "SOLUTION2/GARAGE/DARKWALL" + "uaxis" "[0 1 0 384] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9859" + "plane" "(128 -2048 32) (192 -2048 32) (192 -2048 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9858" + "plane" "(190 -2080 32) (128 -2080 32) (128 -2080 288)" + "material" "SOLUTION2/GARAGE/DARKWALL" + "uaxis" "[1 0 0 -512] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9857" + "plane" "(192 -2078 32) (190 -2080 32) (190 -2080 288)" + "material" "SOLUTION2/GARAGE/DARKWALL" + "uaxis" "[0.707107 0.707107 0 -545.585] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "13400" + "classname" "func_detail" + solid + { + "id" "13401" + side + { + "id" "9869" + "plane" "(192 -2048 208) (192 -2032 208) (200 -2032 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9868" + "plane" "(192 -2032 48) (192 -2048 48) (200 -2048 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9867" + "plane" "(192 -2048 48) (192 -2032 48) (192 -2032 208)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 320] 0.5" + "vaxis" "[0 0 -1 192] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9866" + "plane" "(200 -2032 48) (200 -2048 48) (200 -2048 208)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 -1 0 -896] 0.25" + "vaxis" "[0 0 -1 832] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9865" + "plane" "(192 -2032 48) (200 -2032 48) (200 -2032 208)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 319.999] 0.25" + "vaxis" "[0 0 -1 832] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9864" + "plane" "(200 -2048 48) (192 -2048 48) (192 -2048 208)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[-1 0 0 896] 0.25" + "vaxis" "[0 0 -1 832] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13402" + side + { + "id" "9875" + "plane" "(192 -2048 48) (192 -2032 48) (200 -2032 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9874" + "plane" "(192 -2032 32) (192 -2048 32) (200 -2048 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9873" + "plane" "(192 -2048 32) (192 -2032 32) (192 -2032 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.5" + "vaxis" "[0 0 -1 32] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9872" + "plane" "(200 -2032 32) (200 -2048 32) (200 -2048 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[0 -1 0 -763.998] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9871" + "plane" "(192 -2032 32) (200 -2032 32) (200 -2032 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9870" + "plane" "(200 -2048 32) (192 -2048 32) (192 -2048 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[-1 0 0 835.998] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13403" + side + { + "id" "9881" + "plane" "(192 -2048 240) (192 -2032 240) (448 -2032 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9880" + "plane" "(192 -2032 208) (192 -2048 208) (448 -2048 208)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 -1 0 -896] 0.25" + "vaxis" "[-1 0 0 800] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9879" + "plane" "(192 -2048 208) (192 -2032 208) (192 -2032 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9878" + "plane" "(448 -2032 208) (448 -2048 208) (448 -2048 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9877" + "plane" "(192 -2032 208) (448 -2032 208) (448 -2032 240)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[1 0 0 -768] 0.25" + "vaxis" "[0 0 -1 832] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9876" + "plane" "(448 -2048 208) (192 -2048 208) (192 -2048 240)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[-1 0 0 896] 0.25" + "vaxis" "[0 0 -1 832] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13404" + side + { + "id" "9887" + "plane" "(192 -2048 288) (192 -2032 288) (448 -2032 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9886" + "plane" "(192 -2032 240) (192 -2048 240) (448 -2048 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9885" + "plane" "(192 -2048 240) (192 -2032 240) (192 -2032 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9884" + "plane" "(448 -2032 240) (448 -2048 240) (448 -2048 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9883" + "plane" "(192 -2032 240) (448 -2032 240) (448 -2032 288)" + "material" "SOLUTION2/OUTDOOR/PARKINGCRETE" + "uaxis" "[1 0 0 -768] 0.25" + "vaxis" "[0 0 -1 960] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9882" + "plane" "(448 -2048 240) (192 -2048 240) (192 -2048 288)" + "material" "DEV/REFLECTIVITY_20" + "uaxis" "[-1 0 0 -460] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13405" + side + { + "id" "9893" + "plane" "(448 -2032 208) (448 -2048 208) (440 -2048 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9892" + "plane" "(448 -2048 48) (448 -2032 48) (440 -2032 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9891" + "plane" "(448 -2032 48) (448 -2048 48) (448 -2048 208)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 -160] 0.5" + "vaxis" "[0 0 -1 192] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9890" + "plane" "(440 -2048 48) (440 -2032 48) (440 -2032 208)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[0 -1 0 -896] 0.25" + "vaxis" "[0 0 -1 832] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9889" + "plane" "(448 -2048 48) (440 -2048 48) (440 -2048 208)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[-1 0 0 896] 0.25" + "vaxis" "[0 0 -1 832] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9888" + "plane" "(440 -2032 48) (448 -2032 48) (448 -2032 208)" + "material" "SOLUTION2/GARAGE/POKEWALL" + "uaxis" "[-1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13406" + side + { + "id" "9899" + "plane" "(448 -2032 48) (448 -2048 48) (440 -2048 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9898" + "plane" "(448 -2048 32) (448 -2032 32) (440 -2032 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9897" + "plane" "(448 -2032 32) (448 -2048 32) (448 -2048 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.5" + "vaxis" "[0 0 -1 32] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9896" + "plane" "(440 -2048 32) (440 -2032 32) (440 -2032 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[0 1 0 836.002] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9895" + "plane" "(448 -2048 32) (440 -2048 32) (440 -2048 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[-1 0 0 -699.996] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "9894" + "plane" "(440 -2032 32) (448 -2032 32) (448 -2032 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIR_001" + "uaxis" "[1 0 0 -571.994] 0.125" + "vaxis" "[0 0 -1 384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "247 248 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "13407" + "classname" "prop_static" + "angles" "90 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_longer_one.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "492 -1374 158" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "13411" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "160 -1748 32" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "solution2/overlays/packingpeanuts" + "sides" "10011 10077" + "StartU" "0" + "StartV" "1" + "uv0" "-85.121 -92.446 0" + "uv1" "-85.121 92.446 0" + "uv2" "85.121 92.446 0" + "uv3" "85.121 -92.446 0" + "origin" "160 -1748 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 500]" + } +} +entity +{ + "id" "13417" + "classname" "info_overlay" + "angles" "0 302.092 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "192 -1660 32" + "BasisU" "0.5 -0.866025 0" + "BasisV" "0.866025 0.5 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "solution2/overlays/packingpeanuts" + "sides" "10011 10077 10006 10010 10009 10008 10007" + "StartU" "0" + "StartV" "1" + "uv0" "-92.962 -95.4334 0" + "uv1" "-86.5031 88.8792 0" + "uv2" "92.962 95.4334 0" + "uv3" "86.5031 -88.8792 0" + "origin" "192 -1660 32" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 0]" + } +} +entity +{ + "id" "13423" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/ceilingtile.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "312 -1668 288" + editor + { + "color" "247 248 0" + "groupid" "13874" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -7768]" + } +} +entity +{ + "id" "13460" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/solution2/garage/vent_64to128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "224 -1824 256.696" + editor + { + "color" "247 248 0" + "groupid" "13459" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13464" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/solution2/garage/vent_vent.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "224 -1696 256.696" + editor + { + "color" "247 248 0" + "groupid" "13459" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13468" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/solution2/garage/vent_128_corner_right.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "224 -1952 256.696" + editor + { + "color" "247 248 0" + "groupid" "13459" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13472" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/solution2/garage/vent_128_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "144 -1952 256.696" + editor + { + "color" "247 248 0" + "groupid" "13459" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13476" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/solution2/garage/vent_64_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "224 -1568 256.696" + editor + { + "color" "247 248 0" + "groupid" "13459" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13480" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/solution2/garage/vent_64_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "224 -1440 256.696" + editor + { + "color" "247 248 0" + "groupid" "13459" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13491" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "328 -1392 280" + editor + { + "color" "247 248 0" + "groupid" "13490" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "13495" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "328 -1648 280" + editor + { + "color" "247 248 0" + "groupid" "13490" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "13499" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "328 -1904 280" + editor + { + "color" "247 248 0" + "groupid" "13490" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "13504" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "248 -1648 256" + editor + { + "color" "247 248 0" + "groupid" "13503" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "13508" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "376 -1648 256" + editor + { + "color" "247 248 0" + "groupid" "13503" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "13513" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "376 -1632 256" + editor + { + "color" "247 248 0" + "groupid" "13512" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "13517" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "248 -1632 256" + editor + { + "color" "247 248 0" + "groupid" "13512" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "13522" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "384 -1992 248" + editor + { + "color" "247 248 0" + "groupid" "13521" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "13526" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/smallpipe_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "256 -1992 248" + editor + { + "color" "247 248 0" + "groupid" "13521" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "13531" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/pipe_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "352 -1648 272" + editor + { + "color" "247 248 0" + "groupid" "13530" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "13535" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/pipe_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "352 -1904 272" + editor + { + "color" "247 248 0" + "groupid" "13530" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "13539" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/solution2/garage/pipe_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "352 -1392 272" + editor + { + "color" "247 248 0" + "groupid" "13530" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "9735" + "classname" "env_wind" + "angles" "0 0 0" + "gustdirchange" "20" + "gustduration" "5" + "maxgust" "250" + "maxgustdelay" "20" + "maxwind" "50" + "mingust" "100" + "mingustdelay" "10" + "minwind" "20" + "origin" "-128 -2336 320" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "3036" + "classname" "color_correction" + "fadeInDuration" "0.0" + "fadeOutDuration" "0.0" + "filename" "materials/correction/solution4.raw" + "maxfalloff" "5000.0" + "maxweight" "1.0" + "minfalloff" "0.0" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "-64 -2340.13 256" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "3040" + "classname" "env_tonemap_controller" + "targetname" "tonemap_global" + "origin" "-128 -2340.13 256" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[-16268 6500]" + } +} +entity +{ + "id" "3042" + "classname" "light_environment" + "_ambient" "91 115 140 600" + "_ambientHDR" "-1 -1 -1 1" + "_AmbientScaleHDR" "1" + "_light" "254 243 224 640" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "angles" "0 218 0" + "pitch" "-63" + "SunSpreadAngle" "5" + "origin" "-128 -2340.13 288" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "3044" + "classname" "logic_auto" + "spawnflags" "1" + connections + { + "OnMapSpawn" "tonemap_globalSetAutoExposureMin00-1" + "OnMapSpawn" "tonemap_globalSetAutoExposureMax1.20-1" + "OnMapSpawn" "tonemap_globalSetBloomScale.80-1" + "OnMapSpawn" "tonemap_globalSetTonemapRate.10-1" + "OnMapSpawn" "skybox_tanktrainStartForward0-1" + } + "origin" "-64 -2340.13 288" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[-16268 7000]" + } +} +entity +{ + "id" "3046" + "classname" "shadow_control" + "angles" "-72 65 0" + "color" "198 219 236" + "disableallshadows" "0" + "distance" "16" + "origin" "-64 -2340.13 320" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "3048" + "classname" "env_fog_controller" + "angles" "0 0 0" + "farz" "-1" + "fogblend" "0" + "fogcolor" "255 251 217" + "fogcolor2" "252 207 141" + "fogdir" "1 0 0" + "fogenable" "1" + "fogend" "8500" + "foglerptime" "0" + "fogmaxdensity" "0.3" + "fogstart" "900" + "spawnflags" "1" + "use_angles" "0" + "ZoomFogScale" "1" + "origin" "0 -2340.13 288" + editor + { + "color" "255 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 11000]" + } +} +entity +{ + "id" "3050" + "classname" "postprocess_controller" + "depthblurfocaldistance" "0" + "depthblurstrength" "0" + "fadetime" "2" + "fadetoblackstrength" "0" + "filmgrainstrength" "0" + "localcontrastedgestrength" "0" + "localcontraststrength" "0" + "screenblurstrength" "0" + "spawnflags" "0" + "vignetteblurstrength" "0" + "vignetteend" "1.1" + "vignettestart" "0.8" + "origin" "0 -2340.13 256" + editor + { + "color" "255 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" + cordon + { + "name" "cordon" + "active" "1" + box + { + "mins" "(-2704 248 -4565.04)" + "maxs" "(400 2746 4565.04)" + } + } + cordon + { + "name" "cordon" + "active" "1" + box + { + "mins" "(-1904.41 -4136 -3804.2)" + "maxs" "(1576 -1903.59 3804.2)" + } + } +} diff --git a/MCDV/buyzone-bombtargets.png b/MCDV/buyzone-bombtargets.png new file mode 100644 index 0000000000000000000000000000000000000000..ad4c654ebd0b4b6a57e700949d8417ca4c974b82 GIT binary patch literal 30558 zcmeI*Jq`h35C-5OOJtL+G_svS?+W<*Y_mbsB5?x^okZsxdM9uQg@ZVPJ%R%~&CJwq zW}bHL>v~z_WgZblwMyHFtQoWDwVU?6zCID>QI#gU%l8 zAqh!HLK2dYgd`*(2}wvo5|WUFBqSjTNk~Exl8}TXBq0e&NJ0{lkc1>8Aqh!HLK2dY zgd`*(2}wvo5|WUFBqSjTNk~Exl8}TXBq0e&NJ0{lkc1>8Aqh!HLK2dYgd`*(2}wvo z5|WUFBqSjTNk~Exl8}TXBq0e&NJ0{lkc1>8Aqh!HLK2dYgd`*(2}wvo5|Z#w3DYd1 U`;OLWvFSH|bEBHq={Y^ze!aHq)$ literal 0 HcmV?d00001 diff --git a/MCDV/convexPolytope.h b/MCDV/convexPolytope.h new file mode 100644 index 0000000..4479382 --- /dev/null +++ b/MCDV/convexPolytope.h @@ -0,0 +1,280 @@ +#pragma once +#include +#include +#include + +#include +#include +#include + +#include +#include + +#include "plane.h" +#include "Mesh.hpp" + +struct BrushPolygon { + Plane plane; + std::vector vertices; + + BrushPolygon(Plane p) : + plane(p) {} +}; + +namespace ray +{ + bool IntersectNgon(glm::vec3 orig, glm::vec3 dir, + BrushPolygon polygon, + float* t) + { + if (polygon.vertices.size() < 3) + return false; + + glm::vec3 N = polygon.plane.normal; + + //Find P + + //Check parralel + float NdotRayDir = glm::dot(N, dir); + if (glm::abs(NdotRayDir) < 1e-3) + return false; + + //Compute T + *t = -(glm::dot(N, orig) + polygon.plane.offset) / NdotRayDir; + //Check if triangle is behind the ray + if (*t < 0) return false; + + glm::vec3 P = orig + ((*t) * dir); + + glm::vec3 C, edge, vp; + + //Inside out testing + for (int i = 0; i < polygon.vertices.size(); i++) + { + glm::vec3 v0 = polygon.vertices[i]; + glm::vec3 v1 = i + 1 == polygon.vertices.size() ? polygon.vertices[0] : polygon.vertices[i + 1]; + + edge = v1 - v0; + vp = P - v0; + C = glm::cross(edge, vp); + if (glm::dot(N, C) < 0) { + return false; + } + } + + return true; + } + + + bool IntersectTriangle(glm::vec3 orig, glm::vec3 dir, + glm::vec3 v0, glm::vec3 v1, glm::vec3 v2, glm::vec3 norm, + float* t) + { + glm::vec3 N = norm; + + //Find P + + //Check parralel + float NdotRayDir = glm::dot(N, dir); + if (glm::abs(NdotRayDir) < 1e-4) + return false; + + float d = glm::dot(N, v0); + + //Compute T + *t = -(glm::dot(N, orig) + d) / NdotRayDir; + //Check if triangle is behind the ray + if (*t < 0) return false; + + glm::vec3 P = orig + ((*t) * dir); + + glm::vec3 C, edge, vp; + + //Inside out testing + edge = v1 - v0; + vp = P - v0; + C = glm::cross(edge, vp); + if (glm::dot(N, C) < 0) return false; + + edge = v2 - v1; + vp = P - v1; + C = glm::cross(edge, vp); + if (glm::dot(N, C) < 0) return false; + + edge = v0 - v2; + vp = P - v2; + C = glm::cross(edge, vp); + if (glm::dot(N, C) < 0) return false; + + return true; + } + + std::vector IntersectMesh(glm::vec3 orig, glm::vec3 dir, Mesh* mesh) + { + std::vector ret; + for (int i = 0; i < mesh->vertices.size() / 18; i++) + { + glm::vec3 v0 = glm::vec3(mesh->vertices[i * 18 + 0], mesh->vertices[i * 18 + 1], mesh->vertices[i * 18 + 2]); + glm::vec3 n0 = glm::vec3(mesh->vertices[i * 18 + 3], mesh->vertices[i * 18 + 4], mesh->vertices[i * 18 + 5]); + glm::vec3 v1 = glm::vec3(mesh->vertices[i * 18 + 6], mesh->vertices[i * 18 + 7], mesh->vertices[i * 18 + 8]); + glm::vec3 n1 = glm::vec3(mesh->vertices[i * 18 + 9], mesh->vertices[i * 18 + 10], mesh->vertices[i * 18 + 11]); + glm::vec3 v2 = glm::vec3(mesh->vertices[i * 18 + 12], mesh->vertices[i * 18 + 13], mesh->vertices[i * 18 + 14]); + glm::vec3 n2 = glm::vec3(mesh->vertices[i * 18 + 15], mesh->vertices[i * 18 + 16], mesh->vertices[i * 18 + 17]); + + float dist; + if (ray::IntersectTriangle(orig, dir, v0, v1, v2, n0, &dist)) + if (dist > 0) + ret.push_back(dist); + } + + return ret; + } +} + +class Polytope { +public: + Mesh * GeneratedMesh; + Mesh* ngonMesh; + std::vector ngons; + std::vector meshData; + + glm::vec3 NWU; + glm::vec3 SEL; + + Polytope(std::vector planes, bool gen_gl_mesh = true, bool dbg = false) + { + std::vector intersecting; + + //Set up polygon structure + for (int i = 0; i < planes.size(); i++) { + this->ngons.push_back(BrushPolygon(planes[i])); + } + + // Do plane intersections + for (int i = 0; i < planes.size(); i++) { + for (int j = 0; j < planes.size(); j++) { + for (int k = 0; k < planes.size(); k++) { + if (i == j || i == k || j == k) continue; //Skip invalid checks + + glm::vec3 p(0, 0, 0); + + if (!Plane::FinalThreePlaneIntersection(planes[i], planes[j], planes[k], &p)) { continue; }; + + bool valid = true; + //Check if point is outside object + for (int m = 0; m < planes.size(); m++) + { + if (Plane::EvalPointPolarity(planes[m], p) < -0.01f) + { + valid = false; + break; + } + } + + if (!valid) continue; + + intersecting.push_back(p); + + //Add verts + this->ngons[i].vertices.push_back(p); + this->ngons[j].vertices.push_back(p); + this->ngons[k].vertices.push_back(p); + } + } + } + + std::vector generatedMesh; + + float x = this->ngons[0].vertices[0].x; + float _x = this->ngons[0].vertices[0].x; + float y = this->ngons[0].vertices[0].y; + float _y = this->ngons[0].vertices[0].y; + float z = this->ngons[0].vertices[0].z; + float _z = this->ngons[0].vertices[0].z; + + //Remove polygon vertex duplicates + for (int i = 0; i < this->ngons.size(); i++) { + + std::vector newlist; + + //Cleanup and find bounds + + for (int j = 0; j < this->ngons[i].vertices.size(); j++) + { + bool found = false; + + for (int k = 0; k < newlist.size(); k++) + { + if (glm::distance(newlist[k], this->ngons[i].vertices[j]) < 0.5f) //Throw out dupe points (within half a unit) + { + found = true; break; + } + } + + if (found) continue; + + newlist.push_back(this->ngons[i].vertices[j]); + + x = this->ngons[i].vertices[j].x > x ? this->ngons[i].vertices[j].x : x; + _x = this->ngons[i].vertices[j].x < _x ? this->ngons[i].vertices[j].x : _x; + + y = this->ngons[i].vertices[j].y > y ? this->ngons[i].vertices[j].y : y; + _y = this->ngons[i].vertices[j].y < _y ? this->ngons[i].vertices[j].y : _y; + + z = this->ngons[i].vertices[j].z > z ? this->ngons[i].vertices[j].z : z; + _z = this->ngons[i].vertices[j].z < _z ? this->ngons[i].vertices[j].z : _z; + } + + this->ngons[i].vertices = newlist; + + //Reorder vertices + if (this->ngons[i].vertices.size() < 3) + continue; + + std::vector points = Plane::OrderCoplanarClockWise(this->ngons[i].plane, this->ngons[i].vertices); + this->ngons[i].vertices = points; + for (int j = 0; j < points.size() - 2; j++) { + glm::vec3 a = points[0]; + glm::vec3 b = points[j + 1]; + glm::vec3 c = points[j + 2]; + + generatedMesh.push_back(-a.x); + generatedMesh.push_back(a.z); + generatedMesh.push_back(a.y); + + generatedMesh.push_back(this->ngons[i].plane.normal.x); + generatedMesh.push_back(-this->ngons[i].plane.normal.z); + generatedMesh.push_back(-this->ngons[i].plane.normal.y); + + + generatedMesh.push_back(-b.x); + generatedMesh.push_back(b.z); + generatedMesh.push_back(b.y); + + generatedMesh.push_back(this->ngons[i].plane.normal.x); + generatedMesh.push_back(-this->ngons[i].plane.normal.z); + generatedMesh.push_back(-this->ngons[i].plane.normal.y); + + + generatedMesh.push_back(-c.x); + generatedMesh.push_back(c.z); + generatedMesh.push_back(c.y); + + generatedMesh.push_back(this->ngons[i].plane.normal.x); + generatedMesh.push_back(-this->ngons[i].plane.normal.z); + generatedMesh.push_back(-this->ngons[i].plane.normal.y); + } + } + + NWU = glm::vec3(-_x, z, y); + SEL = glm::vec3(-x, _z, _y); + + this->meshData = generatedMesh; + + if (gen_gl_mesh) + { + Mesh* m = new Mesh(generatedMesh, MeshMode::POS_XYZ_NORMAL_XYZ); + this->GeneratedMesh = m; + } + } +}; \ No newline at end of file diff --git a/MCDV/de_tavr.txt b/MCDV/de_tavr.txt new file mode 100644 index 0000000..c2a58ae --- /dev/null +++ b/MCDV/de_tavr.txt @@ -0,0 +1,8 @@ +// TAVR - AUTO RADAR. v 2.0.0 +de_tavr_test +{ + "material" "overviews/de_tavr_test" + "posx" "-2592.000000" + "posy" "4032.000000" + "scale" "5.200000" +} diff --git a/MCDV/de_tavr_test.prt b/MCDV/de_tavr_test.prt new file mode 100644 index 0000000..62b302a --- /dev/null +++ b/MCDV/de_tavr_test.prt @@ -0,0 +1,362 @@ +PRT1 +136 +359 +4 0 4 (4096 3072 -128 ) (4096 3072 512 ) (3072 3072 512 ) (3072 3072 -128 ) +4 0 1 (3072 3072 -128 ) (3072 3072 512 ) (3072 4096 512 ) (3072 4096 -128 ) +4 1 10 (3072 3072 -128 ) (3072 3072 0 ) (2048 3072 0 ) (2048 3072 -128 ) +4 1 8 (2176 3072 512 ) (2048 3072 512 ) (2048 3072 0 ) (2176 3072 0 ) +4 1 7 (3072 3072 0 ) (3072 3072 512 ) (2176 3072 512 ) (2176 3072 0 ) +4 1 2 (2048 3072 -128 ) (2048 3072 512 ) (2048 4096 512 ) (2048 4096 -128 ) +4 2 13 (2048 3072 -128 ) (2048 3072 0 ) (1024 3072 0 ) (1024 3072 -128 ) +4 2 11 (2048 3072 0 ) (2048 3072 512 ) (1024 3072 512 ) (1024 3072 0 ) +4 2 3 (1024 3072 -128 ) (1024 3072 512 ) (1024 4096 512 ) (1024 4096 -128 ) +4 3 45 (0 3072 -128 ) (0 3072 512 ) (0 4096 512 ) (0 4096 -128 ) +4 3 17 (1024 3072 -128 ) (1024 3072 0 ) (0 3072 0 ) (0 3072 -128 ) +4 3 16 (256 3072 16 ) (0 3072 16 ) (0 3072 0 ) (256 3072 0 ) +4 3 15 (1024 3072 0 ) (1024 3072 16 ) (256 3072 16 ) (256 3072 0 ) +4 3 14 (1024 3072 16 ) (1024 3072 512 ) (0 3072 512 ) (0 3072 16 ) +4 4 10 (3072 3072 0 ) (3072 3072 -128 ) (3072 2048 -128 ) (3072 2048 0 ) +4 4 7 (3072 3072 512 ) (3072 3072 0 ) (3072 2048 0 ) (3072 2048 512 ) +4 4 5 (4096 2048 -128 ) (4096 2048 512 ) (3072 2048 512 ) (3072 2048 -128 ) +4 5 21 (3072 1024 -128 ) (3072 1024 0 ) (3072 2048 0 ) (3072 2048 -128 ) +4 5 20 (3072 1024 0 ) (3072 1024 16 ) (3072 1664 16 ) (3072 1664 0 ) +4 5 19 (3072 1664 16 ) (3072 2048 16 ) (3072 2048 0 ) (3072 1664 0 ) +4 5 18 (3072 1024 16 ) (3072 1024 512 ) (3072 2048 512 ) (3072 2048 16 ) +4 5 6 (4096 1024 -128 ) (4096 1024 512 ) (3072 1024 512 ) (3072 1024 -128 ) +4 6 95 (4096 0 -128 ) (4096 0 512 ) (3072 0 512 ) (3072 0 -128 ) +4 6 26 (3072 0 -128 ) (3072 0 0 ) (3072 1024 0 ) (3072 1024 -128 ) +4 6 24 (3072 0 0 ) (3072 0 16 ) (3072 512 16 ) (3072 512 0 ) +4 6 23 (3072 512 16 ) (3072 1024 16 ) (3072 1024 0 ) (3072 512 0 ) +4 6 22 (3072 0 16 ) (3072 0 512 ) (3072 1024 512 ) (3072 1024 16 ) +4 7 19 (3072 2048 0 ) (3072 2048 16 ) (2176 2048 16 ) (2176 2048 0 ) +4 7 18 (3072 2048 16 ) (3072 2048 512 ) (2176 2048 512 ) (2176 2048 16 ) +4 7 10 (2176 3072 0 ) (3072 3072 0 ) (3072 2048 0 ) (2176 2048 0 ) +4 7 9 (2176 2048 16 ) (2176 2048 512 ) (2176 2560 512 ) (2176 2560 16 ) +4 7 8 (2176 3072 0 ) (2176 2560 0 ) (2176 2560 512 ) (2176 3072 512 ) +4 8 11 (2048 3072 512 ) (2048 3072 0 ) (2048 2560 0 ) (2048 2560 512 ) +4 8 10 (2048 2560 0 ) (2048 3072 0 ) (2176 3072 0 ) (2176 2560 0 ) +4 8 9 (2176 2560 16 ) (2176 2560 512 ) (2048 2560 512 ) (2048 2560 16 ) +4 9 18 (2176 2048 512 ) (2048 2048 512 ) (2048 2048 16 ) (2176 2048 16 ) +4 9 12 (2048 2048 16 ) (2048 2048 512 ) (2048 2560 512 ) (2048 2560 16 ) +4 10 21 (3072 2048 -128 ) (3072 2048 0 ) (2048 2048 0 ) (2048 2048 -128 ) +4 10 13 (2048 3072 0 ) (2048 3072 -128 ) (2048 2048 -128 ) (2048 2048 0 ) +4 11 15 (1024 3072 16 ) (1024 3072 0 ) (1024 2560 0 ) (1024 2560 16 ) +4 11 14 (1024 2560 512 ) (1024 3072 512 ) (1024 3072 16 ) (1024 2560 16 ) +4 11 13 (1024 2560 0 ) (1024 3072 0 ) (2048 3072 0 ) (2048 2560 0 ) +4 11 12 (2048 2560 16 ) (2048 2560 512 ) (1024 2560 512 ) (1024 2560 16 ) +4 12 27 (2048 2048 16 ) (2048 2048 512 ) (1024 2048 512 ) (1024 2048 16 ) +4 12 14 (1024 2048 16 ) (1024 2048 512 ) (1024 2560 512 ) (1024 2560 16 ) +4 13 29 (2048 2048 -128 ) (2048 2048 0 ) (1024 2048 0 ) (1024 2048 -128 ) +4 13 17 (1024 2048 -128 ) (1024 2048 0 ) (1024 3072 0 ) (1024 3072 -128 ) +4 14 49 (0 2048 16 ) (0 2048 512 ) (0 3072 512 ) (0 3072 16 ) +4 14 30 (1024 2048 16 ) (1024 2048 512 ) (256 2048 512 ) (256 2048 16 ) +4 14 32 (256 2048 512 ) (0 2048 512 ) (0 2048 16 ) (256 2048 16 ) +4 14 16 (0 2432 16 ) (0 3072 16 ) (256 3072 16 ) (256 2432 16 ) +4 14 15 (256 2560 16 ) (256 3072 16 ) (1024 3072 16 ) (1024 2560 16 ) +4 15 17 (256 3072 0 ) (1024 3072 0 ) (1024 2560 0 ) (256 2560 0 ) +4 15 16 (256 3072 0 ) (256 2560 0 ) (256 2560 16 ) (256 3072 16 ) +4 16 50 (0 2432 16 ) (0 3072 16 ) (0 3072 0 ) (0 2432 0 ) +4 16 17 (0 2432 0 ) (0 3072 0 ) (256 3072 0 ) (256 2432 0 ) +4 17 52 (0 2048 -128 ) (0 2048 0 ) (0 3072 0 ) (0 3072 -128 ) +4 17 33 (1024 2048 -128 ) (1024 2048 0 ) (0 2048 0 ) (0 2048 -128 ) +4 18 27 (2048 2048 512 ) (2048 2048 16 ) (2048 1024 16 ) (2048 1024 512 ) +4 18 22 (3072 1024 16 ) (3072 1024 512 ) (2048 1024 512 ) (2048 1024 16 ) +4 18 20 (3072 1024 16 ) (2176 1024 16 ) (2176 1664 16 ) (3072 1664 16 ) +4 18 19 (2176 2048 16 ) (3072 2048 16 ) (3072 1664 16 ) (2176 1664 16 ) +4 19 21 (2176 2048 0 ) (3072 2048 0 ) (3072 1664 0 ) (2176 1664 0 ) +4 19 20 (2176 1664 0 ) (3072 1664 0 ) (3072 1664 16 ) (2176 1664 16 ) +4 20 23 (3072 1024 0 ) (3072 1024 16 ) (2176 1024 16 ) (2176 1024 0 ) +4 20 21 (2176 1664 0 ) (3072 1664 0 ) (3072 1024 0 ) (2176 1024 0 ) +4 21 29 (2048 2048 0 ) (2048 2048 -128 ) (2048 1024 -128 ) (2048 1024 0 ) +4 21 26 (3072 1024 -128 ) (3072 1024 0 ) (2048 1024 0 ) (2048 1024 -128 ) +4 22 98 (3072 0 16 ) (3072 0 512 ) (2048 0 512 ) (2048 0 16 ) +4 22 34 (2048 0 16 ) (2048 0 512 ) (2048 1024 512 ) (2048 1024 16 ) +4 22 25 (2432 0 16 ) (2048 0 16 ) (2048 128 16 ) (2432 128 16 ) +4 22 24 (3072 512 16 ) (3072 0 16 ) (2432 0 16 ) (2432 512 16 ) +4 22 23 (3072 1024 16 ) (3072 512 16 ) (2176 512 16 ) (2176 1024 16 ) +4 23 26 (2176 1024 0 ) (3072 1024 0 ) (3072 512 0 ) (2176 512 0 ) +4 23 24 (2432 512 0 ) (3072 512 0 ) (3072 512 16 ) (2432 512 16 ) +4 24 98 (3072 0 0 ) (3072 0 16 ) (2432 0 16 ) (2432 0 0 ) +4 24 26 (3072 0 0 ) (2432 0 0 ) (2432 512 0 ) (3072 512 0 ) +4 24 25 (2432 128 0 ) (2432 0 0 ) (2432 0 16 ) (2432 128 16 ) +4 25 98 (2432 0 16 ) (2048 0 16 ) (2048 0 0 ) (2432 0 0 ) +4 25 36 (2048 0 0 ) (2048 0 16 ) (2048 128 16 ) (2048 128 0 ) +4 25 26 (2432 0 0 ) (2048 0 0 ) (2048 128 0 ) (2432 128 0 ) +4 26 98 (3072 0 -128 ) (3072 0 0 ) (2048 0 0 ) (2048 0 -128 ) +4 26 38 (2048 0 -128 ) (2048 0 0 ) (2048 1024 0 ) (2048 1024 -128 ) +4 27 34 (2048 1024 16 ) (2048 1024 512 ) (1024 1024 512 ) (1024 1024 16 ) +4 27 30 (1024 2048 512 ) (1024 2048 16 ) (1024 1664 16 ) (1024 1664 512 ) +4 27 31 (1024 1664 16 ) (1024 1024 16 ) (1024 1024 512 ) (1024 1664 512 ) +4 27 28 (1024 1024 16 ) (1024 1664 16 ) (1792 1664 16 ) (1792 1024 16 ) +4 28 37 (1408 1024 16 ) (1024 1024 16 ) (1024 1024 0 ) (1408 1024 0 ) +4 28 35 (1792 1024 16 ) (1408 1024 16 ) (1408 1024 0 ) (1792 1024 0 ) +4 28 31 (1024 1664 0 ) (1024 1024 0 ) (1024 1024 16 ) (1024 1664 16 ) +4 28 29 (1792 1024 0 ) (1024 1024 0 ) (1024 1664 0 ) (1792 1664 0 ) +4 29 38 (2048 1024 -128 ) (2048 1024 0 ) (1024 1024 0 ) (1024 1024 -128 ) +4 29 33 (1024 2048 0 ) (1024 2048 -128 ) (1024 1024 -128 ) (1024 1024 0 ) +4 30 31 (256 1664 512 ) (256 1664 16 ) (1024 1664 16 ) (1024 1664 512 ) +4 30 32 (256 1664 16 ) (256 1664 512 ) (256 2048 512 ) (256 2048 16 ) +4 31 43 (1024 1024 0 ) (1024 1024 16 ) (256 1024 16 ) (256 1024 0 ) +4 31 40 (1024 1024 16 ) (1024 1024 64 ) (256 1024 64 ) (256 1024 16 ) +4 31 39 (1024 1024 64 ) (1024 1024 512 ) (256 1024 512 ) (256 1024 64 ) +4 31 33 (1024 1024 0 ) (256 1024 0 ) (256 1664 0 ) (1024 1664 0 ) +4 31 32 (256 1664 0 ) (256 1024 0 ) (256 1024 512 ) (256 1664 512 ) +4 32 61 (0 1024 0 ) (0 1024 512 ) (0 2048 512 ) (0 2048 0 ) +4 32 41 (0 1024 64 ) (0 1024 16 ) (96 1024 16 ) (96 1024 64 ) +4 32 40 (96 1024 16 ) (256 1024 16 ) (256 1024 64 ) (96 1024 64 ) +4 32 39 (256 1024 512 ) (0 1024 512 ) (0 1024 64 ) (256 1024 64 ) +4 32 33 (256 1024 0 ) (0 1024 0 ) (0 2048 0 ) (256 2048 0 ) +4 33 65 (0 1024 -128 ) (0 1024 0 ) (0 2048 0 ) (0 2048 -128 ) +4 33 44 (1024 1024 -128 ) (1024 1024 0 ) (0 1024 0 ) (0 1024 -128 ) +4 34 100 (1408 0 512 ) (1024 0 512 ) (1024 0 16 ) (1408 0 16 ) +4 34 99 (2048 0 16 ) (2048 0 512 ) (1408 0 512 ) (1408 0 16 ) +4 34 40 (1024 1024 64 ) (1024 1024 16 ) (1024 0 16 ) (1024 0 64 ) +4 34 39 (1024 1024 512 ) (1024 1024 64 ) (1024 0 64 ) (1024 0 512 ) +4 34 37 (1024 640 16 ) (1024 1024 16 ) (1408 1024 16 ) (1408 640 16 ) +4 34 36 (2048 0 16 ) (1408 0 16 ) (1408 128 16 ) (2048 128 16 ) +4 34 35 (1408 512 16 ) (1408 1024 16 ) (1792 1024 16 ) (1792 512 16 ) +4 35 38 (1408 1024 0 ) (1792 1024 0 ) (1792 512 0 ) (1408 512 0 ) +4 35 37 (1408 1024 0 ) (1408 640 0 ) (1408 640 16 ) (1408 1024 16 ) +4 36 99 (2048 0 0 ) (2048 0 16 ) (1408 0 16 ) (1408 0 0 ) +4 36 38 (2048 128 0 ) (2048 0 0 ) (1408 0 0 ) (1408 128 0 ) +4 37 43 (1024 1024 16 ) (1024 1024 0 ) (1024 640 0 ) (1024 640 16 ) +4 37 38 (1024 1024 0 ) (1408 1024 0 ) (1408 640 0 ) (1024 640 0 ) +4 38 102 (2048 0 -128 ) (2048 0 0 ) (1024 0 0 ) (1024 0 -128 ) +4 38 44 (1024 1024 0 ) (1024 1024 -128 ) (1024 0 -128 ) (1024 0 0 ) +4 39 103 (1024 0 64 ) (1024 0 512 ) (0 0 512 ) (0 0 64 ) +4 39 66 (0 0 64 ) (0 0 512 ) (0 1024 512 ) (0 1024 64 ) +4 39 41 (0 768 64 ) (0 1024 64 ) (96 1024 64 ) (96 768 64 ) +4 39 42 (96 0 64 ) (0 0 64 ) (0 352 64 ) (96 352 64 ) +4 39 40 (1024 0 64 ) (96 0 64 ) (96 1024 64 ) (1024 1024 64 ) +4 40 103 (1024 0 16 ) (1024 0 64 ) (96 0 64 ) (96 0 16 ) +4 40 43 (1024 1024 16 ) (1024 640 16 ) (256 640 16 ) (256 1024 16 ) +4 40 41 (96 1024 16 ) (96 768 16 ) (96 768 64 ) (96 1024 64 ) +4 40 42 (96 352 16 ) (96 0 16 ) (96 0 64 ) (96 352 64 ) +4 41 67 (0 768 64 ) (0 1024 64 ) (0 1024 16 ) (0 768 16 ) +4 42 103 (96 0 64 ) (0 0 64 ) (0 0 16 ) (96 0 16 ) +4 42 68 (0 0 16 ) (0 0 64 ) (0 352 64 ) (0 352 16 ) +4 43 44 (256 640 0 ) (256 1024 0 ) (1024 1024 0 ) (1024 640 0 ) +4 44 106 (1024 0 -128 ) (1024 0 0 ) (0 0 0 ) (0 0 -128 ) +4 44 72 (0 0 -128 ) (0 0 0 ) (0 1024 0 ) (0 1024 -128 ) +4 45 52 (0 3072 -128 ) (0 3072 0 ) (-1024 3072 0 ) (-1024 3072 -128 ) +4 45 51 (-768 3072 16 ) (-1024 3072 16 ) (-1024 3072 0 ) (-768 3072 0 ) +4 45 50 (0 3072 0 ) (0 3072 16 ) (-768 3072 16 ) (-768 3072 0 ) +4 45 49 (0 3072 16 ) (0 3072 512 ) (-1024 3072 512 ) (-1024 3072 16 ) +4 45 46 (-1024 3072 -128 ) (-1024 3072 512 ) (-1024 4096 512 ) (-1024 4096 -128 ) +4 46 56 (-1024 3072 -128 ) (-1024 3072 0 ) (-2048 3072 0 ) (-2048 3072 -128 ) +4 46 55 (-1408 3072 16 ) (-2048 3072 16 ) (-2048 3072 0 ) (-1408 3072 0 ) +4 46 54 (-1024 3072 0 ) (-1024 3072 16 ) (-1408 3072 16 ) (-1408 3072 0 ) +4 46 53 (-1024 3072 16 ) (-1024 3072 512 ) (-2048 3072 512 ) (-2048 3072 16 ) +4 46 47 (-2048 3072 -128 ) (-2048 3072 512 ) (-2048 4096 512 ) (-2048 4096 -128 ) +4 47 60 (-2048 3072 -128 ) (-2048 3072 0 ) (-3072 3072 0 ) (-3072 3072 -128 ) +4 47 57 (-2048 3072 0 ) (-2048 3072 512 ) (-2304 3072 512 ) (-2304 3072 0 ) +4 47 59 (-2304 3072 512 ) (-3072 3072 512 ) (-3072 3072 0 ) (-2304 3072 0 ) +4 47 48 (-3072 3072 -128 ) (-3072 3072 512 ) (-3072 4096 512 ) (-3072 4096 -128 ) +4 48 92 (-3072 3072 -128 ) (-3072 3072 512 ) (-4096 3072 512 ) (-4096 3072 -128 ) +4 49 63 (-768 2048 512 ) (-1024 2048 512 ) (-1024 2048 16 ) (-768 2048 16 ) +4 49 61 (0 2048 16 ) (0 2048 512 ) (-128 2048 512 ) (-128 2048 16 ) +4 49 53 (-1024 3072 512 ) (-1024 3072 16 ) (-1024 2048 16 ) (-1024 2048 512 ) +4 49 51 (-1024 2944 16 ) (-1024 3072 16 ) (-768 3072 16 ) (-768 2944 16 ) +4 49 50 (-768 3072 16 ) (0 3072 16 ) (0 2432 16 ) (-768 2432 16 ) +4 50 52 (-768 2432 0 ) (-768 3072 0 ) (0 3072 0 ) (0 2432 0 ) +4 50 51 (-768 3072 0 ) (-768 2944 0 ) (-768 2944 16 ) (-768 3072 16 ) +4 51 54 (-1024 3072 16 ) (-1024 3072 0 ) (-1024 2944 0 ) (-1024 2944 16 ) +4 51 52 (-1024 2944 0 ) (-1024 3072 0 ) (-768 3072 0 ) (-768 2944 0 ) +4 52 65 (0 2048 -128 ) (0 2048 0 ) (-1024 2048 0 ) (-1024 2048 -128 ) +4 52 56 (-1024 3072 0 ) (-1024 3072 -128 ) (-1024 2048 -128 ) (-1024 2048 0 ) +4 53 75 (-1408 2048 512 ) (-2048 2048 512 ) (-2048 2048 16 ) (-1408 2048 16 ) +4 53 73 (-1024 2048 16 ) (-1024 2048 512 ) (-1408 2048 512 ) (-1408 2048 16 ) +4 53 58 (-2048 2048 16 ) (-2048 2048 512 ) (-2048 2688 512 ) (-2048 2688 16 ) +4 53 57 (-2048 2688 512 ) (-2048 3072 512 ) (-2048 3072 16 ) (-2048 2688 16 ) +4 53 55 (-2048 2688 16 ) (-2048 3072 16 ) (-1408 3072 16 ) (-1408 2688 16 ) +4 53 54 (-1408 3072 16 ) (-1024 3072 16 ) (-1024 2944 16 ) (-1408 2944 16 ) +4 54 56 (-1408 2944 0 ) (-1408 3072 0 ) (-1024 3072 0 ) (-1024 2944 0 ) +4 54 55 (-1408 3072 0 ) (-1408 2944 0 ) (-1408 2944 16 ) (-1408 3072 16 ) +4 55 57 (-2048 2688 16 ) (-2048 3072 16 ) (-2048 3072 0 ) (-2048 2688 0 ) +4 55 56 (-2048 2688 0 ) (-2048 3072 0 ) (-1408 3072 0 ) (-1408 2688 0 ) +4 56 78 (-1024 2048 -128 ) (-1024 2048 0 ) (-2048 2048 0 ) (-2048 2048 -128 ) +4 56 60 (-2048 2048 -128 ) (-2048 2048 0 ) (-2048 3072 0 ) (-2048 3072 -128 ) +4 57 60 (-2304 2688 0 ) (-2304 3072 0 ) (-2048 3072 0 ) (-2048 2688 0 ) +4 57 58 (-2304 2688 512 ) (-2304 2688 16 ) (-2048 2688 16 ) (-2048 2688 512 ) +4 57 59 (-2304 3072 0 ) (-2304 2688 0 ) (-2304 2688 512 ) (-2304 3072 512 ) +4 58 79 (-2048 2048 16 ) (-2048 2048 512 ) (-2304 2048 512 ) (-2304 2048 16 ) +4 58 59 (-2304 2048 16 ) (-2304 2048 512 ) (-2304 2688 512 ) (-2304 2688 16 ) +4 59 92 (-3072 3072 512 ) (-3072 3072 0 ) (-3072 2048 0 ) (-3072 2048 512 ) +4 59 80 (-2304 2048 512 ) (-3072 2048 512 ) (-3072 2048 0 ) (-2304 2048 0 ) +4 59 60 (-2304 2048 0 ) (-3072 2048 0 ) (-3072 3072 0 ) (-2304 3072 0 ) +4 60 92 (-3072 3072 0 ) (-3072 3072 -128 ) (-3072 2048 -128 ) (-3072 2048 0 ) +4 60 83 (-2048 2048 -128 ) (-2048 2048 0 ) (-3072 2048 0 ) (-3072 2048 -128 ) +4 61 67 (0 1024 16 ) (0 1024 64 ) (-128 1024 64 ) (-128 1024 16 ) +4 61 66 (0 1024 64 ) (0 1024 512 ) (-128 1024 512 ) (-128 1024 64 ) +4 61 65 (-128 2048 0 ) (0 2048 0 ) (0 1024 0 ) (-128 1024 0 ) +3 61 62 (-128 1024 196 ) (-128 1024 512 ) (-128 1574.312988 512 ) +4 62 66 (-768 1024 512 ) (-768 1024 196 ) (-128 1024 196 ) (-128 1024 512 ) +3 62 64 (-768 1024 196 ) (-768 1024 512 ) (-768 1574.312988 512 ) +4 63 73 (-1024 2048 512 ) (-1024 2048 16 ) (-1024 1920 16 ) (-1024 1920 512 ) +4 63 64 (-768 1920 16 ) (-768 1920 512 ) (-1024 1920 512 ) (-1024 1920 16 ) +4 64 74 (-1024 1920 0 ) (-1024 1024 0 ) (-1024 1024 512 ) (-1024 1920 512 ) +4 64 70 (-1024 1024 16 ) (-1024 1024 0 ) (-768 1024 0 ) (-768 1024 16 ) +4 64 69 (-1024 1024 64 ) (-1024 1024 16 ) (-768 1024 16 ) (-768 1024 64 ) +4 64 66 (-1024 1024 512 ) (-1024 1024 64 ) (-768 1024 64 ) (-768 1024 512 ) +4 64 65 (-1024 1024 0 ) (-1024 1920 0 ) (-768 1920 0 ) (-768 1024 0 ) +4 65 78 (-1024 2048 0 ) (-1024 2048 -128 ) (-1024 1024 -128 ) (-1024 1024 0 ) +4 65 72 (0 1024 -128 ) (0 1024 0 ) (-1024 1024 0 ) (-1024 1024 -128 ) +4 66 117 (0 0 64 ) (0 0 512 ) (-384 0 512 ) (-384 0 64 ) +4 66 119 (-384 0 512 ) (-1024 0 512 ) (-1024 0 64 ) (-384 0 64 ) +4 66 84 (-1024 0 64 ) (-1024 0 512 ) (-1024 1024 512 ) (-1024 1024 64 ) +4 66 67 (0 1024 64 ) (0 768 64 ) (-512 768 64 ) (-512 1024 64 ) +4 66 68 (0 352 64 ) (0 0 64 ) (-512 0 64 ) (-512 352 64 ) +4 66 69 (-512 0 64 ) (-1024 0 64 ) (-1024 1024 64 ) (-512 1024 64 ) +4 67 69 (-512 1024 16 ) (-512 768 16 ) (-512 768 64 ) (-512 1024 64 ) +4 68 117 (0 0 16 ) (0 0 64 ) (-384 0 64 ) (-384 0 16 ) +4 68 119 (-384 0 64 ) (-512 0 64 ) (-512 0 16 ) (-384 0 16 ) +4 68 71 (-384 0 16 ) (-512 0 16 ) (-512 128 16 ) (-384 128 16 ) +4 68 69 (-512 352 16 ) (-512 0 16 ) (-512 0 64 ) (-512 352 64 ) +4 69 119 (-512 0 64 ) (-1024 0 64 ) (-1024 0 16 ) (-512 0 16 ) +4 69 84 (-1024 0 16 ) (-1024 0 64 ) (-1024 1024 64 ) (-1024 1024 16 ) +4 69 71 (-512 0 16 ) (-1024 0 16 ) (-1024 128 16 ) (-512 128 16 ) +4 69 70 (-1024 128 16 ) (-1024 1024 16 ) (-768 1024 16 ) (-768 128 16 ) +4 70 84 (-1024 128 16 ) (-1024 1024 16 ) (-1024 1024 0 ) (-1024 128 0 ) +4 70 72 (-768 128 0 ) (-1024 128 0 ) (-1024 1024 0 ) (-768 1024 0 ) +4 70 71 (-1024 128 0 ) (-768 128 0 ) (-768 128 16 ) (-1024 128 16 ) +4 71 119 (-384 0 16 ) (-1024 0 16 ) (-1024 0 0 ) (-384 0 0 ) +4 71 84 (-1024 0 0 ) (-1024 0 16 ) (-1024 128 16 ) (-1024 128 0 ) +4 71 72 (-384 0 0 ) (-1024 0 0 ) (-1024 128 0 ) (-384 128 0 ) +4 72 120 (0 0 -128 ) (0 0 0 ) (-1024 0 0 ) (-1024 0 -128 ) +4 72 87 (-1024 0 -128 ) (-1024 0 0 ) (-1024 1024 0 ) (-1024 1024 -128 ) +4 73 75 (-1408 2048 512 ) (-1408 2048 16 ) (-1408 1920 16 ) (-1408 1920 512 ) +4 73 74 (-1024 1920 512 ) (-1408 1920 512 ) (-1408 1920 16 ) (-1024 1920 16 ) +4 74 84 (-1024 1024 0 ) (-1024 1024 512 ) (-1408 1024 512 ) (-1408 1024 0 ) +4 74 78 (-1024 1024 0 ) (-1408 1024 0 ) (-1408 1920 0 ) (-1024 1920 0 ) +4 74 77 (-1408 1664 0 ) (-1408 1024 0 ) (-1408 1024 128 ) (-1408 1664 128 ) +4 74 76 (-1408 1024 128 ) (-1408 1024 512 ) (-1408 1664 512 ) (-1408 1664 128 ) +4 74 75 (-1408 1664 16 ) (-1408 1664 512 ) (-1408 1920 512 ) (-1408 1920 16 ) +4 75 79 (-2048 2048 512 ) (-2048 2048 16 ) (-2048 1664 16 ) (-2048 1664 512 ) +4 75 77 (-1408 1664 16 ) (-1408 1664 128 ) (-1920 1664 128 ) (-1920 1664 16 ) +4 75 76 (-1408 1664 128 ) (-1408 1664 512 ) (-2048 1664 512 ) (-2048 1664 128 ) +4 76 85 (-2048 1024 512 ) (-2048 1024 128 ) (-1920 1024 128 ) (-1920 1024 512 ) +4 76 84 (-1920 1024 128 ) (-1408 1024 128 ) (-1408 1024 512 ) (-1920 1024 512 ) +4 76 81 (-2048 1024 128 ) (-2048 1024 512 ) (-2048 1664 512 ) (-2048 1664 128 ) +4 76 77 (-1920 1664 128 ) (-1408 1664 128 ) (-1408 1024 128 ) (-1920 1024 128 ) +4 77 84 (-1920 1024 0 ) (-1408 1024 0 ) (-1408 1024 128 ) (-1920 1024 128 ) +4 77 78 (-1408 1024 0 ) (-1920 1024 0 ) (-1920 1664 0 ) (-1408 1664 0 ) +4 78 87 (-1024 1024 -128 ) (-1024 1024 0 ) (-2048 1024 0 ) (-2048 1024 -128 ) +4 78 83 (-2048 2048 0 ) (-2048 2048 -128 ) (-2048 1024 -128 ) (-2048 1024 0 ) +4 79 81 (-2048 1664 128 ) (-2048 1664 512 ) (-2304 1664 512 ) (-2304 1664 128 ) +4 79 80 (-2304 1664 16 ) (-2304 1664 512 ) (-2304 2048 512 ) (-2304 2048 16 ) +4 80 93 (-3072 2048 512 ) (-3072 2048 0 ) (-3072 1664 0 ) (-3072 1664 512 ) +4 80 83 (-2304 1664 0 ) (-3072 1664 0 ) (-3072 2048 0 ) (-2304 2048 0 ) +4 80 82 (-3072 1664 512 ) (-3072 1664 0 ) (-2304 1664 0 ) (-2304 1664 512 ) +4 81 88 (-2048 1024 128 ) (-2048 1024 512 ) (-2304 1024 512 ) (-2304 1024 128 ) +4 81 82 (-2304 1024 512 ) (-2304 1664 512 ) (-2304 1664 128 ) (-2304 1024 128 ) +4 82 93 (-3072 1024 0 ) (-3072 1024 512 ) (-3072 1664 512 ) (-3072 1664 0 ) +4 82 90 (-2304 1024 512 ) (-3072 1024 512 ) (-3072 1024 0 ) (-2304 1024 0 ) +4 82 83 (-2304 1024 0 ) (-3072 1024 0 ) (-3072 1664 0 ) (-2304 1664 0 ) +4 83 93 (-3072 1024 -128 ) (-3072 1024 0 ) (-3072 2048 0 ) (-3072 2048 -128 ) +4 83 91 (-2048 1024 -128 ) (-2048 1024 0 ) (-3072 1024 0 ) (-3072 1024 -128 ) +4 84 121 (-1024 0 0 ) (-1024 0 512 ) (-1920 0 512 ) (-1920 0 0 ) +4 84 87 (-1024 0 0 ) (-1920 0 0 ) (-1920 1024 0 ) (-1024 1024 0 ) +4 84 85 (-1920 640 128 ) (-1920 640 512 ) (-1920 1024 512 ) (-1920 1024 128 ) +4 84 86 (-1920 640 0 ) (-1920 0 0 ) (-1920 0 512 ) (-1920 640 512 ) +4 85 88 (-2048 1024 512 ) (-2048 1024 128 ) (-2048 640 128 ) (-2048 640 512 ) +4 85 86 (-1920 640 128 ) (-1920 640 512 ) (-2048 640 512 ) (-2048 640 128 ) +4 86 121 (-1920 0 512 ) (-2048 0 512 ) (-2048 0 0 ) (-1920 0 0 ) +4 86 89 (-2048 640 0 ) (-2048 0 0 ) (-2048 0 512 ) (-2048 640 512 ) +4 86 87 (-1920 0 0 ) (-2048 0 0 ) (-2048 640 0 ) (-1920 640 0 ) +4 87 121 (-1024 0 -128 ) (-1024 0 0 ) (-2048 0 0 ) (-2048 0 -128 ) +4 87 91 (-2048 1024 0 ) (-2048 1024 -128 ) (-2048 0 -128 ) (-2048 0 0 ) +4 88 89 (-2304 640 512 ) (-2304 640 128 ) (-2048 640 128 ) (-2048 640 512 ) +4 88 90 (-2304 640 128 ) (-2304 640 512 ) (-2304 1024 512 ) (-2304 1024 128 ) +4 89 122 (-2048 0 0 ) (-2048 0 512 ) (-2304 0 512 ) (-2304 0 0 ) +4 89 91 (-2048 0 0 ) (-2304 0 0 ) (-2304 640 0 ) (-2048 640 0 ) +4 89 90 (-2304 640 0 ) (-2304 0 0 ) (-2304 0 512 ) (-2304 640 512 ) +4 90 122 (-2304 0 512 ) (-3072 0 512 ) (-3072 0 0 ) (-2304 0 0 ) +4 90 94 (-3072 0 0 ) (-3072 0 512 ) (-3072 1024 512 ) (-3072 1024 0 ) +4 90 91 (-2304 0 0 ) (-3072 0 0 ) (-3072 1024 0 ) (-2304 1024 0 ) +4 91 122 (-2048 0 -128 ) (-2048 0 0 ) (-3072 0 0 ) (-3072 0 -128 ) +4 91 94 (-3072 0 -128 ) (-3072 0 0 ) (-3072 1024 0 ) (-3072 1024 -128 ) +4 92 93 (-3072 2048 -128 ) (-3072 2048 512 ) (-4096 2048 512 ) (-4096 2048 -128 ) +4 93 94 (-3072 1024 -128 ) (-3072 1024 512 ) (-4096 1024 512 ) (-4096 1024 -128 ) +4 94 129 (-3072 0 -128 ) (-3072 0 512 ) (-4096 0 512 ) (-4096 0 -128 ) +4 95 98 (3072 0 512 ) (3072 0 -128 ) (3072 -1024 -128 ) (3072 -1024 512 ) +4 95 96 (4096 -1024 -128 ) (4096 -1024 512 ) (3072 -1024 512 ) (3072 -1024 -128 ) +4 96 107 (3072 -2048 -128 ) (3072 -2048 512 ) (3072 -1024 512 ) (3072 -1024 -128 ) +4 96 97 (4096 -2048 -128 ) (4096 -2048 512 ) (3072 -2048 512 ) (3072 -2048 -128 ) +4 97 113 (4096 -3072 -128 ) (4096 -3072 512 ) (3072 -3072 512 ) (3072 -3072 -128 ) +4 97 108 (3072 -3072 -128 ) (3072 -3072 512 ) (3072 -2048 512 ) (3072 -2048 -128 ) +4 98 107 (3072 -1024 -128 ) (3072 -1024 512 ) (2048 -1024 512 ) (2048 -1024 -128 ) +4 98 102 (2048 0 0 ) (2048 0 -128 ) (2048 -1024 -128 ) (2048 -1024 0 ) +4 98 99 (2048 0 512 ) (2048 0 0 ) (2048 -1024 0 ) (2048 -1024 512 ) +4 99 109 (2048 -1024 0 ) (2048 -1024 512 ) (1408 -1024 512 ) (1408 -1024 0 ) +4 99 102 (1408 0 0 ) (2048 0 0 ) (2048 -1024 0 ) (1408 -1024 0 ) +4 99 100 (1408 -128 16 ) (1408 -128 512 ) (1408 0 512 ) (1408 0 16 ) +4 99 101 (1408 -128 0 ) (1408 -1024 0 ) (1408 -1024 512 ) (1408 -128 512 ) +4 100 103 (1024 -128 512 ) (1024 0 512 ) (1024 0 16 ) (1024 -128 16 ) +4 100 101 (1408 -128 16 ) (1408 -128 512 ) (1024 -128 512 ) (1024 -128 16 ) +4 101 109 (1408 -1024 512 ) (1024 -1024 512 ) (1024 -1024 0 ) (1408 -1024 0 ) +4 101 104 (1024 -1024 0 ) (1024 -1024 16 ) (1024 -128 16 ) (1024 -128 0 ) +4 101 103 (1024 -1024 16 ) (1024 -1024 512 ) (1024 -128 512 ) (1024 -128 16 ) +4 101 102 (1024 -1024 0 ) (1024 -128 0 ) (1408 -128 0 ) (1408 -1024 0 ) +4 102 109 (2048 -1024 -128 ) (2048 -1024 0 ) (1024 -1024 0 ) (1024 -1024 -128 ) +4 102 106 (1024 -1024 -128 ) (1024 -1024 0 ) (1024 0 0 ) (1024 0 -128 ) +4 103 117 (0 0 512 ) (0 0 16 ) (0 -512 16 ) (0 -512 512 ) +4 103 118 (0 -512 16 ) (0 -1024 16 ) (0 -1024 512 ) (0 -512 512 ) +4 103 110 (1024 -1024 16 ) (1024 -1024 512 ) (0 -1024 512 ) (0 -1024 16 ) +4 103 105 (256 -1024 16 ) (0 -1024 16 ) (0 -512 16 ) (256 -512 16 ) +4 103 104 (1024 -1024 16 ) (256 -1024 16 ) (256 -128 16 ) (1024 -128 16 ) +4 104 110 (1024 -1024 0 ) (1024 -1024 16 ) (256 -1024 16 ) (256 -1024 0 ) +4 104 106 (1024 -128 0 ) (1024 -1024 0 ) (256 -1024 0 ) (256 -128 0 ) +4 104 105 (256 -512 0 ) (256 -1024 0 ) (256 -1024 16 ) (256 -512 16 ) +4 105 118 (0 -512 0 ) (0 -1024 0 ) (0 -1024 16 ) (0 -512 16 ) +4 105 110 (256 -1024 16 ) (0 -1024 16 ) (0 -1024 0 ) (256 -1024 0 ) +4 105 106 (0 -1024 0 ) (0 -512 0 ) (256 -512 0 ) (256 -1024 0 ) +4 106 120 (0 0 0 ) (0 0 -128 ) (0 -1024 -128 ) (0 -1024 0 ) +4 106 110 (1024 -1024 -128 ) (1024 -1024 0 ) (0 -1024 0 ) (0 -1024 -128 ) +4 107 109 (2048 -1024 512 ) (2048 -1024 -128 ) (2048 -2048 -128 ) (2048 -2048 512 ) +4 107 108 (3072 -2048 -128 ) (3072 -2048 512 ) (2048 -2048 512 ) (2048 -2048 -128 ) +4 108 114 (3072 -3072 -128 ) (3072 -3072 512 ) (2048 -3072 512 ) (2048 -3072 -128 ) +4 108 111 (2048 -3072 -128 ) (2048 -3072 512 ) (2048 -2048 512 ) (2048 -2048 -128 ) +4 109 111 (2048 -2048 -128 ) (2048 -2048 512 ) (1024 -2048 512 ) (1024 -2048 -128 ) +4 109 110 (1024 -1024 512 ) (1024 -1024 -128 ) (1024 -2048 -128 ) (1024 -2048 512 ) +4 110 123 (0 -2048 -128 ) (0 -2048 512 ) (0 -1024 512 ) (0 -1024 -128 ) +4 110 112 (1024 -2048 -128 ) (1024 -2048 512 ) (0 -2048 512 ) (0 -2048 -128 ) +4 111 115 (2048 -3072 -128 ) (2048 -3072 512 ) (1024 -3072 512 ) (1024 -3072 -128 ) +4 111 112 (1024 -2048 512 ) (1024 -2048 -128 ) (1024 -3072 -128 ) (1024 -3072 512 ) +4 112 124 (0 -3072 -128 ) (0 -3072 512 ) (0 -2048 512 ) (0 -2048 -128 ) +4 112 116 (1024 -3072 -128 ) (1024 -3072 512 ) (0 -3072 512 ) (0 -3072 -128 ) +4 113 114 (3072 -3072 512 ) (3072 -3072 -128 ) (3072 -4096 -128 ) (3072 -4096 512 ) +4 114 115 (2048 -3072 512 ) (2048 -3072 -128 ) (2048 -4096 -128 ) (2048 -4096 512 ) +4 115 116 (1024 -4096 -128 ) (1024 -4096 512 ) (1024 -3072 512 ) (1024 -3072 -128 ) +4 116 132 (0 -4096 -128 ) (0 -4096 512 ) (0 -3072 512 ) (0 -3072 -128 ) +4 117 118 (-384 -512 512 ) (-384 -512 16 ) (0 -512 16 ) (0 -512 512 ) +4 117 119 (-384 -512 16 ) (-384 -512 512 ) (-384 0 512 ) (-384 0 16 ) +4 118 123 (0 -1024 0 ) (0 -1024 512 ) (-384 -1024 512 ) (-384 -1024 0 ) +4 118 120 (0 -512 0 ) (0 -1024 0 ) (-384 -1024 0 ) (-384 -512 0 ) +4 118 119 (-384 -512 0 ) (-384 -1024 0 ) (-384 -1024 512 ) (-384 -512 512 ) +4 119 123 (-384 -1024 512 ) (-1024 -1024 512 ) (-1024 -1024 0 ) (-384 -1024 0 ) +4 119 121 (-1024 0 512 ) (-1024 0 0 ) (-1024 -1024 0 ) (-1024 -1024 512 ) +4 119 120 (-1024 -1024 0 ) (-1024 0 0 ) (-384 0 0 ) (-384 -1024 0 ) +4 120 123 (0 -1024 -128 ) (0 -1024 0 ) (-1024 -1024 0 ) (-1024 -1024 -128 ) +4 120 121 (-1024 0 0 ) (-1024 0 -128 ) (-1024 -1024 -128 ) (-1024 -1024 0 ) +4 121 125 (-1024 -1024 -128 ) (-1024 -1024 512 ) (-2048 -1024 512 ) (-2048 -1024 -128 ) +4 121 122 (-2048 -1024 -128 ) (-2048 -1024 512 ) (-2048 0 512 ) (-2048 0 -128 ) +4 122 129 (-3072 0 512 ) (-3072 0 -128 ) (-3072 -1024 -128 ) (-3072 -1024 512 ) +4 122 126 (-2048 -1024 -128 ) (-2048 -1024 512 ) (-3072 -1024 512 ) (-3072 -1024 -128 ) +4 123 125 (-1024 -1024 512 ) (-1024 -1024 -128 ) (-1024 -2048 -128 ) (-1024 -2048 512 ) +4 123 124 (0 -2048 -128 ) (0 -2048 512 ) (-1024 -2048 512 ) (-1024 -2048 -128 ) +4 124 132 (0 -3072 -128 ) (0 -3072 512 ) (-1024 -3072 512 ) (-1024 -3072 -128 ) +4 124 127 (-1024 -3072 -128 ) (-1024 -3072 512 ) (-1024 -2048 512 ) (-1024 -2048 -128 ) +4 125 127 (-1024 -2048 -128 ) (-1024 -2048 512 ) (-2048 -2048 512 ) (-2048 -2048 -128 ) +4 125 126 (-2048 -1024 512 ) (-2048 -1024 -128 ) (-2048 -2048 -128 ) (-2048 -2048 512 ) +4 126 130 (-3072 -2048 -128 ) (-3072 -2048 512 ) (-3072 -1024 512 ) (-3072 -1024 -128 ) +4 126 128 (-2048 -2048 -128 ) (-2048 -2048 512 ) (-3072 -2048 512 ) (-3072 -2048 -128 ) +4 127 133 (-1024 -3072 -128 ) (-1024 -3072 512 ) (-2048 -3072 512 ) (-2048 -3072 -128 ) +4 127 128 (-2048 -2048 512 ) (-2048 -2048 -128 ) (-2048 -3072 -128 ) (-2048 -3072 512 ) +4 128 134 (-2048 -3072 -128 ) (-2048 -3072 512 ) (-3072 -3072 512 ) (-3072 -3072 -128 ) +4 128 131 (-3072 -3072 -128 ) (-3072 -3072 512 ) (-3072 -2048 512 ) (-3072 -2048 -128 ) +4 129 130 (-3072 -1024 -128 ) (-3072 -1024 512 ) (-4096 -1024 512 ) (-4096 -1024 -128 ) +4 130 131 (-3072 -2048 -128 ) (-3072 -2048 512 ) (-4096 -2048 512 ) (-4096 -2048 -128 ) +4 131 135 (-3072 -3072 -128 ) (-3072 -3072 512 ) (-4096 -3072 512 ) (-4096 -3072 -128 ) +4 132 133 (-1024 -3072 512 ) (-1024 -3072 -128 ) (-1024 -4096 -128 ) (-1024 -4096 512 ) +4 133 134 (-2048 -4096 -128 ) (-2048 -4096 512 ) (-2048 -3072 512 ) (-2048 -3072 -128 ) +4 134 135 (-3072 -3072 512 ) (-3072 -3072 -128 ) (-3072 -4096 -128 ) (-3072 -4096 512 ) diff --git a/MCDV/de_tavr_test.txt b/MCDV/de_tavr_test.txt new file mode 100644 index 0000000..c5036b7 --- /dev/null +++ b/MCDV/de_tavr_test.txt @@ -0,0 +1,8 @@ +// TAVR - AUTO RADAR. v 2.0.0 +de_tavr_test +{ + "material" "overviews/de_tavr_test" + "pos_x" "-2976.000000" + "pos_y" "1728.000000" + "scale" "5.560000" +} diff --git a/MCDV/de_tavr_test.vmf b/MCDV/de_tavr_test.vmf new file mode 100644 index 0000000..8f61044 --- /dev/null +++ b/MCDV/de_tavr_test.vmf @@ -0,0 +1,2504 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "8075" + "mapversion" "23" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ + visgroup + { + "name" "tavr_layout" + "visgroupid" "8" + "color" "138 131 224" + } + visgroup + { + "name" "some other user group" + "visgroupid" "9" + "color" "135 196 85" + } +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "64" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "23" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxpropscreenwidth" "-1" + "skyname" "sky_dust" + solid + { + "id" "185" + side + { + "id" "298" + "plane" "(-512 768 64) (96 768 64) (96 352 64)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299" + "plane" "(-512 352 0) (96 352 0) (96 768 0)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300" + "plane" "(-512 768 64) (-512 352 64) (-512 352 0)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "301" + "plane" "(96 768 0) (96 352 0) (96 352 64)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "302" + "plane" "(96 768 64) (-512 768 64) (-512 768 0)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303" + "plane" "(96 352 0) (-512 352 0) (-512 352 64)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "300" + side + { + "id" "364" + "plane" "(-2304 640 16) (-768 640 16) (-768 -512 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "4" + "startposition" "[-2304 -512 16]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 1 0 0 0 0 0 0" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row9" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row10" "0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row11" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row12" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row13" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row14" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1" + "row15" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1" + "row16" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 0.999999" + } + distances + { + "row0" "0.763826 5.96065 12.5153 11.6475 11.1909 12.9066 20.7165 59.8321 109.862 116.766 89.1189 49.6752 4.91888 8.91825 0.234844 0 0" + "row1" "1.78254 8.52386 18.5961 21.0923 21.34 21.7541 21.4265 58.4647 109.754 106.78 72.7322 21.6723 26.8507 32.7619 5.64012 0.870894 0" + "row2" "2.55907 11.1804 26.9376 31.3373 29.3567 23.0552 18.0893 43.67 92.4869 82.9494 47.8114 1.73953 47.8986 52.3774 17.9949 5.51942 0.402121" + "row3" "1.78254 14.677 35.1926 41.8045 38.7318 27.8384 16.0093 20.6234 61.7877 53.095 25.0551 23.1859 54.0371 59.3047 24.2145 11.0664 2.73138" + "row4" "1.63694 18.2671 43.4577 55.1048 50.0117 31.231 10.8698 3.26921 16.7716 16.8288 3.29499 25.0337 37.7807 37.9924 24.3008 13.7735 7.22036" + "row5" "3.24741 21.7096 46.8134 65.0489 62.0932 40.5125 16.1549 2.52058 2.1478 3.60571 9.07183 10.5268 16.4255 21.7405 23.416 20.4853 12.7837" + "row6" "4.76791 26.3295 45.9517 62.0595 69.6012 57.17 34.9446 15.8628 4.42009 4.53214 7.19137 15.8026 3.62021 11.6962 24.9565 27.5601 20.531" + "row7" "5.83217 29.6007 42.5486 53.2354 64.8815 65.7144 41.9498 23.9465 1.65824 3.26843 16.75 35.5101 19.0637 4.02733 24.9682 28.7601 26.3103" + "row8" "5.59904 24.9858 35.3134 42.3456 55.2584 60.8664 43.8817 28.0129 3.78515 5.82825 18.6055 47.9194 22.7065 10.0007 30.9776 32.6211 28.2304" + "row9" "2.91548 15.3807 22.0614 23.9927 34.4419 48.7846 40.3048 24.6801 18.9682 18.3385 26.9162 35.7643 2.61136 33.9433 45.9861 41.4042 24.6333" + "row10" "3.69475 0.409782 4.02504 4.39206 10.2888 28.1917 28.7027 28.2023 36.9964 35.4945 31.0129 24.6062 7.82129 40.561 61.1932 49.8747 17.7855" + "row11" "13.0442 17.3625 18.5573 16.353 9.72467 9.00115 20.4675 36.7003 46.5016 43.9336 38.5465 16.7722 10.7325 44.5016 61.7517 46.3358 10.7509" + "row12" "21.055 32.0003 36.7512 34.9153 26.3554 8.55539 11.8522 30.5639 35.4397 37.02 39.3416 16.0252 5.61727 34.2792 44.3682 31.903 5.96298" + "row13" "28.0745 41.23 50.3047 49.2251 41.4829 25.3881 2.09095 14.6461 18.8029 27.1146 32.8233 11.193 14.9957 26.9892 29.8068 20.0761 1.6942" + "row14" "31.1992 45.1235 54.0978 54.2644 44.8931 34.6672 19.4103 1.39018 4.93147 14.1383 20.0649 4.30915 19.2724 19.0168 17.7043 8.89077 0.869659" + "row15" "29.9086 44.0788 51.3673 51.7355 42.421 34.8036 26.1351 17.1994 14.7001 11.4436 4.85766 10.8429 14.2376 5.82297 3.0351 2.10151 0.759523" + "row16" "24.3625 37.7631 44.2721 42.6252 36.6075 32.8156 27.5449 27.1968 29.6473 30.3383 28.7483 20.2384 0.272941 7.48985 8.65207 4.45842 0.231886" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row9" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row10" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row11" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row12" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row13" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row14" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row15" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row16" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row9" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row10" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row11" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row12" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row13" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row14" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row15" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row16" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row9" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row10" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row11" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row12" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row13" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row14" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row15" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row16" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 1 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row8" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row9" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row10" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row11" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row12" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row13" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row14" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row15" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "365" + "plane" "(-2304 -512 0) (-768 -512 0) (-768 640 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366" + "plane" "(-2304 640 16) (-2304 -512 16) (-2304 -512 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367" + "plane" "(-768 640 0) (-768 -512 0) (-768 -512 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368" + "plane" "(-768 640 16) (-2304 640 16) (-2304 640 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369" + "plane" "(-768 -512 0) (-2304 -512 0) (-2304 -512 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 245 102" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "308" + side + { + "id" "381" + "plane" "(-1920 1600 64) (-960 1600 64) (-960 640 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1920 640 64]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "-0.0383041 0 -0.999266 -0.0605712 0 -0.998164 -0.080777 0 -0.996732 -0.220559 0 -0.975374 -0.409115 0 -0.912483 -0.466448 0 -0.884549 -0.412318 0 -0.91104 -0.243353 0 -0.969938 -0.192478 0 -0.981301" + "row1" "-0.0601442 0 -0.99819 -0.114831 0 -0.993385 -0.181855 0 -0.983325 -0.3369 0 -0.941541 -0.582697 0 -0.812689 -0.657509 0 -0.753447 -0.497548 0 -0.867436 -0.278393 0 -0.960467 -0.347922 0 -0.937523" + "row2" "-0.0567351 0 -0.998389 -0.136972 0 -0.990575 -0.314021 0 -0.949416 -0.739862 0 -0.672759 -0.956272 0 -0.292477 -0.916687 0 -0.399606 -0.642063 0 -0.766652 -0.538216 0 -0.842807 -0.37948 0 -0.9252" + "row3" "-0.0225022 0 -0.999747 -0.0894556 0 -0.995991 -0.248919 0 -0.968524 -0.991608 0 0.129284 -0.982957 0 0.183834 -0.979776 0 -0.200099 -0.76083 0 -0.648951 -0.66251 0 -0.749053 -0.414614 0 -0.909997" + "row4" "0 0 -1 -0.0382586 0 -0.999268 -0.264676 0 -0.964338 -0.869638 0 -0.49369 -0.977245 0 0.212115 -0.965225 0 0.261421 -0.829858 0 -0.557975 -0.736771 0 -0.676143 -0.529734 0 -0.848164" + "row5" "0 0 -1 -0.0174317 0 -0.999848 -0.253577 0 -0.967315 -0.751918 0 -0.659256 -0.959872 0 0.280437 -0.922153 0 0.386825 -0.999978 0 0.00658664 -0.939823 0 -0.341661 -0.835544 0 -0.549424" + "row6" "0 0 -1 -0.0219148 0 -0.99976 -0.267836 0 -0.963464 -0.775409 0 -0.631459 -0.92162 0 0.388094 -0.910088 0 0.414416 -0.996524 0 0.083303 -0.975373 0 -0.220562 0.513901 0 -0.85785" + "row7" "0 0 -1 0 0 -1 -0.036836 0 -0.999321 -0.518609 0 -0.855012 -0.899542 0 0.436834 -0.738005 0 0.674795 -0.978284 0 -0.20727 -0.640873 0 -0.767647 0.605817 0 -0.795604" + "row8" "0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 -0.306346 0 -0.95192 -0.307043 0 -0.951696 -0.321949 0 -0.946757 0.455059 0 -0.890461" + } + distances + { + "row0" "36.2889 43.8473 48.2149 55.8008 69.91 87.3168 97.7781 95.3492 79.5825" + "row1" "44.9055 50.5946 48.2234 56.1726 62.4508 72.3361 94.0449 115.51 93.9099" + "row2" "53.0774 55.26 36.7006 23.5966 35.6565 50.13 73.2842 128.466 85.8807" + "row3" "66.4376 68.1012 43.7816 23.8592 41.819 50.45 84.9463 134.364 66.7833" + "row4" "67.6884 68.478 59.5534 42.2632 53.8851 60.545 64.9867 138.519 65.5574" + "row5" "51.0246 57.5557 59.0688 49.671 57.3377 73.0954 79.8738 118.315 85.3877" + "row6" "23.3068 31.7503 36.5382 33.5801 45.5245 62.7161 62.6003 77.7924 39.6095" + "row7" "3.98724 9.99364 15.5487 14.3704 17.4743 32.2316 34.1009 55.8486 61.4499" + "row8" "0 0 4.59783 9.93177 7.62032 6.67879 31.0747 54.027 44.8724" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 1 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 1 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "380" + "plane" "(-1920 640 0) (-960 640 0) (-960 1600 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379" + "plane" "(-1920 1600 64) (-1920 640 64) (-1920 640 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378" + "plane" "(-960 1600 0) (-960 640 0) (-960 640 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-960 640 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "-0.224218 0 -0.974539 -0.326405 0 -0.94523 -0.205732 0 -0.978608 0.619766 0 -0.784787 0.640701 0 -0.76779 0.599388 0 -0.800459 0.843928 0 -0.536457 0.693591 0 -0.720369 0.618616 0 -0.785694" + "row1" "-0.223639 0 -0.974672 -0.332692 0 -0.943036 -0.231756 0 -0.972774 0.5633 0 -0.826252 0.556677 0 -0.830729 0.471812 0 -0.881699 0.82826 0 -0.560345 0.693041 0 -0.720898 0.607692 0 -0.794173" + "row2" "-0.222349 0 -0.974967 -0.338079 0 -0.941118 -0.25729 0 -0.966334 0.484227 0 -0.874943 0.45106 0 -0.892493 0.288452 0 -0.957494 0.809952 0 -0.586497 0.690428 0 -0.723401 0.59518 0 -0.803592" + "row3" "-0.2202 0 -0.975455 -0.34253 0 -0.939507 -0.281824 0 -0.959466 0.371185 0 -0.928559 0.319583 0 -0.947558 0.0423257 0 -0.999104 0.787744 0 -0.616002 0.685194 0 -0.72836 0.58046 0 -0.814289" + "row4" "-0.217025 0 -0.976166 -0.345856 0 -0.938288 -0.304897 0 -0.952385 0.232955 0 -0.972487 0.162783 0 -0.986662 -0.232034 0 -0.972708 0.75923 0 -0.650822 0.677109 0 -0.735883 0.563295 0 -0.826256" + "row5" "-0.212761 0 -0.977104 -0.348121 0 -0.93745 -0.326346 0 -0.945251 0.0729318 0 -0.997337 -0.0146876 0 -0.999892 -0.479211 0 -0.877699 0.722007 0 -0.691886 0.665778 0 -0.74615 0.543087 0 -0.839677" + "row6" "-0.207321 0 -0.978273 -0.349332 0 -0.936999 -0.345976 0 -0.938243 -0.0983915 0 -0.995148 -0.2001 0 -0.979776 -0.661624 0 -0.749836 0.672504 0 -0.740093 0.650674 0 -0.759357 0.519049 0 -0.854744" + "row7" "-0.200605 0 -0.979672 -0.349306 0 -0.937009 -0.36372 0 -0.931508 -0.265575 0 -0.96409 -0.376111 0 -0.926574 -0.773343 0 -0.633988 0.605551 0 -0.795806 0.631028 0 -0.77576 0.490157 0 -0.871634" + "row8" "-0.192478 0 -0.981301 -0.347922 0 -0.937523 -0.37948 0 -0.9252 -0.414614 0 -0.909997 -0.529734 0 -0.848164 -0.835544 0 -0.549424 0.513901 0 -0.85785 0.605817 0 -0.795604 0.455059 0 -0.890461" + } + distances + { + "row0" "77.7816 87.7057 77.9439 76.0797 63.8231 55.5755 57.567 66.6908 48.6504" + "row1" "78.5807 89.3163 79.5894 72.8797 60.8289 51.9088 56.4105 67.1245 48.9465" + "row2" "79.2297 90.7237 81.116 69.2884 58.0405 48.4691 54.8605 67.2279 49.0251" + "row3" "79.7205 91.9033 82.486 65.6137 55.7635 46.7854 52.9077 67.0258 48.9026" + "row4" "80.044 92.8553 83.666 62.8497 54.4924 48.3802 50.6432 66.5165 48.5553" + "row5" "80.1961 93.5495 84.6272 61.3693 54.5086 53.8623 48.1059 65.6978 47.9765" + "row6" "80.1724 93.9539 85.3378 61.4759 56.192 63.1785 45.3488 64.5742 47.166" + "row7" "79.9691 94.0789 85.7668 63.3073 59.8423 74.533 42.4657 63.1529 46.1279" + "row8" "79.5825 93.9099 85.8807 66.7833 65.5574 85.3877 39.6095 61.4499 44.8724" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row1" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row2" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row3" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row4" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row5" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row6" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row7" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row8" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0" + "row1" "0 0 0 0 0 0 1 1 1 9 1 0 0 0 0 0" + "row2" "0 0 0 0 0 1 1 1 1 9 9 0 0 0 0 0" + "row3" "0 0 0 0 0 1 1 1 1 9 9 0 0 0 0 0" + "row4" "0 0 0 0 0 1 1 1 1 9 9 0 0 0 0 0" + "row5" "0 0 0 0 0 1 1 9 9 9 9 0 0 0 0 0" + "row6" "0 0 0 0 0 1 1 9 9 9 9 0 0 0 0 0" + "row7" "0 0 0 0 0 1 1 9 9 9 1 0 0 0 0 0" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "377" + "plane" "(-960 1600 64) (-1920 1600 64) (-1920 1600 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376" + "plane" "(-960 640 0) (-1920 640 0) (-1920 640 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 245 102" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "315" + side + { + "id" "393" + "plane" "(-228.102 1875.52 30.8304) (35.3862 1821.39 67.8613) (-106.809 1342.6 47.8771)" + "material" "DEV/GRAYGRID" + "uaxis" "[0.825771 0.551937 0.116054 -329.551] 0.25" + "vaxis" "[0.546566 -0.833886 0.0768148 -422.897] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[35.3843 1821.39 67.8614]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.82611 0.521891 -0.212537 0.837109 0.541577 -0.0770887 0.837403 0.544774 -0.044471 0.734956 0.433703 -0.521288 0.829066 0.551756 0.0906384" + "row1" "0.818897 0.513041 -0.257286 0.813558 0.507016 -0.284707 0.829443 0.551707 0.0874323 0.806959 0.499952 -0.314428 0.82565 0.551937 0.116909" + "row2" "0.837393 0.54493 -0.0427119 0.753435 0.449642 -0.479747 0.792231 0.544618 0.275249 0.835171 0.549515 0.0228719 0.82577 0.551937 0.116054" + "row3" "0.82577 0.551937 0.116054 0.836876 0.547205 -0.014332 0.752058 0.529132 0.392973 0.82577 0.551937 0.116054 0.82577 0.551937 0.116054" + "row4" "0.82577 0.551937 0.116054 0.82577 0.551937 0.116054 0.683952 0.497448 0.533625 0.82577 0.551937 0.116054 0.82577 0.551937 0.116054" + } + distances + { + "row0" "140.186 213.995 170.848 102.213 15.3649" + "row1" "111.506 170.902 238.245 143.704 36.4854" + "row2" "72.874 97.318 296.827 241.443 114.458" + "row3" "73.087 86.6115 202.029 186.193 85.8231" + "row4" "50.9581 71.6066 74.9285 55.284 46" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "-0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268" + "row1" "-0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268" + "row2" "-0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268" + "row3" "-0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268" + "row4" "-0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268" + } + alphas + { + "row0" "0 0 0 0 0" + "row1" "0 0 0 0 0" + "row2" "0 0 0 0 0" + "row3" "0 0 0 0 0" + "row4" "0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 0 1 9 9 1" + "row1" "9 9 0 0 0 0 0 1" + "row2" "9 9 0 9 9 1 9 9" + "row3" "9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "392" + "plane" "(-701.519 1557.61 -51.8613) (-104.582 1342.6 32.0328) (37.6129 1821.39 52.017)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.825771 0.551937 0.116054 -9.55146] 0.25" + "vaxis" "[0.546566 -0.833886 0.0768148 -38.8971] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "391" + "plane" "(37.6129 1821.39 52.017) (-104.582 1342.6 32.0328) (-106.809 1342.6 47.8771)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.546566 0.833886 -0.0768148 38.8971] 0.25" + "vaxis" "[0.139173 0 -0.990268 57.1042] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390" + "plane" "(-228.102 1875.52 30.8304) (-703.746 1557.61 -36.017) (-701.519 1557.61 -51.8613)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.825771 0.551937 0.116054 -9.55146] 0.25" + "vaxis" "[0.139173 0 -0.990268 57.1042] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389" + "plane" "(-104.582 1342.6 32.0328) (-701.519 1557.61 -51.8613) (-703.746 1557.61 -36.017)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.825771 0.551937 0.116054 -9.55146] 0.25" + "vaxis" "[0.139173 0 -0.990268 57.1042] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388" + "plane" "(35.3862 1821.39 67.8613) (-228.102 1875.52 30.8304) (-225.876 1875.52 14.9861)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.825771 0.551937 0.116054 -9.55146] 0.25" + "vaxis" "[0.139173 0 -0.990268 57.1042] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 245 102" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "40" + side + { + "id" "105" + "plane" "(-4128 4128 544) (4128 4128 544) (4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "104" + "plane" "(-4128 4128 544) (-4128 -4128 544) (-4128 -4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103" + "plane" "(4128 4128 -160) (4128 -4128 -160) (4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "102" + "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "101" + "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "100" + "plane" "(4096 -4096 512) (4096 4096 512) (-4096 4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "52" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "42" + side + { + "id" "111" + "plane" "(-4128 -4128 -160) (4128 -4128 -160) (4128 4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "110" + "plane" "(-4128 4128 544) (-4128 -4128 544) (-4128 -4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "109" + "plane" "(4128 4128 -160) (4128 -4128 -160) (4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108" + "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "107" + "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "106" + "plane" "(4096 4096 -128) (4096 -4096 -128) (-4096 -4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "52" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "44" + side + { + "id" "117" + "plane" "(-4128 4128 544) (-4128 -4128 544) (-4128 -4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "116" + "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "115" + "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "114" + "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "113" + "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "112" + "plane" "(-4096 -4096 -128) (-4096 -4096 512) (-4096 4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "52" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "46" + side + { + "id" "123" + "plane" "(4128 4128 -160) (4128 -4128 -160) (4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "122" + "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121" + "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120" + "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "119" + "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "118" + "plane" "(4096 -4096 512) (4096 -4096 -128) (4096 4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "52" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "48" + side + { + "id" "129" + "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128" + "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127" + "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "126" + "plane" "(-4096 4096 512) (-4096 -4096 512) (-4096 -4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "125" + "plane" "(4096 4096 -128) (4096 -4096 -128) (4096 -4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "124" + "plane" "(-4096 4096 -128) (-4096 4096 512) (4096 4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "52" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "50" + side + { + "id" "135" + "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "134" + "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "133" + "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "132" + "plane" "(-4096 4096 512) (-4096 -4096 512) (-4096 -4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "131" + "plane" "(4096 4096 -128) (4096 -4096 -128) (4096 -4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "130" + "plane" "(-4096 -4096 512) (-4096 -4096 -128) (4096 -4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "52" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "78" + side + { + "id" "165" + "plane" "(-768 1024 16) (256 1024 16) (256 128 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "164" + "plane" "(-768 128 0) (256 128 0) (256 1024 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "163" + "plane" "(-768 1024 16) (-768 128 16) (-768 128 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "162" + "plane" "(256 1024 0) (256 128 0) (256 128 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "161" + "plane" "(256 1024 16) (-768 1024 16) (-768 1024 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "160" + "plane" "(256 128 0) (-768 128 0) (-768 128 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "79" + side + { + "id" "177" + "plane" "(-384 128 16) (256 128 16) (256 -512 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "176" + "plane" "(-384 -512 0) (256 -512 0) (256 128 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "175" + "plane" "(-384 128 16) (-384 -512 16) (-384 -512 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "174" + "plane" "(256 128 0) (256 -512 0) (256 -512 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "173" + "plane" "(256 128 16) (-384 128 16) (-384 128 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "172" + "plane" "(256 -512 0) (-384 -512 0) (-384 -512 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "81" + side + { + "id" "189" + "plane" "(256 640 16) (1408 640 16) (1408 -128 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "188" + "plane" "(256 -128 0) (1408 -128 0) (1408 640 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "187" + "plane" "(256 640 16) (256 -128 16) (256 -128 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "186" + "plane" "(1408 640 0) (1408 -128 0) (1408 -128 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "185" + "plane" "(1408 640 16) (256 640 16) (256 640 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "184" + "plane" "(1408 -128 0) (256 -128 0) (256 -128 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "96" + side + { + "id" "213" + "plane" "(-1408 2944 16) (-768 2944 16) (-768 1920 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "212" + "plane" "(-1408 1920 0) (-768 1920 0) (-768 2944 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "211" + "plane" "(-1408 2944 16) (-1408 1920 16) (-1408 1920 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "210" + "plane" "(-768 2944 0) (-768 1920 0) (-768 1920 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "209" + "plane" "(-768 2944 16) (-1408 2944 16) (-1408 2944 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "208" + "plane" "(-768 1920 0) (-1408 1920 0) (-1408 1920 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "97" + side + { + "id" "225" + "plane" "(-768 2432 16) (256 2432 16) (256 2048 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "224" + "plane" "(-768 2048 0) (256 2048 0) (256 2432 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "223" + "plane" "(-768 2432 16) (-768 2048 16) (-768 2048 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222" + "plane" "(256 2432 0) (256 2048 0) (256 2048 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221" + "plane" "(256 2432 16) (-768 2432 16) (-768 2432 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "220" + "plane" "(256 2048 0) (-768 2048 0) (-768 2048 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "99" + side + { + "id" "237" + "plane" "(1408 512 16) (2432 512 16) (2432 128 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "236" + "plane" "(1408 128 0) (2432 128 0) (2432 512 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "235" + "plane" "(1408 512 16) (1408 128 16) (1408 128 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "234" + "plane" "(2432 512 0) (2432 128 0) (2432 128 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "233" + "plane" "(2432 512 16) (1408 512 16) (1408 512 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232" + "plane" "(2432 128 0) (1408 128 0) (1408 128 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "100" + side + { + "id" "249" + "plane" "(1792 1664 16) (2176 1664 16) (2176 512 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248" + "plane" "(1792 512 0) (2176 512 0) (2176 1664 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247" + "plane" "(1792 1664 16) (1792 512 16) (1792 512 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246" + "plane" "(2176 1664 0) (2176 512 0) (2176 512 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245" + "plane" "(2176 1664 16) (1792 1664 16) (1792 1664 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244" + "plane" "(2176 512 0) (1792 512 0) (1792 512 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "102" + side + { + "id" "261" + "plane" "(256 2560 16) (2176 2560 16) (2176 1664 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260" + "plane" "(256 1664 0) (2176 1664 0) (2176 2560 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259" + "plane" "(256 2560 16) (256 1664 16) (256 1664 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258" + "plane" "(2176 2560 0) (2176 1664 0) (2176 1664 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "257" + "plane" "(2176 2560 16) (256 2560 16) (256 2560 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256" + "plane" "(2176 1664 0) (256 1664 0) (256 1664 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "105" + side + { + "id" "273" + "plane" "(-2304 1664 128) (-1920 1664 128) (-1920 640 128)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272" + "plane" "(-2304 640 0) (-1920 640 0) (-1920 1664 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "271" + "plane" "(-2304 1664 128) (-2304 640 128) (-2304 640 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "270" + "plane" "(-1920 1664 0) (-1920 640 0) (-1920 640 128)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "269" + "plane" "(-1920 1664 128) (-2304 1664 128) (-2304 1664 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "268" + "plane" "(-1920 640 0) (-2304 640 0) (-2304 640 128)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "108" + side + { + "id" "285" + "plane" "(-2304 2688 16) (-1408 2688 16) (-1408 1664 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284" + "plane" "(-2304 1664 0) (-1408 1664 0) (-1408 2688 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "283" + "plane" "(-2304 2688 16) (-2304 1664 16) (-2304 1664 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "282" + "plane" "(-1408 2688 0) (-1408 1664 0) (-1408 1664 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "281" + "plane" "(-1408 2688 16) (-2304 2688 16) (-2304 2688 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280" + "plane" "(-1408 1664 0) (-2304 1664 0) (-2304 1664 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + hidden + { + solid + { + "id" "144" + side + { + "id" "291" + "plane" "(-768 640 0) (-2048 640 0) (-2048 -512 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "290" + "plane" "(-768 -512 0) (-768 -512 64) (-768 640 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289" + "plane" "(-2048 640 0) (-2048 640 128) (-2048 -512 128)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "288" + "plane" "(-2048 -512 0) (-2048 -512 128) (-768 -512 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "287" + "plane" "(-768 640 0) (-768 640 64) (-2048 640 128)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "286" + "plane" "(-768 -512 64) (-2048 -512 128) (-2048 640 128)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "9" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + group + { + "id" "52" + editor + { + "color" "220 220 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } +} +entity +{ + "id" "195" + "classname" "func_buyzone" + "TeamNum" "2" + solid + { + "id" "186" + side + { + "id" "315" + "plane" "(-256 0 160) (224 0 160) (224 -384 160)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 68.2667] 3.75" + "vaxis" "[0 -1 0 0] 3" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "314" + "plane" "(-256 -384 16) (224 -384 16) (224 0 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 68.2667] 3.75" + "vaxis" "[0 -1 0 0] 3" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313" + "plane" "(-256 0 160) (-256 -384 160) (-256 -384 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 0] 3" + "vaxis" "[0 0 -1 14.2222] 1.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312" + "plane" "(224 0 16) (224 -384 16) (224 -384 160)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 0] 3" + "vaxis" "[0 0 -1 14.2222] 1.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "311" + "plane" "(224 0 160) (-256 0 160) (-256 0 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 68.2667] 3.75" + "vaxis" "[0 0 -1 14.2222] 1.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "310" + "plane" "(224 -384 16) (-256 -384 16) (-256 -384 160)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 68.2667] 3.75" + "vaxis" "[0 0 -1 14.2222] 1.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "202" + "classname" "func_buyzone" + "TeamNum" "3" + solid + { + "id" "203" + side + { + "id" "327" + "plane" "(-1328 2912 160) (-848 2912 160) (-848 2528 160)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 98.1333] 3.75" + "vaxis" "[0 -1 0 74.6667] 3" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326" + "plane" "(-1328 2528 16) (-848 2528 16) (-848 2912 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 98.1333] 3.75" + "vaxis" "[0 -1 0 74.6667] 3" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325" + "plane" "(-1328 2912 160) (-1328 2528 160) (-1328 2528 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 -74.6667] 3" + "vaxis" "[0 0 -1 14.2222] 1.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324" + "plane" "(-848 2912 16) (-848 2528 16) (-848 2528 160)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 -74.6667] 3" + "vaxis" "[0 0 -1 14.2222] 1.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "323" + "plane" "(-848 2912 160) (-1328 2912 160) (-1328 2912 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 98.1333] 3.75" + "vaxis" "[0 0 -1 14.2222] 1.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322" + "plane" "(-848 2528 16) (-1328 2528 16) (-1328 2528 160)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 98.1333] 3.75" + "vaxis" "[0 0 -1 14.2222] 1.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "216" + "classname" "func_bomb_target" + "heistbomb" "0" + solid + { + "id" "208" + side + { + "id" "339" + "plane" "(-2304 1440 304) (-2080 1440 304) (-2080 928 304)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 36.5714] 1.75" + "vaxis" "[0 -1 0 104] 4" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338" + "plane" "(-2304 928 128) (-2080 928 128) (-2080 1440 128)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 36.5714] 1.75" + "vaxis" "[0 -1 0 104] 4" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337" + "plane" "(-2304 1440 304) (-2304 928 304) (-2304 928 128)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 -104] 4" + "vaxis" "[0 0 -1 93.0909] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336" + "plane" "(-2080 1440 128) (-2080 928 128) (-2080 928 304)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 -104] 4" + "vaxis" "[0 0 -1 93.0909] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335" + "plane" "(-2080 1440 304) (-2304 1440 304) (-2304 1440 128)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 36.5714] 1.75" + "vaxis" "[0 0 -1 93.0909] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334" + "plane" "(-2080 928 128) (-2304 928 128) (-2304 928 304)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 36.5714] 1.75" + "vaxis" "[0 0 -1 93.0909] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupid" "9" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "221" + "classname" "func_bomb_target" + "heistbomb" "0" + solid + { + "id" "222" + side + { + "id" "351" + "plane" "(1968 1424 192) (2160 1424 192) (2160 1200 192)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 -82.2859] 1.75" + "vaxis" "[0 -1 0 44] 4" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350" + "plane" "(1968 1200 16) (2160 1200 16) (2160 1424 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 -82.2859] 1.75" + "vaxis" "[0 -1 0 44] 4" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349" + "plane" "(1968 1424 192) (1968 1200 192) (1968 1200 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 -44] 4" + "vaxis" "[0 0 -1 11.6364] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348" + "plane" "(2160 1424 16) (2160 1200 16) (2160 1200 192)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 -44] 4" + "vaxis" "[0 0 -1 11.6364] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347" + "plane" "(2160 1424 192) (1968 1424 192) (1968 1424 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 -82.2859] 1.75" + "vaxis" "[0 0 -1 11.6364] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346" + "plane" "(2160 1200 16) (1968 1200 16) (1968 1200 192)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 -82.2859] 1.75" + "vaxis" "[0 0 -1 11.6364] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "228" + side + { + "id" "363" + "plane" "(1872 1344 192) (1968 1344 192) (1968 1200 192)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 27.4284] 1.75" + "vaxis" "[0 -1 0 44] 4" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362" + "plane" "(1872 1200 16) (1968 1200 16) (1968 1344 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 27.4284] 1.75" + "vaxis" "[0 -1 0 44] 4" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361" + "plane" "(1872 1344 192) (1872 1200 192) (1872 1200 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 -44] 4" + "vaxis" "[0 0 -1 11.6364] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "360" + "plane" "(1968 1344 16) (1968 1200 16) (1968 1200 192)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 -44] 4" + "vaxis" "[0 0 -1 11.6364] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "359" + "plane" "(1968 1344 192) (1872 1344 192) (1872 1344 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 27.4284] 1.75" + "vaxis" "[0 0 -1 11.6364] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358" + "plane" "(1968 1200 16) (1872 1200 16) (1872 1200 192)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 27.4284] 1.75" + "vaxis" "[0 0 -1 11.6364] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "57" + "classname" "info_player_terrorist" + "angles" "0 0 0" + "enabled" "1" + "origin" "-288 -251.933 32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "59" + "classname" "light_environment" + "_ambient" "255 255 255 20" + "_ambientHDR" "-1 -1 -1 1" + "_AmbientScaleHDR" "1" + "_light" "255 255 255 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "angles" "-57 143 0" + "pitch" "-57" + "origin" "0 -99.5104 128" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/MCDV/de_tavr_test.vmx b/MCDV/de_tavr_test.vmx new file mode 100644 index 0000000..fc08e57 --- /dev/null +++ b/MCDV/de_tavr_test.vmx @@ -0,0 +1,2504 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "8075" + "mapversion" "23" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ + visgroup + { + "name" "tavr_layout" + "visgroupid" "8" + "color" "138 131 224" + } + visgroup + { + "name" "some other user group" + "visgroupid" "9" + "color" "135 196 85" + } +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "64" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "23" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxpropscreenwidth" "-1" + "skyname" "sky_dust" + solid + { + "id" "185" + side + { + "id" "298" + "plane" "(-512 768 64) (96 768 64) (96 352 64)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299" + "plane" "(-512 352 0) (96 352 0) (96 768 0)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300" + "plane" "(-512 768 64) (-512 352 64) (-512 352 0)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "301" + "plane" "(96 768 0) (96 352 0) (96 352 64)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "302" + "plane" "(96 768 64) (-512 768 64) (-512 768 0)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303" + "plane" "(96 352 0) (-512 352 0) (-512 352 64)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "300" + side + { + "id" "364" + "plane" "(-2304 640 16) (-768 640 16) (-768 -512 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "4" + "startposition" "[-2304 -512 16]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 1 0 0 0 0 0 0" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row9" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row10" "0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row11" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row12" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row13" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row14" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1" + "row15" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1" + "row16" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 0.999999" + } + distances + { + "row0" "0.763826 5.96065 12.5153 11.6475 11.1909 12.9066 20.7165 59.8321 109.862 116.766 89.1189 49.6752 4.91888 8.91825 0.234844 0 0" + "row1" "1.78254 8.52386 18.5961 21.0923 21.34 21.7541 21.4265 58.4647 109.754 106.78 72.7322 21.6723 26.8507 32.7619 5.64012 0.870894 0" + "row2" "2.55907 11.1804 26.9376 31.3373 29.3567 23.0552 18.0893 43.67 92.4869 82.9494 47.8114 1.73953 47.8986 52.3774 17.9949 5.51942 0.402121" + "row3" "1.78254 14.677 35.1926 41.8045 38.7318 27.8384 16.0093 20.6234 61.7877 53.095 25.0551 23.1859 54.0371 59.3047 24.2145 11.0664 2.73138" + "row4" "1.63694 18.2671 43.4577 55.1048 50.0117 31.231 10.8698 3.26921 16.7716 16.8288 3.29499 25.0337 37.7807 37.9924 24.3008 13.7735 7.22036" + "row5" "3.24741 21.7096 46.8134 65.0489 62.0932 40.5125 16.1549 2.52058 2.1478 3.60571 9.07183 10.5268 16.4255 21.7405 23.416 20.4853 12.7837" + "row6" "4.76791 26.3295 45.9517 62.0595 69.6012 57.17 34.9446 15.8628 4.42009 4.53214 7.19137 15.8026 3.62021 11.6962 24.9565 27.5601 20.531" + "row7" "5.83217 29.6007 42.5486 53.2354 64.8815 65.7144 41.9498 23.9465 1.65824 3.26843 16.75 35.5101 19.0637 4.02733 24.9682 28.7601 26.3103" + "row8" "5.59904 24.9858 35.3134 42.3456 55.2584 60.8664 43.8817 28.0129 3.78515 5.82825 18.6055 47.9194 22.7065 10.0007 30.9776 32.6211 28.2304" + "row9" "2.91548 15.3807 22.0614 23.9927 34.4419 48.7846 40.3048 24.6801 18.9682 18.3385 26.9162 35.7643 2.61136 33.9433 45.9861 41.4042 24.6333" + "row10" "3.69475 0.409782 4.02504 4.39206 10.2888 28.1917 28.7027 28.2023 36.9964 35.4945 31.0129 24.6062 7.82129 40.561 61.1932 49.8747 17.7855" + "row11" "13.0442 17.3625 18.5573 16.353 9.72467 9.00115 20.4675 36.7003 46.5016 43.9336 38.5465 16.7722 10.7325 44.5016 61.7517 46.3358 10.7509" + "row12" "21.055 32.0003 36.7512 34.9153 26.3554 8.55539 11.8522 30.5639 35.4397 37.02 39.3416 16.0252 5.61727 34.2792 44.3682 31.903 5.96298" + "row13" "28.0745 41.23 50.3047 49.2251 41.4829 25.3881 2.09095 14.6461 18.8029 27.1146 32.8233 11.193 14.9957 26.9892 29.8068 20.0761 1.6942" + "row14" "31.1992 45.1235 54.0978 54.2644 44.8931 34.6672 19.4103 1.39018 4.93147 14.1383 20.0649 4.30915 19.2724 19.0168 17.7043 8.89077 0.869659" + "row15" "29.9086 44.0788 51.3673 51.7355 42.421 34.8036 26.1351 17.1994 14.7001 11.4436 4.85766 10.8429 14.2376 5.82297 3.0351 2.10151 0.759523" + "row16" "24.3625 37.7631 44.2721 42.6252 36.6075 32.8156 27.5449 27.1968 29.6473 30.3383 28.7483 20.2384 0.272941 7.48985 8.65207 4.45842 0.231886" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row9" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row10" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row11" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row12" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row13" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row14" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row15" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row16" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row9" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row10" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row11" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row12" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row13" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row14" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row15" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row16" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row9" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row10" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row11" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row12" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row13" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row14" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row15" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row16" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 1 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row8" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row9" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row10" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row11" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row12" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row13" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row14" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row15" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "365" + "plane" "(-2304 -512 0) (-768 -512 0) (-768 640 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366" + "plane" "(-2304 640 16) (-2304 -512 16) (-2304 -512 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367" + "plane" "(-768 640 0) (-768 -512 0) (-768 -512 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368" + "plane" "(-768 640 16) (-2304 640 16) (-2304 640 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369" + "plane" "(-768 -512 0) (-2304 -512 0) (-2304 -512 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 245 102" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "308" + side + { + "id" "381" + "plane" "(-1920 1600 64) (-960 1600 64) (-960 640 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1920 640 64]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "-0.0383041 0 -0.999266 -0.0605712 0 -0.998164 -0.080777 0 -0.996732 -0.220559 0 -0.975374 -0.409115 0 -0.912483 -0.466448 0 -0.884549 -0.412318 0 -0.91104 -0.243353 0 -0.969938 -0.192478 0 -0.981301" + "row1" "-0.0601442 0 -0.99819 -0.114831 0 -0.993385 -0.181855 0 -0.983325 -0.3369 0 -0.941541 -0.582697 0 -0.812689 -0.657509 0 -0.753447 -0.497548 0 -0.867436 -0.278393 0 -0.960467 -0.347922 0 -0.937523" + "row2" "-0.0567351 0 -0.998389 -0.136972 0 -0.990575 -0.314021 0 -0.949416 -0.739862 0 -0.672759 -0.956272 0 -0.292477 -0.916687 0 -0.399606 -0.642063 0 -0.766652 -0.538216 0 -0.842807 -0.37948 0 -0.9252" + "row3" "-0.0225022 0 -0.999747 -0.0894556 0 -0.995991 -0.248919 0 -0.968524 -0.991608 0 0.129284 -0.982957 0 0.183834 -0.979776 0 -0.200099 -0.76083 0 -0.648951 -0.66251 0 -0.749053 -0.414614 0 -0.909997" + "row4" "0 0 -1 -0.0382586 0 -0.999268 -0.264676 0 -0.964338 -0.869638 0 -0.49369 -0.977245 0 0.212115 -0.965225 0 0.261421 -0.829858 0 -0.557975 -0.736771 0 -0.676143 -0.529734 0 -0.848164" + "row5" "0 0 -1 -0.0174317 0 -0.999848 -0.253577 0 -0.967315 -0.751918 0 -0.659256 -0.959872 0 0.280437 -0.922153 0 0.386825 -0.999978 0 0.00658664 -0.939823 0 -0.341661 -0.835544 0 -0.549424" + "row6" "0 0 -1 -0.0219148 0 -0.99976 -0.267836 0 -0.963464 -0.775409 0 -0.631459 -0.92162 0 0.388094 -0.910088 0 0.414416 -0.996524 0 0.083303 -0.975373 0 -0.220562 0.513901 0 -0.85785" + "row7" "0 0 -1 0 0 -1 -0.036836 0 -0.999321 -0.518609 0 -0.855012 -0.899542 0 0.436834 -0.738005 0 0.674795 -0.978284 0 -0.20727 -0.640873 0 -0.767647 0.605817 0 -0.795604" + "row8" "0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 -0.306346 0 -0.95192 -0.307043 0 -0.951696 -0.321949 0 -0.946757 0.455059 0 -0.890461" + } + distances + { + "row0" "36.2889 43.8473 48.2149 55.8008 69.91 87.3168 97.7781 95.3492 79.5825" + "row1" "44.9055 50.5946 48.2234 56.1726 62.4508 72.3361 94.0449 115.51 93.9099" + "row2" "53.0774 55.26 36.7006 23.5966 35.6565 50.13 73.2842 128.466 85.8807" + "row3" "66.4376 68.1012 43.7816 23.8592 41.819 50.45 84.9463 134.364 66.7833" + "row4" "67.6884 68.478 59.5534 42.2632 53.8851 60.545 64.9867 138.519 65.5574" + "row5" "51.0246 57.5557 59.0688 49.671 57.3377 73.0954 79.8738 118.315 85.3877" + "row6" "23.3068 31.7503 36.5382 33.5801 45.5245 62.7161 62.6003 77.7924 39.6095" + "row7" "3.98724 9.99364 15.5487 14.3704 17.4743 32.2316 34.1009 55.8486 61.4499" + "row8" "0 0 4.59783 9.93177 7.62032 6.67879 31.0747 54.027 44.8724" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 1 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 1 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "380" + "plane" "(-1920 640 0) (-960 640 0) (-960 1600 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379" + "plane" "(-1920 1600 64) (-1920 640 64) (-1920 640 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378" + "plane" "(-960 1600 0) (-960 640 0) (-960 640 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-960 640 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "-0.224218 0 -0.974539 -0.326405 0 -0.94523 -0.205732 0 -0.978608 0.619766 0 -0.784787 0.640701 0 -0.76779 0.599388 0 -0.800459 0.843928 0 -0.536457 0.693591 0 -0.720369 0.618616 0 -0.785694" + "row1" "-0.223639 0 -0.974672 -0.332692 0 -0.943036 -0.231756 0 -0.972774 0.5633 0 -0.826252 0.556677 0 -0.830729 0.471812 0 -0.881699 0.82826 0 -0.560345 0.693041 0 -0.720898 0.607692 0 -0.794173" + "row2" "-0.222349 0 -0.974967 -0.338079 0 -0.941118 -0.25729 0 -0.966334 0.484227 0 -0.874943 0.45106 0 -0.892493 0.288452 0 -0.957494 0.809952 0 -0.586497 0.690428 0 -0.723401 0.59518 0 -0.803592" + "row3" "-0.2202 0 -0.975455 -0.34253 0 -0.939507 -0.281824 0 -0.959466 0.371185 0 -0.928559 0.319583 0 -0.947558 0.0423257 0 -0.999104 0.787744 0 -0.616002 0.685194 0 -0.72836 0.58046 0 -0.814289" + "row4" "-0.217025 0 -0.976166 -0.345856 0 -0.938288 -0.304897 0 -0.952385 0.232955 0 -0.972487 0.162783 0 -0.986662 -0.232034 0 -0.972708 0.75923 0 -0.650822 0.677109 0 -0.735883 0.563295 0 -0.826256" + "row5" "-0.212761 0 -0.977104 -0.348121 0 -0.93745 -0.326346 0 -0.945251 0.0729318 0 -0.997337 -0.0146876 0 -0.999892 -0.479211 0 -0.877699 0.722007 0 -0.691886 0.665778 0 -0.74615 0.543087 0 -0.839677" + "row6" "-0.207321 0 -0.978273 -0.349332 0 -0.936999 -0.345976 0 -0.938243 -0.0983915 0 -0.995148 -0.2001 0 -0.979776 -0.661624 0 -0.749836 0.672504 0 -0.740093 0.650674 0 -0.759357 0.519049 0 -0.854744" + "row7" "-0.200605 0 -0.979672 -0.349306 0 -0.937009 -0.36372 0 -0.931508 -0.265575 0 -0.96409 -0.376111 0 -0.926574 -0.773343 0 -0.633988 0.605551 0 -0.795806 0.631028 0 -0.77576 0.490157 0 -0.871634" + "row8" "-0.192478 0 -0.981301 -0.347922 0 -0.937523 -0.37948 0 -0.9252 -0.414614 0 -0.909997 -0.529734 0 -0.848164 -0.835544 0 -0.549424 0.513901 0 -0.85785 0.605817 0 -0.795604 0.455059 0 -0.890461" + } + distances + { + "row0" "77.7816 87.7057 77.9439 76.0797 63.8231 55.5755 57.567 66.6908 48.6504" + "row1" "78.5807 89.3163 79.5894 72.8797 60.8289 51.9088 56.4105 67.1245 48.9465" + "row2" "79.2297 90.7237 81.116 69.2884 58.0405 48.4691 54.8605 67.2279 49.0251" + "row3" "79.7205 91.9033 82.486 65.6137 55.7635 46.7854 52.9077 67.0258 48.9026" + "row4" "80.044 92.8553 83.666 62.8497 54.4924 48.3802 50.6432 66.5165 48.5553" + "row5" "80.1961 93.5495 84.6272 61.3693 54.5086 53.8623 48.1059 65.6978 47.9765" + "row6" "80.1724 93.9539 85.3378 61.4759 56.192 63.1785 45.3488 64.5742 47.166" + "row7" "79.9691 94.0789 85.7668 63.3073 59.8423 74.533 42.4657 63.1529 46.1279" + "row8" "79.5825 93.9099 85.8807 66.7833 65.5574 85.3877 39.6095 61.4499 44.8724" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row1" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row2" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row3" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row4" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row5" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row6" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row7" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row8" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0" + "row1" "0 0 0 0 0 0 1 1 1 9 1 0 0 0 0 0" + "row2" "0 0 0 0 0 1 1 1 1 9 9 0 0 0 0 0" + "row3" "0 0 0 0 0 1 1 1 1 9 9 0 0 0 0 0" + "row4" "0 0 0 0 0 1 1 1 1 9 9 0 0 0 0 0" + "row5" "0 0 0 0 0 1 1 9 9 9 9 0 0 0 0 0" + "row6" "0 0 0 0 0 1 1 9 9 9 9 0 0 0 0 0" + "row7" "0 0 0 0 0 1 1 9 9 9 1 0 0 0 0 0" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "377" + "plane" "(-960 1600 64) (-1920 1600 64) (-1920 1600 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376" + "plane" "(-960 640 0) (-1920 640 0) (-1920 640 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 245 102" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "315" + side + { + "id" "393" + "plane" "(-228.102 1875.52 30.8304) (35.3862 1821.39 67.8613) (-106.809 1342.6 47.8771)" + "material" "DEV/GRAYGRID" + "uaxis" "[0.825771 0.551937 0.116054 -329.551] 0.25" + "vaxis" "[0.546566 -0.833886 0.0768148 -422.897] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[35.3862 1821.39 67.8613]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.82611 0.521891 -0.212537 0.837109 0.541577 -0.0770887 0.837403 0.544774 -0.044471 0.734956 0.433703 -0.521288 0.829066 0.551756 0.0906384" + "row1" "0.818897 0.513041 -0.257286 0.813558 0.507016 -0.284707 0.829443 0.551707 0.0874323 0.806959 0.499952 -0.314428 0.82565 0.551937 0.116909" + "row2" "0.837393 0.54493 -0.0427119 0.753435 0.449642 -0.479747 0.792231 0.544618 0.275249 0.835171 0.549515 0.0228719 0.82577 0.551937 0.116054" + "row3" "0.82577 0.551937 0.116054 0.836876 0.547205 -0.014332 0.752058 0.529132 0.392973 0.82577 0.551937 0.116054 0.82577 0.551937 0.116054" + "row4" "0.82577 0.551937 0.116054 0.82577 0.551937 0.116054 0.683952 0.497448 0.533625 0.82577 0.551937 0.116054 0.82577 0.551937 0.116054" + } + distances + { + "row0" "140.186 213.995 170.848 102.213 15.3649" + "row1" "111.506 170.902 238.245 143.704 36.4854" + "row2" "72.874 97.318 296.827 241.443 114.458" + "row3" "73.087 86.6115 202.029 186.193 85.8231" + "row4" "50.9581 71.6066 74.9285 55.284 46" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "-0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268" + "row1" "-0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268" + "row2" "-0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268" + "row3" "-0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268" + "row4" "-0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268 -0.139173 0 0.990268" + } + alphas + { + "row0" "0 0 0 0 0" + "row1" "0 0 0 0 0" + "row2" "0 0 0 0 0" + "row3" "0 0 0 0 0" + "row4" "0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 0 1 9 9 1" + "row1" "9 9 0 0 0 0 0 1" + "row2" "9 9 0 9 9 1 9 9" + "row3" "9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "392" + "plane" "(-701.519 1557.61 -51.8613) (-104.582 1342.6 32.0328) (37.6129 1821.39 52.017)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.825771 0.551937 0.116054 -9.55146] 0.25" + "vaxis" "[0.546566 -0.833886 0.0768148 -38.8971] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "391" + "plane" "(37.6129 1821.39 52.017) (-104.582 1342.6 32.0328) (-106.809 1342.6 47.8771)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.546566 0.833886 -0.0768148 38.8971] 0.25" + "vaxis" "[0.139173 0 -0.990268 57.1042] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390" + "plane" "(-228.102 1875.52 30.8304) (-703.746 1557.61 -36.017) (-701.519 1557.61 -51.8613)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.825771 0.551937 0.116054 -9.55146] 0.25" + "vaxis" "[0.139173 0 -0.990268 57.1042] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389" + "plane" "(-104.582 1342.6 32.0328) (-701.519 1557.61 -51.8613) (-703.746 1557.61 -36.017)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.825771 0.551937 0.116054 -9.55146] 0.25" + "vaxis" "[0.139173 0 -0.990268 57.1042] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388" + "plane" "(35.3862 1821.39 67.8613) (-228.102 1875.52 30.8304) (-225.876 1875.52 14.9861)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.825771 0.551937 0.116054 -9.55146] 0.25" + "vaxis" "[0.139173 0 -0.990268 57.1042] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 245 102" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "40" + side + { + "id" "105" + "plane" "(-4128 4128 544) (4128 4128 544) (4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "104" + "plane" "(-4128 4128 544) (-4128 -4128 544) (-4128 -4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103" + "plane" "(4128 4128 -160) (4128 -4128 -160) (4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "102" + "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "101" + "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "100" + "plane" "(4096 -4096 512) (4096 4096 512) (-4096 4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "52" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "42" + side + { + "id" "111" + "plane" "(-4128 -4128 -160) (4128 -4128 -160) (4128 4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "110" + "plane" "(-4128 4128 544) (-4128 -4128 544) (-4128 -4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "109" + "plane" "(4128 4128 -160) (4128 -4128 -160) (4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108" + "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "107" + "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "106" + "plane" "(4096 4096 -128) (4096 -4096 -128) (-4096 -4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "52" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "44" + side + { + "id" "117" + "plane" "(-4128 4128 544) (-4128 -4128 544) (-4128 -4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "116" + "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "115" + "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "114" + "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "113" + "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "112" + "plane" "(-4096 -4096 -128) (-4096 -4096 512) (-4096 4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "52" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "46" + side + { + "id" "123" + "plane" "(4128 4128 -160) (4128 -4128 -160) (4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "122" + "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121" + "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120" + "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "119" + "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "118" + "plane" "(4096 -4096 512) (4096 -4096 -128) (4096 4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "52" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "48" + side + { + "id" "129" + "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128" + "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127" + "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "126" + "plane" "(-4096 4096 512) (-4096 -4096 512) (-4096 -4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "125" + "plane" "(4096 4096 -128) (4096 -4096 -128) (4096 -4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "124" + "plane" "(-4096 4096 -128) (-4096 4096 512) (4096 4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "52" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "50" + side + { + "id" "135" + "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "134" + "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "133" + "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "132" + "plane" "(-4096 4096 512) (-4096 -4096 512) (-4096 -4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "131" + "plane" "(4096 4096 -128) (4096 -4096 -128) (4096 -4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "130" + "plane" "(-4096 -4096 512) (-4096 -4096 -128) (4096 -4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "52" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "78" + side + { + "id" "165" + "plane" "(-768 1024 16) (256 1024 16) (256 128 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "164" + "plane" "(-768 128 0) (256 128 0) (256 1024 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "163" + "plane" "(-768 1024 16) (-768 128 16) (-768 128 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "162" + "plane" "(256 1024 0) (256 128 0) (256 128 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "161" + "plane" "(256 1024 16) (-768 1024 16) (-768 1024 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "160" + "plane" "(256 128 0) (-768 128 0) (-768 128 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "79" + side + { + "id" "177" + "plane" "(-384 128 16) (256 128 16) (256 -512 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "176" + "plane" "(-384 -512 0) (256 -512 0) (256 128 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "175" + "plane" "(-384 128 16) (-384 -512 16) (-384 -512 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "174" + "plane" "(256 128 0) (256 -512 0) (256 -512 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "173" + "plane" "(256 128 16) (-384 128 16) (-384 128 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "172" + "plane" "(256 -512 0) (-384 -512 0) (-384 -512 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "81" + side + { + "id" "189" + "plane" "(256 640 16) (1408 640 16) (1408 -128 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "188" + "plane" "(256 -128 0) (1408 -128 0) (1408 640 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "187" + "plane" "(256 640 16) (256 -128 16) (256 -128 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "186" + "plane" "(1408 640 0) (1408 -128 0) (1408 -128 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "185" + "plane" "(1408 640 16) (256 640 16) (256 640 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "184" + "plane" "(1408 -128 0) (256 -128 0) (256 -128 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "96" + side + { + "id" "213" + "plane" "(-1408 2944 16) (-768 2944 16) (-768 1920 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "212" + "plane" "(-1408 1920 0) (-768 1920 0) (-768 2944 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "211" + "plane" "(-1408 2944 16) (-1408 1920 16) (-1408 1920 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "210" + "plane" "(-768 2944 0) (-768 1920 0) (-768 1920 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "209" + "plane" "(-768 2944 16) (-1408 2944 16) (-1408 2944 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "208" + "plane" "(-768 1920 0) (-1408 1920 0) (-1408 1920 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "97" + side + { + "id" "225" + "plane" "(-768 2432 16) (256 2432 16) (256 2048 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "224" + "plane" "(-768 2048 0) (256 2048 0) (256 2432 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "223" + "plane" "(-768 2432 16) (-768 2048 16) (-768 2048 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222" + "plane" "(256 2432 0) (256 2048 0) (256 2048 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221" + "plane" "(256 2432 16) (-768 2432 16) (-768 2432 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "220" + "plane" "(256 2048 0) (-768 2048 0) (-768 2048 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "99" + side + { + "id" "237" + "plane" "(1408 512 16) (2432 512 16) (2432 128 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "236" + "plane" "(1408 128 0) (2432 128 0) (2432 512 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "235" + "plane" "(1408 512 16) (1408 128 16) (1408 128 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "234" + "plane" "(2432 512 0) (2432 128 0) (2432 128 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "233" + "plane" "(2432 512 16) (1408 512 16) (1408 512 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232" + "plane" "(2432 128 0) (1408 128 0) (1408 128 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "100" + side + { + "id" "249" + "plane" "(1792 1664 16) (2176 1664 16) (2176 512 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248" + "plane" "(1792 512 0) (2176 512 0) (2176 1664 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247" + "plane" "(1792 1664 16) (1792 512 16) (1792 512 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246" + "plane" "(2176 1664 0) (2176 512 0) (2176 512 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245" + "plane" "(2176 1664 16) (1792 1664 16) (1792 1664 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244" + "plane" "(2176 512 0) (1792 512 0) (1792 512 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "102" + side + { + "id" "261" + "plane" "(256 2560 16) (2176 2560 16) (2176 1664 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260" + "plane" "(256 1664 0) (2176 1664 0) (2176 2560 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259" + "plane" "(256 2560 16) (256 1664 16) (256 1664 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258" + "plane" "(2176 2560 0) (2176 1664 0) (2176 1664 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "257" + "plane" "(2176 2560 16) (256 2560 16) (256 2560 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256" + "plane" "(2176 1664 0) (256 1664 0) (256 1664 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "105" + side + { + "id" "273" + "plane" "(-2304 1664 128) (-1920 1664 128) (-1920 640 128)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272" + "plane" "(-2304 640 0) (-1920 640 0) (-1920 1664 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "271" + "plane" "(-2304 1664 128) (-2304 640 128) (-2304 640 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "270" + "plane" "(-1920 1664 0) (-1920 640 0) (-1920 640 128)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "269" + "plane" "(-1920 1664 128) (-2304 1664 128) (-2304 1664 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "268" + "plane" "(-1920 640 0) (-2304 640 0) (-2304 640 128)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "108" + side + { + "id" "285" + "plane" "(-2304 2688 16) (-1408 2688 16) (-1408 1664 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284" + "plane" "(-2304 1664 0) (-1408 1664 0) (-1408 2688 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "283" + "plane" "(-2304 2688 16) (-2304 1664 16) (-2304 1664 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "282" + "plane" "(-1408 2688 0) (-1408 1664 0) (-1408 1664 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "281" + "plane" "(-1408 2688 16) (-2304 2688 16) (-2304 2688 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280" + "plane" "(-1408 1664 0) (-2304 1664 0) (-2304 1664 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + hidden + { + solid + { + "id" "144" + side + { + "id" "291" + "plane" "(-768 640 0) (-2048 640 0) (-2048 -512 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "290" + "plane" "(-768 -512 0) (-768 -512 64) (-768 640 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289" + "plane" "(-2048 640 0) (-2048 640 128) (-2048 -512 128)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "288" + "plane" "(-2048 -512 0) (-2048 -512 128) (-768 -512 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "287" + "plane" "(-768 640 0) (-768 640 64) (-2048 640 128)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "286" + "plane" "(-768 -512 64) (-2048 -512 128) (-2048 640 128)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 202" + "visgroupid" "9" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + group + { + "id" "52" + editor + { + "color" "220 220 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } +} +entity +{ + "id" "195" + "classname" "func_buyzone" + "TeamNum" "2" + solid + { + "id" "186" + side + { + "id" "315" + "plane" "(-256 0 160) (224 0 160) (224 -384 160)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 68.2667] 3.75" + "vaxis" "[0 -1 0 0] 3" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "314" + "plane" "(-256 -384 16) (224 -384 16) (224 0 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 68.2667] 3.75" + "vaxis" "[0 -1 0 0] 3" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313" + "plane" "(-256 0 160) (-256 -384 160) (-256 -384 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 0] 3" + "vaxis" "[0 0 -1 14.2222] 1.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312" + "plane" "(224 0 16) (224 -384 16) (224 -384 160)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 0] 3" + "vaxis" "[0 0 -1 14.2222] 1.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "311" + "plane" "(224 0 160) (-256 0 160) (-256 0 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 68.2667] 3.75" + "vaxis" "[0 0 -1 14.2222] 1.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "310" + "plane" "(224 -384 16) (-256 -384 16) (-256 -384 160)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 68.2667] 3.75" + "vaxis" "[0 0 -1 14.2222] 1.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "202" + "classname" "func_buyzone" + "TeamNum" "3" + solid + { + "id" "203" + side + { + "id" "327" + "plane" "(-1328 2912 160) (-848 2912 160) (-848 2528 160)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 98.1333] 3.75" + "vaxis" "[0 -1 0 74.6667] 3" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326" + "plane" "(-1328 2528 16) (-848 2528 16) (-848 2912 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 98.1333] 3.75" + "vaxis" "[0 -1 0 74.6667] 3" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325" + "plane" "(-1328 2912 160) (-1328 2528 160) (-1328 2528 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 -74.6667] 3" + "vaxis" "[0 0 -1 14.2222] 1.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324" + "plane" "(-848 2912 16) (-848 2528 16) (-848 2528 160)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 -74.6667] 3" + "vaxis" "[0 0 -1 14.2222] 1.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "323" + "plane" "(-848 2912 160) (-1328 2912 160) (-1328 2912 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 98.1333] 3.75" + "vaxis" "[0 0 -1 14.2222] 1.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322" + "plane" "(-848 2528 16) (-1328 2528 16) (-1328 2528 160)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 98.1333] 3.75" + "vaxis" "[0 0 -1 14.2222] 1.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "216" + "classname" "func_bomb_target" + "heistbomb" "0" + solid + { + "id" "208" + side + { + "id" "339" + "plane" "(-2304 1440 304) (-2080 1440 304) (-2080 928 304)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 36.5714] 1.75" + "vaxis" "[0 -1 0 104] 4" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338" + "plane" "(-2304 928 128) (-2080 928 128) (-2080 1440 128)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 36.5714] 1.75" + "vaxis" "[0 -1 0 104] 4" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337" + "plane" "(-2304 1440 304) (-2304 928 304) (-2304 928 128)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 -104] 4" + "vaxis" "[0 0 -1 93.0909] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336" + "plane" "(-2080 1440 128) (-2080 928 128) (-2080 928 304)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 -104] 4" + "vaxis" "[0 0 -1 93.0909] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335" + "plane" "(-2080 1440 304) (-2304 1440 304) (-2304 1440 128)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 36.5714] 1.75" + "vaxis" "[0 0 -1 93.0909] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334" + "plane" "(-2080 928 128) (-2304 928 128) (-2304 928 304)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 36.5714] 1.75" + "vaxis" "[0 0 -1 93.0909] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupid" "9" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "221" + "classname" "func_bomb_target" + "heistbomb" "0" + solid + { + "id" "222" + side + { + "id" "351" + "plane" "(1968 1424 192) (2160 1424 192) (2160 1200 192)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 -82.2859] 1.75" + "vaxis" "[0 -1 0 44] 4" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350" + "plane" "(1968 1200 16) (2160 1200 16) (2160 1424 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 -82.2859] 1.75" + "vaxis" "[0 -1 0 44] 4" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349" + "plane" "(1968 1424 192) (1968 1200 192) (1968 1200 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 -44] 4" + "vaxis" "[0 0 -1 11.6364] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348" + "plane" "(2160 1424 16) (2160 1200 16) (2160 1200 192)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 -44] 4" + "vaxis" "[0 0 -1 11.6364] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347" + "plane" "(2160 1424 192) (1968 1424 192) (1968 1424 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 -82.2859] 1.75" + "vaxis" "[0 0 -1 11.6364] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346" + "plane" "(2160 1200 16) (1968 1200 16) (1968 1200 192)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 -82.2859] 1.75" + "vaxis" "[0 0 -1 11.6364] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "228" + side + { + "id" "363" + "plane" "(1872 1344 192) (1968 1344 192) (1968 1200 192)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 27.4284] 1.75" + "vaxis" "[0 -1 0 44] 4" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362" + "plane" "(1872 1200 16) (1968 1200 16) (1968 1344 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 27.4284] 1.75" + "vaxis" "[0 -1 0 44] 4" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361" + "plane" "(1872 1344 192) (1872 1200 192) (1872 1200 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 -44] 4" + "vaxis" "[0 0 -1 11.6364] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "360" + "plane" "(1968 1344 16) (1968 1200 16) (1968 1200 192)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[0 1 0 -44] 4" + "vaxis" "[0 0 -1 11.6364] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "359" + "plane" "(1968 1344 192) (1872 1344 192) (1872 1344 16)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 27.4284] 1.75" + "vaxis" "[0 0 -1 11.6364] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358" + "plane" "(1968 1200 16) (1872 1200 16) (1872 1200 192)" + "material" "TERRI/TOOLS/TOOLS_TRIGGER" + "uaxis" "[1 0 0 27.4284] 1.75" + "vaxis" "[0 0 -1 11.6364] 1.375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "57" + "classname" "info_player_terrorist" + "angles" "0 0 0" + "enabled" "1" + "origin" "-288 -251.933 32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "59" + "classname" "light_environment" + "_ambient" "255 255 255 20" + "_ambientHDR" "-1 -1 -1 1" + "_AmbientScaleHDR" "1" + "_light" "255 255 255 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "angles" "-57 143 0" + "pitch" "-57" + "origin" "0 -99.5104 128" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/MCDV/de_tavr_test_displacement.vmf b/MCDV/de_tavr_test_displacement.vmf new file mode 100644 index 0000000..4ae1c26 --- /dev/null +++ b/MCDV/de_tavr_test_displacement.vmf @@ -0,0 +1,559 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "8075" + "mapversion" "16" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ + visgroup + { + "name" "tavr_layout" + "visgroupid" "5" + "color" "189 210 187" + } +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "64" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "16" + "classname" "worldspawn" + "skyname" "sky_dust" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-640 768 0) (640 768 0) (640 -512 0)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[0.987688 -0.156434 0 66] 0.5" + "vaxis" "[-0.156434 -0.987688 0 87] 0.54" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "4" + "startposition" "[-640 -512 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.999997 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999998 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0" + "row4" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0" + "row5" "0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999999" + "row6" "0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row7" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0" + "row8" "0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0" + "row9" "0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 -0.999997 0 0 0 0 0 0 0 0 0" + "row10" "0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0" + "row11" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + "row12" "0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + "row13" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0" + "row14" "0 0 0.999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0" + "row15" "0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row16" "0 0 0 0 0 0 0 0 0.999999 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 0 0 0 0 0.0385154 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 4.42443 15.4987 16.613 7.74498 1.25968 1.79838 0.636044 0.537196 0.0751644 0 0 0 0" + "row2" "0 0 3.08942 26.3328 90.0072 119.284 135.971 141.151 139.81 132.107 104.376 49.7137 14.77 1.98275 0 0 0" + "row3" "0 14.3079 91.0018 229.965 267.252 242.604 245.578 237.89 240.728 240.097 243.549 228.025 146.55 50.8582 11.7839 0 0" + "row4" "0.616301 43.0629 214.159 294.063 291.081 217.595 201.486 185.963 183.182 193.825 225.956 269.289 298.615 227.227 57.2838 3.84227 0" + "row5" "0 57.4654 202.103 247.84 132.111 57.9649 37.8031 18.2809 8.17264 17.8398 50.0396 98.0799 292.424 285.674 147.6 17.9227 0.100111" + "row6" "0 38.907 114.307 125.637 51.1548 17.3424 11.8295 6.77905 2.76239 11.6873 27.2538 31.7486 93.236 187.468 115.499 21.6401 0.376681" + "row7" "0.472294 22.136 57.0324 59.8289 22.7177 1.05757 0.466631 0 0 1.34787 9.18151 13.5148 25.1958 56.043 39.4425 11.9835 0" + "row8" "0 8.10998 11.9263 8.68832 0.116134 0 0 0 0 0 0.114259 0.72992 1.92647 2.87056 2.30716 0 0" + "row9" "0 0 0.472294 0 0 0 0 0 0 0 0 0.438167 0.286671 0.0381223 0 0 0" + "row10" "0 0 0 0.624247 11.7797 17.8885 5.30085 0 0 0 5.99712 42.3004 64.7569 18.5048 0 0 0" + "row11" "0 0 5.20828 81.566 216.157 202.268 28.3812 0 0 0.438167 32.7674 321.371 322.106 93.2047 0.286671 0 0" + "row12" "0 10.8707 32.5776 133.88 224.836 215.552 28.4163 0 0 0.684034 39.302 284.825 286.995 82.7605 0.675139 0 0" + "row13" "0.295727 17.605 46.8984 104.339 131.604 84.5317 6.78478 0 0 0 15.3013 59.0664 63.8291 23.6184 0 0 0" + "row14" "0.197215 14.1305 35.7062 37.6838 17.4001 0.557938 0 0 0 0 0 0.684034 0.675139 0 0 0 0" + "row15" "0 2.08137 9.48296 10.4704 5.76071 0 0 0 0 0 0 0 0 0 0 0 0" + "row16" "0 0 0.197215 0.557938 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row9" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row10" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row11" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row12" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row13" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row14" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row15" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row16" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row9" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row10" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row11" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row12" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row13" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row14" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row15" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row16" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row9" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row10" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row11" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row12" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row13" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row14" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row15" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row16" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 9 9 9 9 9 9" + "row3" "9 9 0 0 0 0 1 9 9 1 9 9 9 9 9 9 9 9 9 9 9 9 9 0 0 0 0 9 9 9 9 9" + "row4" "9 9 0 0 9 0 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 0 9 9 9" + "row5" "9 9 1 0 0 0 0 0 0 9 9 9 9 9 9 9 9 9 9 9 9 1 0 0 0 0 0 0 0 0 9 9" + "row6" "9 9 1 1 9 1 0 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 1 1 1 0 0 1 1 0 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row8" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row9" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 1 1 9 9 9 9 9 9 9" + "row10" "9 9 9 9 1 1 0 0 0 0 0 0 9 9 9 9 9 9 9 9 0 0 0 0 0 0 1 0 9 9 9 9" + "row11" "9 9 9 9 1 0 0 0 9 9 0 0 9 9 9 9 9 9 9 9 0 0 9 9 0 0 0 0 9 9 9 9" + "row12" "9 9 9 9 9 0 0 0 0 0 0 1 9 9 9 9 9 9 9 9 9 0 0 0 0 0 0 9 9 9 9 9" + "row13" "9 9 9 9 9 1 1 0 0 0 0 1 9 9 9 9 9 9 9 9 9 9 9 1 1 9 9 9 9 9 9 9" + "row14" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row15" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "2" + "plane" "(-640 -512 -64) (640 -512 -64) (640 768 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.987688 -0.156434 0 57.6964] 0.25" + "vaxis" "[-0.156434 -0.987688 0 -16.0945] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-640 768 0) (-640 -512 0) (-640 -512 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.156434 0.987688 0 16.0945] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(640 768 -64) (640 -512 -64) (640 -512 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.156434 0.987688 0 16.0945] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(640 768 0) (-640 768 0) (-640 768 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.987688 -0.156434 0 57.6964] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(640 -512 -64) (-640 -512 -64) (-640 -512 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.987688 -0.156434 0 57.6964] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 237 210" + "visgroupid" "5" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "58" + side + { + "id" "19" + "plane" "(-768 768 320) (-640 768 320) (-640 -512 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20" + "plane" "(-768 -512 -256) (-640 -512 -256) (-640 768 -256)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "21" + "plane" "(-768 768 320) (-768 -512 320) (-768 -512 -256)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22" + "plane" "(-640 768 -256) (-640 -512 -256) (-640 -512 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23" + "plane" "(-640 768 320) (-768 768 320) (-768 768 -256)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24" + "plane" "(-640 -512 -256) (-768 -512 -256) (-768 -512 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 140 181" + "visgroupid" "5" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "59" + side + { + "id" "36" + "plane" "(640 768 320) (768 768 320) (768 -512 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35" + "plane" "(640 -512 -256) (768 -512 -256) (768 768 -256)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "34" + "plane" "(640 768 320) (640 -512 320) (640 -512 -256)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33" + "plane" "(768 768 -256) (768 -512 -256) (768 -512 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32" + "plane" "(768 768 320) (640 768 320) (640 768 -256)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "31" + "plane" "(768 -512 -256) (640 -512 -256) (640 -512 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 140 181" + "visgroupid" "5" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "60" + side + { + "id" "48" + "plane" "(-640 896 320) (640 896 320) (640 768 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "47" + "plane" "(-640 768 -256) (640 768 -256) (640 896 -256)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "46" + "plane" "(-640 896 320) (-640 768 320) (-640 768 -256)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "45" + "plane" "(640 896 -256) (640 768 -256) (640 768 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "44" + "plane" "(640 896 320) (-640 896 320) (-640 896 -256)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "43" + "plane" "(640 768 -256) (-640 768 -256) (-640 768 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 140 181" + "visgroupid" "5" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "62" + side + { + "id" "60" + "plane" "(-640 -512 320) (640 -512 320) (640 -640 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59" + "plane" "(-640 -640 -256) (640 -640 -256) (640 -512 -256)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58" + "plane" "(-640 -512 320) (-640 -640 320) (-640 -640 -256)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57" + "plane" "(640 -512 -256) (640 -640 -256) (640 -640 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56" + "plane" "(640 -512 320) (-640 -512 320) (-640 -512 -256)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55" + "plane" "(640 -640 -256) (-640 -640 -256) (-640 -640 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 140 181" + "visgroupid" "5" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/MCDV/de_tavr_test_displacement.vmx b/MCDV/de_tavr_test_displacement.vmx new file mode 100644 index 0000000..2e95b2f --- /dev/null +++ b/MCDV/de_tavr_test_displacement.vmx @@ -0,0 +1,559 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "8075" + "mapversion" "15" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ + visgroup + { + "name" "tavr_layout" + "visgroupid" "5" + "color" "189 210 187" + } +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "64" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "15" + "classname" "worldspawn" + "skyname" "sky_dust" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-640 768 0) (640 768 0) (640 -512 0)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0.987688 -0.156434 0 121.696] 0.25" + "vaxis" "[-0.156434 -0.987688 0 -80.0945] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "4" + "startposition" "[-640 -512 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row9" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row10" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row11" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row12" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row13" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row14" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row15" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row16" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + distances + { + "row0" "8.02175 16.9236 22.4677 18.6469 7.88906 1.44341 2.79502 10.5368 34.3635 60.3812 86.2153 104.03 109.606 107.761 95.4944 78.7629 59.2619" + "row1" "28.6063 41.6285 45.8012 39.3579 28.3171 14.8005 8.64249 16.5952 35.5428 59.8842 84.1527 101.387 107.218 106.21 100.062 89.9535 68.844" + "row2" "57.1671 74.783 77.3126 67.313 49.4423 31.4189 16.8408 15.4829 29.4216 50.5057 65.8656 77.3476 84.0132 87.159 97.2594 94.5089 74.8491" + "row3" "77.2756 94.593 97.5668 85.8185 64.96 43.0779 22.7774 14.918 16.9547 27.1113 34.0605 38.3188 47.2075 65.1445 83.6134 87.7526 77.0697" + "row4" "86.7638 104.06 104.651 88.9075 63.0623 37.22 24.2016 14.8536 10.6825 7.3423 8.86698 12.6976 25.2993 50.1286 73.2205 83.5446 80.0817" + "row5" "90.9995 108.614 105.969 81.6367 44.8973 22.6503 12.0666 9.55789 8.11288 8.94452 11.967 16.4812 25.2885 50.2869 76.1279 91.5015 93.0505" + "row6" "96.3981 113.243 105.972 74.0924 30.3666 4.14618 3.54917 3.24425 1.10013 5.7062 18.0392 21.6804 31.2433 55.6198 83.9412 97.0502 96.7831" + "row7" "98.5616 114.625 106.657 75.7744 30.0462 1.21969 7.16068 13.0885 13.8346 2.73075 11.0681 19.6021 30.6527 56.9681 84.4816 96.8577 92.2067" + "row8" "97.2571 114.709 110.351 86.4357 41.2593 1.22886 20.969 32.0978 32.0855 18.3832 2.35648 12.4827 25.5248 56.8139 80.6238 89.2042 83.9218" + "row9" "95.5405 114.618 114.075 94.0206 51.1021 2.77425 28.185 40.8422 41.7537 30.3085 12.2254 3.08493 24.8852 53.3303 74.1496 81.3178 77.4948" + "row10" "84.0722 106.022 107.15 89.3638 50.8496 4.69723 21.5011 35.1207 40.4094 33.5104 17.9037 2.64984 26.0222 47.8624 64.1263 73.7462 72.3756" + "row11" "72.7675 95.1827 95.0275 77.9707 49.1836 13.1582 9.60727 20.1089 27.9113 24.7903 13.8121 7.52818 28.7825 44.5814 58.7234 72.8333 73.3159" + "row12" "75.3278 93.5059 89.97 70.9695 47.133 24.0171 8.87264 3.24379 1.94146 8.79439 24.2707 30.9094 33.3616 46.1829 64.8678 76.3218 76.1497" + "row13" "99.3787 112.273 98.1023 72.4893 54.8449 46.2948 40.9734 46.2787 55.4666 69.0758 79.6799 75.129 56.7263 55.8645 73.9881 89.5264 90.9848" + "row14" "123.874 129.98 119.033 89.87 62.8023 64.5508 76.54 86.9124 102.687 117.042 117.597 109.558 86.3996 77.1321 93.4435 101.926 99.5842" + "row15" "134.909 139.559 127.49 99.025 68.4937 68.4729 85.4738 103.151 121.164 132.6 133.287 122.363 99.1462 93.1907 103.092 106.141 103.385" + "row16" "123.67 129.003 116.856 85.699 58.3226 62.9087 78.6464 96.8633 113.117 122.269 124.693 114.623 92.6443 85.8197 91.917 95.9573 94.9618" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row9" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row10" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row11" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row12" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row13" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row14" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row15" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row16" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row9" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row10" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row11" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row12" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row13" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row14" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row15" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row16" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row9" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row10" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row11" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row12" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row13" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row14" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row15" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row16" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row8" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row9" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row10" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row11" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row12" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 1 1 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row13" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row14" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row15" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "2" + "plane" "(-640 -512 -64) (640 -512 -64) (640 768 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.987688 -0.156434 0 57.6964] 0.25" + "vaxis" "[-0.156434 -0.987688 0 -16.0945] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-640 768 0) (-640 -512 0) (-640 -512 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.156434 0.987688 0 16.0945] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(640 768 -64) (640 -512 -64) (640 -512 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.156434 0.987688 0 16.0945] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(640 768 0) (-640 768 0) (-640 768 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.987688 -0.156434 0 57.6964] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(640 -512 -64) (-640 -512 -64) (-640 -512 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.987688 -0.156434 0 57.6964] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 237 210" + "visgroupid" "5" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "58" + side + { + "id" "19" + "plane" "(-768 768 320) (-640 768 320) (-640 -512 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20" + "plane" "(-768 -512 -256) (-640 -512 -256) (-640 768 -256)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "21" + "plane" "(-768 768 320) (-768 -512 320) (-768 -512 -256)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22" + "plane" "(-640 768 -256) (-640 -512 -256) (-640 -512 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23" + "plane" "(-640 768 320) (-768 768 320) (-768 768 -256)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24" + "plane" "(-640 -512 -256) (-768 -512 -256) (-768 -512 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 140 181" + "visgroupid" "5" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "59" + side + { + "id" "36" + "plane" "(640 768 320) (768 768 320) (768 -512 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35" + "plane" "(640 -512 -256) (768 -512 -256) (768 768 -256)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "34" + "plane" "(640 768 320) (640 -512 320) (640 -512 -256)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33" + "plane" "(768 768 -256) (768 -512 -256) (768 -512 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32" + "plane" "(768 768 320) (640 768 320) (640 768 -256)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "31" + "plane" "(768 -512 -256) (640 -512 -256) (640 -512 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 140 181" + "visgroupid" "5" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "60" + side + { + "id" "48" + "plane" "(-640 896 320) (640 896 320) (640 768 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "47" + "plane" "(-640 768 -256) (640 768 -256) (640 896 -256)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "46" + "plane" "(-640 896 320) (-640 768 320) (-640 768 -256)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "45" + "plane" "(640 896 -256) (640 768 -256) (640 768 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "44" + "plane" "(640 896 320) (-640 896 320) (-640 896 -256)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "43" + "plane" "(640 768 -256) (-640 768 -256) (-640 768 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 140 181" + "visgroupid" "5" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "62" + side + { + "id" "60" + "plane" "(-640 -512 320) (640 -512 320) (640 -640 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59" + "plane" "(-640 -640 -256) (640 -640 -256) (640 -512 -256)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58" + "plane" "(-640 -512 320) (-640 -640 320) (-640 -640 -256)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57" + "plane" "(640 -512 -256) (640 -640 -256) (640 -640 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56" + "plane" "(640 -512 320) (-640 -512 320) (-640 -512 -256)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55" + "plane" "(640 -640 -256) (-640 -640 -256) (-640 -640 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 140 181" + "visgroupid" "5" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/MCDV/de_tavr_test_radar.dds b/MCDV/de_tavr_test_radar.dds new file mode 100644 index 0000000000000000000000000000000000000000..1a1d9e5c7590cd6229426a1872bb15c261557b1c GIT binary patch literal 4194431 zcmeF%SLnKlGpR|M=0z&>#0Z zhkw@({m*ZH`tF*qL{EzSQ{|FEuK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N 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 literal 0 HcmV?d00001 diff --git a/MCDV/depth.fs b/MCDV/depth.fs deleted file mode 100644 index 24fc069..0000000 --- a/MCDV/depth.fs +++ /dev/null @@ -1,19 +0,0 @@ -#version 330 core -out vec4 FragColor; - -uniform vec3 color; -uniform float test; - -uniform float HEIGHT_MIN; -uniform float HEIGHT_MAX; - -in vec3 FragPos; -in float Depth; -in float Alpha; - - -void main() -{ - float height = pow((Depth - HEIGHT_MIN) / HEIGHT_MAX, 2.2); - FragColor = vec4(height, height, height, Alpha); -} \ No newline at end of file diff --git a/MCDV/displacement-test.png b/MCDV/displacement-test.png new file mode 100644 index 0000000000000000000000000000000000000000..a1c5a0767f0ac9d6079e6bfb823b0ec6e053470e GIT binary patch literal 47243 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 +#include +#include + +#include "plane.h" +#include "convexPolytope.h" + +namespace fuzzy_select{ + + + Plane* find_plane_by_normal(std::vector planes, glm::vec3 normal, float error = 0.01f) { + for (auto && p : planes) { + if (glm::distance(p->normal, normal) < error) + return p; + } + + return NULL; + } + + // This just, doesnt work?? + BrushPolygon* find_bpoly_by_normal(std::vector polys, glm::vec3 normal, float error = 0.0001f) { + for (auto && p : polys) { + if (glm::distance(p.plane.normal, normal) < error) + return &p; + } + + return NULL; + } + +} \ No newline at end of file diff --git a/MCDV/main.cpp b/MCDV/main.cpp index 3be9e31..3af7a55 100644 --- a/MCDV/main.cpp +++ b/MCDV/main.cpp @@ -1,731 +1,245 @@ -const char* MCDV_VERSION = "1.5.3"; - -#include -#include #include -#include -#include -#include -#include -#include +#include "vmf.hpp" +// OPENGL +#include +#include #include "GLFWUtil.hpp" -#include "vbsp.hpp" -#include "nav.hpp" -#include "radar.hpp" -#include "util.h" - #include "Shader.hpp" -#include "Texture.hpp" -#include "Camera.hpp" -#include "Mesh.hpp" -#include "GameObject.hpp" -#include "TextFont.hpp" -#include "Console.hpp" -#include "FrameBuffer.hpp" +//#include "Texture.hpp" +//#include "Camera.hpp" +//#include "Mesh.hpp" +//#include "GameObject.hpp" +//#include "TextFont.hpp" +//#include "Console.hpp" +//#include "FrameBuffer.hpp" #include #include #include -#ifdef WIN32 -#include -#include -#endif - -void framebuffer_size_callback(GLFWwindow* window, int width, int height); -void processInput(GLFWwindow* window, util_keyHandler keys); -void mouse_callback(GLFWwindow* window, double xpos, double ypos); -void mouse_button_callback(GLFWwindow* window, int button, int action, int mods); -void scroll_callback(GLFWwindow* window, double xoffset, double yoffset); - -inline void opengl_render_opaque() { - glDisable(GL_BLEND); - glEnable(GL_DEPTH_TEST); - glDepthMask(GL_TRUE); -} -inline void opengl_render_additive() { - glDepthMask(GL_TRUE); - glEnable(GL_BLEND); - - // I still do not fully understand OPENGL blend modes. However these equations looks nice for the grid floor. - glBlendEquationSeparate(GL_FUNC_ADD, GL_FUNC_ADD); - glBlendFuncSeparate(GL_ONE, GL_ONE, GL_ZERO, GL_ONE); -} - -#define SOURCE_OGL_SCALEFACTOR 0.01f - -int window_width = 1024; -int window_height = 1024; - -float deltaTime = 0.0f; -float lastFrame = 0.0f; - -bool isClicking = false; - -double mousex = 0.0; -double mousey = 0.0; - -Camera camera; -Console console; - -int SV_WIREFRAME = 0; //0: off 1: overlay 2: only -int SV_RENDERMODE = 0; -int SV_PERSPECTIVE = 0; - -int M_HEIGHT_MIN = 0.0f; -int M_HEIGHT_MAX = 10.0f * 100.0f; - -int M_CLIP_NEAR = 0.1f * 100.0f; -int M_CLIP_FAR = 100.0f * 100.0f; - -int T_RENDER_RESOLUTION_X = 1024; -int T_RENDER_RESOLUTION_Y = 1024; -bool T_ARM_FOR_FB_RENDER = false; - -bool SV_DRAW_BSP = true; -bool SV_DRAW_NAV = false; - -bool V_DO_QUIT = false; - -std::string _filesrc_bsp; -std::string _filesrc_nav; - -Radar* _radar; - -Mesh* mesh_map_bsp = NULL; -Mesh* mesh_map_nav = NULL; - -int M_ORTHO_SIZE = 20; - -// Runtime UI stuffz -void update_globals_ui_text(TextFont* target); //Auto update the ui text -TextFont* ui_text_info; -TextFont* ui_text_loaded; - -//CCMDS -void _ccmd_renderbsp() { SV_RENDERMODE = 0; } -void _ccmd_rendernav() { SV_RENDERMODE = 1; } -void _ccmd_exit() { V_DO_QUIT = true; } -void _ccmd_perspective() { SV_PERSPECTIVE = 0; } -void _ccmd_orthographic() { SV_PERSPECTIVE = 1; } -void _ccmd_render_image() { T_ARM_FOR_FB_RENDER = true; } -void _ccmd_reset_ang() { camera.pitch = -90; camera.yaw = 0; camera.mouseUpdate(0, 0, true); } +#define STBI_MSC_SECURE_CRT +#define STB_IMAGE_WRITE_IMPLEMENTATION +#include "stb_image_write.h" -// Some windows stuff -#ifdef WIN32 -void _ccmd_open_generic_win() { - OPENFILENAME ofn; // common dialog box structure - char szFile[260]; // buffer for file name - //HWND hwnd; // owner window - HANDLE hf; // file handle - // Initialize OPENFILENAME - ZeroMemory(&ofn, sizeof(ofn)); - ofn.lStructSize = sizeof(ofn); - //ofn.hwndOwner = hwnd; - ofn.lpstrFile = szFile; - // Set lpstrFile[0] to '\0' so that GetOpenFileName does not - // use the contents of szFile to initialize itself. - ofn.lpstrFile[0] = '\0'; - ofn.nMaxFile = sizeof(szFile); - ofn.lpstrFilter = "Map Files (*.nav;*.bsp)\0*.NAV;*.BSP\0Nav Mesh\0*.NAV\0BSP file\0*.BSP\0"; - ofn.nFilterIndex = 1; - ofn.lpstrFileTitle = NULL; - ofn.nMaxFileTitle = 0; - ofn.lpstrInitialDir = NULL; - ofn.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST; +void render_to_png(int x, int y, const char* filepath){ + void* data = malloc(3 * x * y); - // Display the Open dialog box. + glReadPixels(0, 0, x, y, GL_RGB, GL_UNSIGNED_BYTE, data); - if (GetOpenFileName(&ofn) == TRUE) { - - if (split(ofn.lpstrFile, '.').back() == "bsp") { - vbsp_level bsp_map(ofn.lpstrFile, true); - mesh_map_bsp = new Mesh(bsp_map.generate_bigmesh()); - std::cout << "Opening BSP file" << std::endl; - } - - if (split(ofn.lpstrFile, '.').back() == "nav") { - Nav::Mesh bob(ofn.lpstrFile); - mesh_map_nav = new Mesh(bob.generateGLMesh()); - std::cout << "Opening NAV mesh file" << std::endl; - } - } - else { - console.FeedBack("Couldn't read file. (getopenfilename)", MSG_STATUS::ERR); - mesh_map_nav = NULL; - } -} - -void _ccmd_open_nav_win() { - OPENFILENAME ofn; // common dialog box structure - char szFile[260]; // buffer for file name - //HWND hwnd; // owner window - HANDLE hf; // file handle - // Initialize OPENFILENAME - ZeroMemory(&ofn, sizeof(ofn)); - ofn.lStructSize = sizeof(ofn); - //ofn.hwndOwner = hwnd; - ofn.lpstrFile = szFile; - // Set lpstrFile[0] to '\0' so that GetOpenFileName does not - // use the contents of szFile to initialize itself. - ofn.lpstrFile[0] = '\0'; - ofn.nMaxFile = sizeof(szFile); - ofn.lpstrFilter = "Nav Mesh\0*.NAV\0"; - ofn.nFilterIndex = 1; - ofn.lpstrFileTitle = NULL; - ofn.nMaxFileTitle = 0; - ofn.lpstrInitialDir = NULL; - ofn.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST; - - // Display the Open dialog box. - - if (GetOpenFileName(&ofn) == TRUE) { - - Nav::Mesh bob(ofn.lpstrFile); - //mesh_map_nav->~Mesh(); //Destroy old mesh - mesh_map_nav = new Mesh(bob.generateGLMesh()); - - } - else { - console.FeedBack("Couldn't read file. (getopenfilename)"); - mesh_map_nav = NULL; - } -} - -void _ccmd_open_bsp_win() { - OPENFILENAME ofn; // common dialog box structure - char szFile[260]; // buffer for file name - //HWND hwnd; // owner window - HANDLE hf; // file handle - // Initialize OPENFILENAME - ZeroMemory(&ofn, sizeof(ofn)); - ofn.lStructSize = sizeof(ofn); - //ofn.hwndOwner = hwnd; - ofn.lpstrFile = szFile; - // Set lpstrFile[0] to '\0' so that GetOpenFileName does not - // use the contents of szFile to initialize itself. - ofn.lpstrFile[0] = '\0'; - ofn.nMaxFile = sizeof(szFile); - ofn.lpstrFilter = "BSP file\0*.BSP\0"; - ofn.nFilterIndex = 1; - ofn.lpstrFileTitle = NULL; - ofn.nMaxFileTitle = 0; - ofn.lpstrInitialDir = NULL; - ofn.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST; - - // Display the Open dialog box. - - if (GetOpenFileName(&ofn) == TRUE) { - - vbsp_level bsp_map(ofn.lpstrFile, true); - mesh_map_bsp = new Mesh(bsp_map.generate_bigmesh()); - - } - else { - console.FeedBack("Couldn't read file. (getopenfilename)"); - mesh_map_bsp = NULL; + if (data != 0) { + stbi_flip_vertically_on_write(true); + stbi_write_png(filepath, x, y, 3, data, x * 3); } } -#endif - -void _ccmd_help() { - console.FeedBack(R"TERRI00( - -Controls: - WASD Fly - Click and drag Look around - ` or ~ key Open console - -Commands: - General: - QUIT / EXIT Closes (wow!) - NAV View nav mesh - BSP View bsp file - HELP Helps you out - - Camera: - PERSPECTIVE / PERSP Switches to perspective view - ORTHOGRAPHIC / ORTHO Switches to orthographic view - OSIZE / SIZE Changes the orthographic scale - LOOKDOWN Sets yaw to 0, pitch to -90 - - RENDER Renders the view to render.png - - Variables: - RENDERMODE Same as nav/bsp switch - PROJMATRIX Same as persp/ortho - - Variables (the actual height stuff): - MIN Minimum levels of height (units) - MAX Maximum levels of height (units) - - FARZ Far clip plane of the camera - NEARZ Near clip plane of the camera -)TERRI00", MSG_STATUS::SUCCESS); -} - -void _ccmd_thanks() { - console.FeedBack(R"TERRI00( - -Thank you: - JamDoggie - CrTech - JimWood)TERRI00", MSG_STATUS::THANKS); -} int main(int argc, char* argv[]) { - _filesrc_bsp = "none"; - _filesrc_nav = "none"; + std::cout << "Loading VMF\n"; + vmf::vmf vmf_main("blimey.vmf"); - _chdir(argv[0]); //Reset working directory + std::cout << "Initializing OpenGL\n"; - std::cout << argv[0] << std::endl; +#pragma region init_opengl - for (int i = 1; i < argc; ++i) { - char* _arg = argv[i]; - std::string arg = _arg; - - if (split(arg, '.').back() == "bsp") { - _filesrc_bsp = arg; - } - - if (split(arg, '.').back() == "nav") { - _filesrc_nav = arg; - } - } - -#pragma region Initialisation - - std::cout << "CS:GO Heightmap generator" << std::endl; - - //Initialize OpenGL glfwInit(); glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); //We are using version 3.3 of openGL glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3); glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); glfwWindowHint(GLFW_RESIZABLE, GL_FALSE); - //glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE); - - //Creating the window - GLFWwindow* window = glfwCreateWindow(window_width, window_height, "CS:GO Heightmap generator", NULL, NULL); + glfwWindowHint(GLFW_VISIBLE, GL_FALSE); // Window le nope + + //Create window + GLFWwindow* window = glfwCreateWindow(1, 1, "If you are seeing this window, something is broken", NULL, NULL); //Check if window open - if (window == NULL) - { + if (window == NULL){ std::cout << "Failed to create GLFW window" << std::endl; glfwTerminate(); return -1; } glfwMakeContextCurrent(window); //Settingn up glad - if (!gladLoadGLLoader((GLADloadproc)glfwGetProcAddress)) - { + if (!gladLoadGLLoader((GLADloadproc)glfwGetProcAddress)){ std::cout << "Failed to initialize GLAD" << std::endl; return -1; } - //Viewport - glViewport(0, 0, 1024, 1024); - glfwSetFramebufferSizeCallback(window, framebuffer_size_callback); - - //Mouse - glfwSetCursorPosCallback(window, mouse_callback); - glfwSetScrollCallback(window, scroll_callback); - glfwSetMouseButtonCallback(window, mouse_button_callback); - -#pragma endregion - - // configure global opengl state - // ----------------------------- glEnable(GL_DEPTH_TEST); - //The unlit shader thing - Shader shader_unlit("shaders/unlit.vs", "shaders/unlit.fs"); - Shader shader_lit("shaders/depth.vs", "shaders/depth.fs"); - - //Mesh handling ----------------------------------------------------------------------------- - - if (_filesrc_bsp != "none") { - vbsp_level bsp_map(_filesrc_bsp, true); - mesh_map_bsp = new Mesh(bsp_map.generate_bigmesh()); - } - - if (_filesrc_nav != "none") { - Nav::Mesh bob(_filesrc_nav); - mesh_map_nav = new Mesh(bob.generateGLMesh()); - } - - //Radar rtest("de_overpass.txt"); - //_radar = &rtest; - - //VertAlphaMesh t300(vbsp_level::genVertAlpha(t200.vertices, t201.vertices)); - - util_keyHandler keys(window); - //Create camera (test) - camera = Camera(&keys); - - glEnable(GL_CULL_FACE); - glCullFace(GL_FRONT); - - float _gs = 4096.0f; - float _uvs = 8.0f; - - // World Grid - Mesh* world_grid_mesh = new Mesh(std::vector{ - -(_gs * SOURCE_OGL_SCALEFACTOR), -0.0025f, -(_gs * SOURCE_OGL_SCALEFACTOR), -_uvs, -_uvs, - -(_gs * SOURCE_OGL_SCALEFACTOR), -0.0025f, _gs * SOURCE_OGL_SCALEFACTOR, -_uvs, _uvs, - _gs * SOURCE_OGL_SCALEFACTOR, -0.0025f, -(_gs * SOURCE_OGL_SCALEFACTOR), _uvs, -_uvs, - -(_gs * SOURCE_OGL_SCALEFACTOR), -0.0025f, _gs * SOURCE_OGL_SCALEFACTOR, -_uvs, _uvs, - _gs * SOURCE_OGL_SCALEFACTOR, -0.0025f, _gs * SOURCE_OGL_SCALEFACTOR, _uvs, _uvs, - _gs * SOURCE_OGL_SCALEFACTOR, -0.0025f, -(_gs * SOURCE_OGL_SCALEFACTOR), _uvs, -_uvs - }, MeshMode::POS_XYZ_TEXCOORD_UV); - - Mesh* world_grid_mesh_t = new Mesh(std::vector{ - -2.560f, -2.560f, 0.0f, -1.0f, -1.0f, 0.0f, - -2.560f, 2.560f, 0.0f, -1.0f, 1.0f, 0.0f, - 2.560f, -2.560f, 0.0f, 1.0f, -1.0f, 0.0f, - -2.560f, 2.560f, 0.0f, -1.0f, 1.0f, 0.0f, - 2.560f, 2.560f, 0.0f, 1.0f, 1.0f, 0.0f, - 2.560f, -2.560f, 0.0f, 1.0f, -1.0f, 0.0f - }); - - Texture world_grid_mesh_texture("textures/grid.png"); - - Shader world_grid_shader("shaders/worldgrid.vs", "shaders/worldgrid.fs"); - - TextFont::init(); //Setup textfonts before we use it - - /* - ui_text_info = new TextFont("Hello World!"); - ui_text_info->size = glm::vec2(1.0f / window_width, 1.0f / window_height) * 2.0f; - ui_text_info->alpha = 1.0f; - ui_text_info->color = glm::vec3(0.75f, 0.75f, 0.75f); - ui_text_info->screenPosition = glm::vec2(0, (1.0f / window_height) * 15.0f); */ - - - ui_text_loaded = new TextFont("Currently Loaded:\n " + std::string(_filesrc_bsp) + "\n " + std::string(_filesrc_nav)); - ui_text_loaded->size = glm::vec2(1.0f / window_width, 1.0f / window_height) * 2.0f; - ui_text_loaded->alpha = 1.0f; - ui_text_loaded->color = glm::vec3(0.88f, 0.75f, 0.1f); - ui_text_loaded->screenPosition = glm::vec2(0, 1.0f - ((1.0f / window_height) * 45.0f)); - - //update_globals_ui_text(ui_text_info); //Update globals - - //Generate console - console = Console(&keys, &window_width, &window_height); - console.RegisterCVar("RENDERMODE", &SV_RENDERMODE); - - //Experimental -#ifdef WIN32 - console.RegisterCmd("OPENNAV", &_ccmd_open_nav_win); - console.RegisterCmd("OPENBSP", &_ccmd_open_bsp_win); - console.RegisterCmd("OPEN", &_ccmd_open_generic_win); -#endif - - //Help - console.RegisterCmd("HELP", &_ccmd_help); - - //Quit ccmds - console.RegisterCmd("QUIT", &_ccmd_exit); - console.RegisterCmd("EXIT", &_ccmd_exit); - - //Render modes - console.RegisterCmd("NAV", &_ccmd_rendernav); - console.RegisterCmd("BSP", &_ccmd_renderbsp); - - console.RegisterCmd("PERSPECTIVE", &_ccmd_perspective); - console.RegisterCmd("PERSP", &_ccmd_perspective); - console.RegisterCmd("ORTHOGRAPHIC", &_ccmd_orthographic); - console.RegisterCmd("ORTHO", &_ccmd_orthographic); - console.RegisterCmd("LOOKDOWN", &_ccmd_reset_ang); - - //console.RegisterCVar("SX", &T_RENDER_RESOLUTION_X); - //console.RegisterCVar("SY", &T_RENDER_RESOLUTION_Y); - console.RegisterCmd("RENDER", &_ccmd_render_image); - - //Register CVARS - console.RegisterCVar("RENDERMODE", &SV_RENDERMODE); - console.RegisterCVar("PROJMATRIX", &SV_PERSPECTIVE); - console.RegisterCVar("MIN", &M_HEIGHT_MIN); - console.RegisterCVar("MAX", &M_HEIGHT_MAX); - console.RegisterCVar("OSIZE", &M_ORTHO_SIZE); - console.RegisterCVar("SIZE", &M_ORTHO_SIZE); - - //Far/near - console.RegisterCVar("FARZ", &M_CLIP_FAR); - console.RegisterCVar("NEARZ", &M_CLIP_NEAR); - - //Thanks - console.RegisterCmd("THANKS", &_ccmd_thanks); - console.FeedBack(std::string("CSGO Heightmap - Version : ") + MCDV_VERSION, MSG_STATUS::THANKS); - - //FrameBuffer t_frame_buffer = FrameBuffer(); - - //The main loop - while (!glfwWindowShouldClose(window)) - { - float currentFrame = glfwGetTime(); - deltaTime = currentFrame - lastFrame; - lastFrame = currentFrame; - - //Input - processInput(window, keys); - if (!console.isEnabled) - camera.handleInput(deltaTime); - - console.handleKeysTick(); - - if (T_ARM_FOR_FB_RENDER) { - //t_frame_buffer.Bind(); - glViewport(0, 0, T_RENDER_RESOLUTION_X, T_RENDER_RESOLUTION_Y); - } - - //Rendering commands - glClearColor(0.05f, 0.05f, 0.05f, 1.0f); - + glViewport(0, 0, 1024, 1024); - if (T_ARM_FOR_FB_RENDER) glClearColor(0.0f, 1.0f, 0.00f, 1.0f); + glClearColor(0.00f, 0.00f, 0.00f, 1.0f); - glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); - glPolygonMode(GL_FRONT, GL_FILL); +#pragma endregion +#pragma region init_framebuffer - opengl_render_opaque(); + unsigned int framebuffer; + glGenFramebuffers(1, &framebuffer); + glBindFramebuffer(GL_FRAMEBUFFER, framebuffer); + // generate texture + unsigned int texColorBuffer; + glGenTextures(1, &texColorBuffer); + glBindTexture(GL_TEXTURE_2D, texColorBuffer); + glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 1024, 1024, 0, GL_RGB, GL_UNSIGNED_BYTE, NULL); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); + glBindTexture(GL_TEXTURE_2D, 0); - shader_lit.use(); - if (SV_PERSPECTIVE == 0) - shader_lit.setMatrix("projection", glm::perspective(glm::radians(90.0f / 2), (float)window_width / (float)window_height, (float)M_CLIP_NEAR * 0.01f, (float)M_CLIP_FAR * 0.01f)); - else - shader_lit.setMatrix("projection", glm::ortho(-(float)M_ORTHO_SIZE, (float)M_ORTHO_SIZE, -(float)M_ORTHO_SIZE, (float)M_ORTHO_SIZE, (float)M_CLIP_NEAR * 0.01f, (float)M_CLIP_FAR * 0.01f)); + // attach it to currently bound framebuffer object + glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, texColorBuffer, 0); - shader_lit.setMatrix("view", camera.getViewMatrix()); + unsigned int rbo; + glGenRenderbuffers(1, &rbo); + glBindRenderbuffer(GL_RENDERBUFFER, rbo); + glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH24_STENCIL8, 1024, 1024); + glBindRenderbuffer(GL_RENDERBUFFER, 0); - glm::mat4 model = glm::mat4(); - shader_lit.setMatrix("model", model); + glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_STENCIL_ATTACHMENT, GL_RENDERBUFFER, rbo); - shader_lit.setVec3("color", 0.0f, 0.0f, 1.0f); - shader_lit.setFloat("HEIGHT_MIN", (float)M_HEIGHT_MIN * 0.01f); - shader_lit.setFloat("HEIGHT_MAX", (float)M_HEIGHT_MAX * 0.01f); + if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) + std::cout << "ERROR::FRAMEBUFFER:: Framebuffer is not complete!" << std::endl; + //glBindFramebuffer(GL_FRAMEBUFFER, 0); +#pragma endregion - if (SV_RENDERMODE == 0) { - glEnable(GL_CULL_FACE); - if (mesh_map_bsp != NULL) - mesh_map_bsp->Draw(); - } + std::cout << "Generating Meshes\n"; - if (SV_RENDERMODE == 1) { - glDisable(GL_CULL_FACE); - if (mesh_map_nav != NULL) - mesh_map_nav->Draw(); - } + vmf_main.ComputeGLMeshes(); + vmf_main.ComputeDisplacements(); + std::vector tavr_solids = vmf_main.getAllBrushesInVisGroup("tavr_layout"); - //GRID + std::vector tavr_buyzones = vmf_main.getAllBrushesByClassName("func_buyzone"); + std::vector tavr_bombtargets = vmf_main.getAllBrushesByClassName("func_bomb_target"); - opengl_render_additive(); +#pragma region bounds + std::cout << "Calculating bounds... "; - model = glm::mat4(); - world_grid_shader.use(); - if (SV_PERSPECTIVE == 0) - world_grid_shader.setMatrix("projection", glm::perspective(glm::radians(90.0f / 2), (float)window_width / (float)window_height, (float)M_CLIP_NEAR * 0.01f, (float)M_CLIP_FAR * 0.01f)); - else - world_grid_shader.setMatrix("projection", glm::ortho(-(float)M_ORTHO_SIZE, (float)M_ORTHO_SIZE, -(float)M_ORTHO_SIZE, (float)M_ORTHO_SIZE, (float)M_CLIP_NEAR * 0.01f, (float)M_CLIP_FAR * 0.01f)); + vmf::BoundingBox limits = vmf::getSolidListBounds(tavr_solids); + float z_render_min = limits.SEL.y; + float z_render_max = limits.NWU.y; - world_grid_shader.setMatrix("view", camera.getViewMatrix()); - world_grid_shader.setMatrix("model", model); - world_grid_shader.setFloat("alpha", 0.44f); - world_grid_shader.setInt("text", 0); + float padding = 128.0f; - world_grid_mesh_texture.bind(); - glDisable(GL_CULL_FACE); - world_grid_mesh->Draw(); + float x_bounds_min = -limits.NWU.x -padding; //inflate distances slightly + float x_bounds_max = -limits.SEL.x +padding; - opengl_render_opaque(); + float y_bounds_min = limits.SEL.z -padding; + float y_bounds_max = limits.NWU.z +padding; + float dist_x = x_bounds_max - x_bounds_min; + float dist_y = y_bounds_max - y_bounds_min; - if (!T_ARM_FOR_FB_RENDER) { // UI - console.draw(); + float mx_dist = glm::max(dist_x, dist_y); + + float justify_x = (mx_dist - dist_x) * 0.5f; + float justify_y = (mx_dist - dist_y) * 0.5f; - //ui_text_info->DrawWithBackground(); - //ui_text_loaded->DrawWithBackground(); - } + float render_ortho_scale = glm::round((mx_dist / 1024.0f) / 0.01f) * 0.01f * 1024.0f; // Take largest, scale up a tiny bit. Clamp to 1024 min. Do some rounding. + glm::vec2 view_origin = glm::vec2(x_bounds_min - justify_x, y_bounds_max + justify_y); - //Sort out render buffer stuff - if (T_ARM_FOR_FB_RENDER) { - std::cout << "Done" << std::endl; + std::cout << "done\n"; +#pragma endregion bounds - void* data = malloc(3 * T_RENDER_RESOLUTION_X * T_RENDER_RESOLUTION_Y); - glReadPixels(0, 0, T_RENDER_RESOLUTION_X, T_RENDER_RESOLUTION_Y, GL_RGB, GL_UNSIGNED_BYTE, data); + std::cout << "Compiling Shaders\n"; + Shader shader_depth("shaders/depth.vs", "shaders/depth.fs"); + Shader shader_unlit("shaders/unlit.vs", "shaders/unlit.fs"); - if (data != 0) { - stbi_flip_vertically_on_write(true); - stbi_write_png("render.png", T_RENDER_RESOLUTION_X, T_RENDER_RESOLUTION_Y, 3, data, T_RENDER_RESOLUTION_X * 3); - console.FeedBack("Done! Saved to: render.png", MSG_STATUS::SUCCESS); +#pragma region render_playable_space + std::cout << "Rendering playable space..."; + + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + glPolygonMode(GL_FRONT, GL_FILL); + //glPolygonMode(GL_FRONT_AND_BACK, GL_LINE); + + shader_depth.use(); + shader_depth.setMatrix("projection", glm::ortho(view_origin.x, view_origin.x + render_ortho_scale , view_origin.y - render_ortho_scale, view_origin.y, -1024.0f, 1024.0f)); + shader_depth.setMatrix("view", glm::lookAt(glm::vec3(0, 0, 0), glm::vec3(0, -1.0f, 0), glm::vec3(0, 0, 1))); + + glm::mat4 model = glm::mat4(); + shader_depth.setMatrix("model", model); + + shader_depth.setVec3("color", 1.0f, 1.0f, 1.0f); + shader_depth.setFloat("HEIGHT_MIN", z_render_min); + shader_depth.setFloat("HEIGHT_MAX", z_render_max); + + for (auto && s_solid : tavr_solids) { + if(!s_solid->containsDisplacements) + s_solid->mesh->Draw(); + else { + for (auto && f : s_solid->faces) { + if (f.displacement != NULL) { + f.displacement->glMesh->Draw(); + } } - else - console.FeedBack("Something went wrong making render", MSG_STATUS::ERR); - - //t_frame_buffer.Unbind(); - glViewport(0, 0, window_width, window_height); - T_ARM_FOR_FB_RENDER = false; } - - - //Check and call events, swap buffers - glfwSwapBuffers(window); - glfwPollEvents(); - - if (V_DO_QUIT) - break; } - //Exit safely - glfwTerminate(); - return 0; -} + render_to_png(1024, 1024, "playable-space.png"); -//Automatically readjust to the new size we just received -void framebuffer_size_callback(GLFWwindow* window, int width, int height) -{ - glViewport(0, 0, width, height); - window_width = width; - window_height = height; -} + std::cout << "done!\n"; +#pragma endregion render_playable_space -bool K_CONTROL_MIN = false; -bool K_CONTROL_MAX = false; -int SV_EDITMODE = 0; +#pragma region render_buyzone_bombsites + std::cout << "Rendering bombsites & buyzones space..."; -void setWindowTitle() { - std::string title = "BigmanEngine | "; + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + glPolygonMode(GL_FRONT, GL_FILL); + //glPolygonMode(GL_FRONT_AND_BACK, GL_LINE); -} + shader_unlit.use(); + shader_unlit.setMatrix("projection", glm::ortho(view_origin.x, view_origin.x + render_ortho_scale, view_origin.y - render_ortho_scale, view_origin.y, -1024.0f, 1024.0f)); + shader_unlit.setMatrix("view", glm::lookAt(glm::vec3(0, 0, 0), glm::vec3(0, -1.0f, 0), glm::vec3(0, 0, 1))); + shader_unlit.setMatrix("model", model); -void processInput(GLFWwindow* window, util_keyHandler keys) -{ - if (keys.getKeyDown(GLFW_KEY_ESCAPE)) - glfwSetWindowShouldClose(window, true); + shader_unlit.setVec3("color", 0.0f, 1.0f, 0.0f); - if (keys.getKeyDown(GLFW_KEY_GRAVE_ACCENT)) - console.isEnabled = !console.isEnabled; - - - return; - if (keys.getKeyDown(GLFW_KEY_1)) { - SV_EDITMODE = 0; - update_globals_ui_text(ui_text_info); //Update globals - } - if (keys.getKeyDown(GLFW_KEY_2)) { - SV_EDITMODE = 1; - update_globals_ui_text(ui_text_info); //Update globals - } - if (keys.getKeyDown(GLFW_KEY_3)) { - SV_EDITMODE = 2; //glfwSetWindowTitle(window, "Bigman Engine :: de_overpass.bsp - EDITING NEAR"); - update_globals_ui_text(ui_text_info); //Update globals - } - if (keys.getKeyDown(GLFW_KEY_4)) { - SV_EDITMODE = 3; //glfwSetWindowTitle(window, "Bigman Engine :: de_overpass.bsp - EDITING FAR"); - update_globals_ui_text(ui_text_info); //Update globals + for (auto && s_solid : tavr_buyzones) { + s_solid->mesh->Draw(); } - if (keys.getKeyDown(GLFW_KEY_5)) { - SV_PERSPECTIVE = 0; - update_globals_ui_text(ui_text_info); //Update globals - } + shader_unlit.setVec3("color", 1.0f, 0.0f, 0.0f); - if (keys.getKeyDown(GLFW_KEY_6)) { - SV_PERSPECTIVE = 1; - update_globals_ui_text(ui_text_info); //Update globals + for (auto && s_solid : tavr_bombtargets) { + s_solid->mesh->Draw(); } + render_to_png(1024, 1024, "buyzone-bombtargets.png"); - if (keys.getKeyDown(GLFW_KEY_7)) { - SV_RENDERMODE = 0; - update_globals_ui_text(ui_text_info); //Update globals - - } - - if (keys.getKeyDown(GLFW_KEY_8)) { - SV_RENDERMODE = 1; - update_globals_ui_text(ui_text_info); //Update globals - } - - if (keys.getKeyDown(GLFW_KEY_9)) { - SV_EDITMODE = 4; - //M_ORTHO_SIZE = (_radar->scale / 0.1f) / 2.0f; - //camera.cameraPos.x = (-_radar->pos_x ) * 0.01f; - //camera.cameraPos.z = (_radar->pos_y - 1024) * 0.01f; - update_globals_ui_text(ui_text_info); //Update globals - - } - - if (keys.getKeyDown(GLFW_KEY_0)) { - camera.yaw = 0; - camera.pitch = -90; - camera.mouseUpdate(0, 0, true); - //camera.cameraFront = glm::vec3(0, 0, -1); - //camera.cameraUp = glm::vec3(0, 1, 0); - } -} - -std::string _globals_editmode_lookups[] = { - "Minimum Z", - "Maximum Z", - "Far Clip plane", - "Near Clip plane", - "Orthographic Size" -}; - -void update_globals_ui_text(TextFont* target) { - - std::ostringstream ss; + std::cout << "done!\n"; +#pragma endregion - ss << "Perspective: " << (SV_PERSPECTIVE == 0 ? "Perspective" : "Orthographic") << "\n"; - if (SV_PERSPECTIVE == 1) ss << "Ortho scale: " << M_ORTHO_SIZE << "\n"; - ss << "Viewing: " << (SV_RENDERMODE == 0 ? "BSP" : "NAV") << "\n"; - ss << "Editing: " << _globals_editmode_lookups[SV_EDITMODE] << "\n"; +#pragma region generate_radar_txt + kv::DataBlock node_radar = kv::DataBlock(); + node_radar.name = "de_tavr_test"; + node_radar.Values.insert({ "material", "overviews/de_tavr_test" }); - target->SetText(ss.str()); -} + node_radar.Values.insert({ "pos_x", std::to_string(view_origin.x) }); + node_radar.Values.insert({ "pos_y", std::to_string(view_origin.y) }); + node_radar.Values.insert({ "scale", std::to_string(render_ortho_scale / 1024.0f) }); -void mouse_callback(GLFWwindow* window, double xpos, double ypos) -{ - camera.mouseUpdate(xpos, ypos, isClicking); - mousex = xpos; mousey = ypos; -} + std::ofstream out("de_tavr_test.txt"); + out << "// TAVR - AUTO RADAR. v 2.0.0\n"; + node_radar.Serialize(out); + out.close(); + +#pragma endregion generate_radar_txt -void scroll_callback(GLFWwindow* window, double xoffset, double yoffset) -{ - //camera.fov = glm::clamp(camera.fov + (float)yoffset, 2.0f, 90.0f); +#pragma region compositing - if (SV_EDITMODE == 0) - M_HEIGHT_MIN += (float)yoffset * 0.1f; - if (SV_EDITMODE == 1) - M_HEIGHT_MAX += (float)yoffset * 0.1f; +#pragma endregion compositing - if (SV_EDITMODE == 4) - M_ORTHO_SIZE += (float)yoffset * 0.1f; +#pragma region auto_export_game - //if (SV_EDITMODE == 2) M_CLIP_NEAR += (float)yoffset * 0.1f; +#pragma endregion - //if (SV_EDITMODE == 3) M_CLIP_FAR += (float)yoffset * 0.1f; -} + system("PAUSE"); + //Exit safely + glfwTerminate(); -void mouse_button_callback(GLFWwindow* window, int button, int action, int mods) -{ - if (button == GLFW_MOUSE_BUTTON_LEFT && action == GLFW_PRESS) - { - glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_DISABLED); - isClicking = true; - } - else - { - glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_NORMAL); - isClicking = false; - } + return 0; } \ No newline at end of file diff --git a/MCDV/main.cpp.backup.temp b/MCDV/main.cpp.backup.temp index a742ed3..3be9e31 100644 --- a/MCDV/main.cpp.backup.temp +++ b/MCDV/main.cpp.backup.temp @@ -1,3 +1,5 @@ +const char* MCDV_VERSION = "1.5.3"; + #include #include #include @@ -45,12 +47,12 @@ inline void opengl_render_opaque() { glDepthMask(GL_TRUE); } inline void opengl_render_additive() { - //glDepthMask(GL_FALSE); - glDepthMask(true); - + glDepthMask(GL_TRUE); glEnable(GL_BLEND); - glBlendFunc(GL_SRC_COLOR, GL_DST_ALPHA); - glBlendEquation(GL_FUNC_ADD); + + // I still do not fully understand OPENGL blend modes. However these equations looks nice for the grid floor. + glBlendEquationSeparate(GL_FUNC_ADD, GL_FUNC_ADD); + glBlendFuncSeparate(GL_ONE, GL_ONE, GL_ZERO, GL_ONE); } #define SOURCE_OGL_SCALEFACTOR 0.01f @@ -114,6 +116,49 @@ void _ccmd_reset_ang() { camera.pitch = -90; camera.yaw = 0; camera.mouseUpdate( // Some windows stuff #ifdef WIN32 +void _ccmd_open_generic_win() { + OPENFILENAME ofn; // common dialog box structure + char szFile[260]; // buffer for file name + //HWND hwnd; // owner window + HANDLE hf; // file handle + // Initialize OPENFILENAME + ZeroMemory(&ofn, sizeof(ofn)); + ofn.lStructSize = sizeof(ofn); + //ofn.hwndOwner = hwnd; + ofn.lpstrFile = szFile; + // Set lpstrFile[0] to '\0' so that GetOpenFileName does not + // use the contents of szFile to initialize itself. + ofn.lpstrFile[0] = '\0'; + ofn.nMaxFile = sizeof(szFile); + ofn.lpstrFilter = "Map Files (*.nav;*.bsp)\0*.NAV;*.BSP\0Nav Mesh\0*.NAV\0BSP file\0*.BSP\0"; + ofn.nFilterIndex = 1; + ofn.lpstrFileTitle = NULL; + ofn.nMaxFileTitle = 0; + ofn.lpstrInitialDir = NULL; + ofn.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST; + + // Display the Open dialog box. + + if (GetOpenFileName(&ofn) == TRUE) { + + if (split(ofn.lpstrFile, '.').back() == "bsp") { + vbsp_level bsp_map(ofn.lpstrFile, true); + mesh_map_bsp = new Mesh(bsp_map.generate_bigmesh()); + std::cout << "Opening BSP file" << std::endl; + } + + if (split(ofn.lpstrFile, '.').back() == "nav") { + Nav::Mesh bob(ofn.lpstrFile); + mesh_map_nav = new Mesh(bob.generateGLMesh()); + std::cout << "Opening NAV mesh file" << std::endl; + } + } + else { + console.FeedBack("Couldn't read file. (getopenfilename)", MSG_STATUS::ERR); + mesh_map_nav = NULL; + } +} + void _ccmd_open_nav_win() { OPENFILENAME ofn; // common dialog box structure char szFile[260]; // buffer for file name @@ -142,7 +187,7 @@ void _ccmd_open_nav_win() { Nav::Mesh bob(ofn.lpstrFile); //mesh_map_nav->~Mesh(); //Destroy old mesh mesh_map_nav = new Mesh(bob.generateGLMesh()); - + } else { console.FeedBack("Couldn't read file. (getopenfilename)"); @@ -302,7 +347,7 @@ int main(int argc, char* argv[]) { //Mesh handling ----------------------------------------------------------------------------- - if (_filesrc_bsp != "none"){ + if (_filesrc_bsp != "none") { vbsp_level bsp_map(_filesrc_bsp, true); mesh_map_bsp = new Mesh(bsp_map.generate_bigmesh()); } @@ -329,12 +374,12 @@ int main(int argc, char* argv[]) { // World Grid Mesh* world_grid_mesh = new Mesh(std::vector{ - -(_gs * SOURCE_OGL_SCALEFACTOR), 0.0f, -(_gs * SOURCE_OGL_SCALEFACTOR), -_uvs, -_uvs, - -(_gs * SOURCE_OGL_SCALEFACTOR), 0.0f, _gs * SOURCE_OGL_SCALEFACTOR, -_uvs, _uvs, - _gs * SOURCE_OGL_SCALEFACTOR, 0.0f, -(_gs * SOURCE_OGL_SCALEFACTOR), _uvs, -_uvs, - -(_gs * SOURCE_OGL_SCALEFACTOR), 0.0f, _gs * SOURCE_OGL_SCALEFACTOR, -_uvs, _uvs, - _gs * SOURCE_OGL_SCALEFACTOR, 0.0f, _gs * SOURCE_OGL_SCALEFACTOR, _uvs, _uvs, - _gs * SOURCE_OGL_SCALEFACTOR, 0.0f, -(_gs * SOURCE_OGL_SCALEFACTOR), _uvs, -_uvs + -(_gs * SOURCE_OGL_SCALEFACTOR), -0.0025f, -(_gs * SOURCE_OGL_SCALEFACTOR), -_uvs, -_uvs, + -(_gs * SOURCE_OGL_SCALEFACTOR), -0.0025f, _gs * SOURCE_OGL_SCALEFACTOR, -_uvs, _uvs, + _gs * SOURCE_OGL_SCALEFACTOR, -0.0025f, -(_gs * SOURCE_OGL_SCALEFACTOR), _uvs, -_uvs, + -(_gs * SOURCE_OGL_SCALEFACTOR), -0.0025f, _gs * SOURCE_OGL_SCALEFACTOR, -_uvs, _uvs, + _gs * SOURCE_OGL_SCALEFACTOR, -0.0025f, _gs * SOURCE_OGL_SCALEFACTOR, _uvs, _uvs, + _gs * SOURCE_OGL_SCALEFACTOR, -0.0025f, -(_gs * SOURCE_OGL_SCALEFACTOR), _uvs, -_uvs }, MeshMode::POS_XYZ_TEXCOORD_UV); Mesh* world_grid_mesh_t = new Mesh(std::vector{ @@ -353,13 +398,13 @@ int main(int argc, char* argv[]) { TextFont::init(); //Setup textfonts before we use it /* - ui_text_info = new TextFont("Hello World!"); - ui_text_info->size = glm::vec2(1.0f / window_width, 1.0f / window_height) * 2.0f; - ui_text_info->alpha = 1.0f; - ui_text_info->color = glm::vec3(0.75f, 0.75f, 0.75f); - ui_text_info->screenPosition = glm::vec2(0, (1.0f / window_height) * 15.0f); */ - - + ui_text_info = new TextFont("Hello World!"); + ui_text_info->size = glm::vec2(1.0f / window_width, 1.0f / window_height) * 2.0f; + ui_text_info->alpha = 1.0f; + ui_text_info->color = glm::vec3(0.75f, 0.75f, 0.75f); + ui_text_info->screenPosition = glm::vec2(0, (1.0f / window_height) * 15.0f); */ + + ui_text_loaded = new TextFont("Currently Loaded:\n " + std::string(_filesrc_bsp) + "\n " + std::string(_filesrc_nav)); ui_text_loaded->size = glm::vec2(1.0f / window_width, 1.0f / window_height) * 2.0f; ui_text_loaded->alpha = 1.0f; @@ -376,6 +421,7 @@ int main(int argc, char* argv[]) { #ifdef WIN32 console.RegisterCmd("OPENNAV", &_ccmd_open_nav_win); console.RegisterCmd("OPENBSP", &_ccmd_open_bsp_win); + console.RegisterCmd("OPEN", &_ccmd_open_generic_win); #endif //Help @@ -413,6 +459,7 @@ int main(int argc, char* argv[]) { //Thanks console.RegisterCmd("THANKS", &_ccmd_thanks); + console.FeedBack(std::string("CSGO Heightmap - Version : ") + MCDV_VERSION, MSG_STATUS::THANKS); //FrameBuffer t_frame_buffer = FrameBuffer(); @@ -425,7 +472,7 @@ int main(int argc, char* argv[]) { //Input processInput(window, keys); - if(!console.isEnabled) + if (!console.isEnabled) camera.handleInput(deltaTime); console.handleKeysTick(); @@ -436,21 +483,20 @@ int main(int argc, char* argv[]) { } //Rendering commands - glClearColor(0.05f, 0.05f, 0.2f, 1.0f); + glClearColor(0.05f, 0.05f, 0.05f, 1.0f); + - - if(T_ARM_FOR_FB_RENDER) glClearColor(0.0f, 1.0f, 0.00f, 1.0f); + if (T_ARM_FOR_FB_RENDER) glClearColor(0.0f, 1.0f, 0.00f, 1.0f); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glPolygonMode(GL_FRONT, GL_FILL); - opengl_render_opaque(); shader_lit.use(); - if(SV_PERSPECTIVE == 0) + if (SV_PERSPECTIVE == 0) shader_lit.setMatrix("projection", glm::perspective(glm::radians(90.0f / 2), (float)window_width / (float)window_height, (float)M_CLIP_NEAR * 0.01f, (float)M_CLIP_FAR * 0.01f)); else shader_lit.setMatrix("projection", glm::ortho(-(float)M_ORTHO_SIZE, (float)M_ORTHO_SIZE, -(float)M_ORTHO_SIZE, (float)M_ORTHO_SIZE, (float)M_CLIP_NEAR * 0.01f, (float)M_CLIP_FAR * 0.01f)); @@ -464,13 +510,13 @@ int main(int argc, char* argv[]) { shader_lit.setFloat("HEIGHT_MIN", (float)M_HEIGHT_MIN * 0.01f); shader_lit.setFloat("HEIGHT_MAX", (float)M_HEIGHT_MAX * 0.01f); - + if (SV_RENDERMODE == 0) { glEnable(GL_CULL_FACE); if (mesh_map_bsp != NULL) mesh_map_bsp->Draw(); } - + if (SV_RENDERMODE == 1) { glDisable(GL_CULL_FACE); if (mesh_map_nav != NULL) @@ -480,7 +526,7 @@ int main(int argc, char* argv[]) { //GRID opengl_render_additive(); - + model = glm::mat4(); world_grid_shader.use(); if (SV_PERSPECTIVE == 0) @@ -573,7 +619,7 @@ void processInput(GLFWwindow* window, util_keyHandler keys) update_globals_ui_text(ui_text_info); //Update globals } if (keys.getKeyDown(GLFW_KEY_2)) { - SV_EDITMODE = 1; + SV_EDITMODE = 1; update_globals_ui_text(ui_text_info); //Update globals } if (keys.getKeyDown(GLFW_KEY_3)) { @@ -586,12 +632,12 @@ void processInput(GLFWwindow* window, util_keyHandler keys) } if (keys.getKeyDown(GLFW_KEY_5)) { - SV_PERSPECTIVE = 0; + SV_PERSPECTIVE = 0; update_globals_ui_text(ui_text_info); //Update globals } if (keys.getKeyDown(GLFW_KEY_6)) { - SV_PERSPECTIVE = 1; + SV_PERSPECTIVE = 1; update_globals_ui_text(ui_text_info); //Update globals } @@ -599,11 +645,11 @@ void processInput(GLFWwindow* window, util_keyHandler keys) if (keys.getKeyDown(GLFW_KEY_7)) { SV_RENDERMODE = 0; update_globals_ui_text(ui_text_info); //Update globals - + } if (keys.getKeyDown(GLFW_KEY_8)) { - SV_RENDERMODE = 1; + SV_RENDERMODE = 1; update_globals_ui_text(ui_text_info); //Update globals } @@ -656,7 +702,7 @@ void scroll_callback(GLFWwindow* window, double xoffset, double yoffset) { //camera.fov = glm::clamp(camera.fov + (float)yoffset, 2.0f, 90.0f); - if(SV_EDITMODE == 0) + if (SV_EDITMODE == 0) M_HEIGHT_MIN += (float)yoffset * 0.1f; if (SV_EDITMODE == 1) diff --git a/MCDV/plane.h b/MCDV/plane.h new file mode 100644 index 0000000..914a7b7 --- /dev/null +++ b/MCDV/plane.h @@ -0,0 +1,168 @@ +#pragma once +#include +#include +#include + +#include +#include +#include + +#include + +#include + +class Plane { +public: + glm::vec3 normal; + float offset; + + //Plane defined by three points + Plane(glm::vec3 P, glm::vec3 Q, glm::vec3 R) { + glm::vec3 n = glm::cross(P - Q, P - R); //Calculate normal + //float d = ((P.x * n.x + P.y * n.y + P.z * n.z) / glm::length(n)); //Calculate distance + + float d = glm::dot(glm::normalize(n), P); + + //Set class attribs + this->normal = glm::normalize(n); + this->offset = d; + } + + //Direct constructor + Plane(glm::vec3 normal, float offset) { + this->offset = offset; + this->normal = normal; + } + + //Standard constructor (generic floor plane) + Plane() { + this->offset = 0.0f; + this->normal = glm::vec3(0, 0, 1); + } + + //Destructor + ~Plane() {}; + + static bool ThreePlaneIntersection(Plane p1, Plane p2, Plane p3, glm::vec3* p) { + float det = glm::dot(glm::cross(p1.normal, p2.normal), p3.normal); + + float epsilon = 1e-5f; //Epsilon value for floating point error + + if (det < epsilon && det > -epsilon) { return false; }; + + *p = (-(p1.offset * glm::cross(p2.normal, p3.normal)) - + (p2.offset * glm::cross(p3.normal, p1.normal)) - + (p3.offset * glm::cross(p1.normal, p2.normal))) / det; + return true; + } + + static bool FinalThreePlaneIntersection(Plane p1, Plane p2, Plane p3, glm::vec3* p) { + float det = glm::dot(glm::cross(p1.normal, p2.normal), p3.normal); + float epsilon = 1e-5f; //Epsilon value for floating point error + + if (det < epsilon && det > -epsilon) { return false; }; + + *p = -(-p1.offset * glm::cross(p2.normal, p3.normal) + - p2.offset * glm::cross(p3.normal, p1.normal) + - p3.offset * glm::cross(p1.normal, p2.normal)) + / glm::dot(p1.normal, glm::cross(p2.normal, p3.normal)); + + return true; + + /* + + p = (-adist(Cross(bnorm, cnorm)) + -bdist(Cross(cnorm, anorm)) + -cdist(Cross(anorm, bnorm))) + / Dot(anorm, Cross(bnorm, cnorm)) + + */ + + } + + static bool GetTripleIntersection(Plane p1, Plane p2, Plane p3, glm::vec3* p) { + float determinant = glm::determinant(glm::mat3{ p1.normal.x, p2.normal.x, p3.normal.x, + p1.normal.y, p2.normal.y, p3.normal.y, + p1.normal.z, p2.normal.z, p3.normal.z }); + + float epsilon = 1e-5f; //Check within small epsilon to prevent infinite values + if (determinant < epsilon && determinant > -epsilon) return false; + + glm::vec3 point = (glm::cross(p2.normal, p3.normal) * -p1.offset + + glm::cross(p3.normal, p1.normal) * -p2.offset + + glm::cross(p1.normal, p2.normal) * -p3.offset) / determinant; + + *p = point; + return true; + + /* + Determinant layout + -- plane normals -- + \ N1 N2 N3 + x + y + z + ^components */ + } + + //Detects which side of the plane the point is on (-): negative, (~0): coplanar, (+): positive + static float EvalPointPolarity(Plane plane, glm::vec3 p1) { + return glm::dot(p1, plane.normal) - //Evaluate dot & plane normal + glm::dot(plane.normal * plane.offset, plane.normal); //Compare to known point & plane normal (closest point to 0,0,0 is normal*offset) + } + + //Determines clockwise-ness of point B in relation to point A with respect to center point C + static float CompareClockWiseNess(Plane plane, glm::vec3 C, glm::vec3 A, glm::vec3 B) { + return glm::dot(plane.normal, glm::cross(A - C, B - C)); + } + + static std::vector OrderCoplanarClockWise(Plane plane, std::vector Points) { + //Find center point (avarage distribution of points) + glm::vec3 center(0, 0, 0); + for (int i = 0; i < Points.size(); i++) { + center += Points[i]; + } + center /= Points.size(); + + glm::vec3 ref = Points[0] - center; + + std::vector angledVecs; + + + for (int i = 0; i < Points.size(); i++) { + glm::vec3 diff = Points[i] - center; + float ang = atan2(glm::length(glm::cross(diff, ref)), glm::dot(diff, ref)); + + float sign = glm::dot(glm::cross(diff, ref), plane.normal) < 0 ? -1.0f : 1.0f; + ang *= sign; + + angledVecs.push_back(glm::vec4(Points[i].x, Points[i].y, Points[i].z, ang)); + } + + while (true) + { + bool modified = false; + + for (int i = 0; i < Points.size() - 1; i++) + { + int s0 = i; int s1 = i + 1; + + glm::vec4 a = angledVecs[s0]; glm::vec4 b = angledVecs[s1]; + + if (a.w > b.w) + { + angledVecs[s0] = b; angledVecs[s1] = a; + modified = true; + } + } + if (!modified) break; + } + + for (int i = 0; i < Points.size(); i++) + { + Points[i] = glm::vec3(angledVecs[i].x, angledVecs[i].y, angledVecs[i].z); + } + + return Points; + } +}; \ No newline at end of file diff --git a/MCDV/playable-space.png b/MCDV/playable-space.png new file mode 100644 index 0000000000000000000000000000000000000000..f923291f210b61dff8630aa2d3e63c5907661f4c GIT binary patch literal 60079 zcmeFacU)8F-!ObK2tk7caRd-T#NyTf0Z~!HFyNqCwH6U=7-~>ZaN@v(Aw$Eets=IH zhElCyQ4w*p20_401gRn_AhozbMUi!$?>Q%jB(&B0etvJ?`+48b^AAQixz2Tc_r4P6 zeC}!3$E**6AcoVuJmw+@9X`?#CKdi^mY%Odkf$4_d$`VzSQ5z5Q}Fm^)c^bA|H9z^ za5}KIrE@$LkpjBNU5x)|+Ah0?s(j2nczG-H?JT@ga3XdeNlzCkR%#yW^{FvdDbW`T zPNl>tB}{qmA4oCwN8`Wzo_v;7%;x++;dod71H(kSiSudvj9O3i9(%nU`x}GYf3Lp@ z=y8Ee`3*##{Y=H?7)Jf|hbxa?1MhzMKl5&-o!LG0n~^@0XJ|#3I7sN986LHUZ7j+X z2YMK~japM*ZCiILI*M|?B`ghfI<&_tT(Gq5OvK#&3!bIwwVX7vvy(?_A1re&eq@^; z@n1&ur9@x%?Q`!}bmSYeQ@*J1t2qs6s!~*9Y0(3Z%oR-e21I01g<%hw%Va;S?sN&O zkGq=o?c{E>ZYE2Si>g?Yde~X`g3WmWKs|!Jf#SnVy#rgFD6E^McN8UDsbMNJ;LYnK=%0(F970&0&1$5FVdn_CwZL z%B|?KUslc;`wZ~8-Goz8*=i@#5sm@HrLEN{cg&B2NzaEpuZqZa}t1LD?zy#_&1b1*{Px_ zhvNMYz94%g#Cl!p>JYMk`T{Ia{7=&WyLKZPu7fMImeI{k_qvRV5L~H-l?8A^) zHAj71v2rj~b)E8-+daInk0f8^l3}gk6v+^(!a}AR=BPd*?Lj*?%Gj=^iFV18-EIHreB`XogTi(DO_YyLsg@K;s)uOE#TzG=dDS?%jG-q4ccm1} z2+mj{irFZbtaYTR_>qo;;75X;*F8+ft4#W{nswMztJW}+5((ucTX$z*awkQ?xZQV56&%0bQYBk@0 zPcnD$I)+$afNw8#AT>2^%$hRfrk6|F-0~}uDXWon6N^6Yd#rTQ^rVQ+E`7gwl(5B$ zXVTsjfUV)3gpunUHZ`KAqGTrTUP?~i8{M-P4zZnEQS4gTXPtpMP|D#(oE4_-JTKGk$7EC@>>%O>BwCi0DvA{mXeR1TT#l@f1XnIA) z&xO8kgeMc9TZ$d(T^0xEr##}lEW6$QQ`$2t{|>2OsRn~U!`=k7<>A2eGN9xaj69ZY z@B3(=w6FOpmm-_-UH3`~GrG|yx9v?|FyzZBdYGTGB3{`vQm6=CfniFPz*bhW^kx)o zyxR~!3$>bS>U!F0pZoNxqR80i4uaJUE4oaA$G3!T?7a7_X9uF#v`&p*`0CFDgJ72lpqm(N{ts9EJb6%_%xv}S~pw-Iz;OD<+iqWst z1fbUUkAiI<-TFM9SyXvWb}#wvmZGPFe?EP`o{?;Gt!MY}aHbBOC-P*qZkKNVHavSZ zlK;*nd_mx-j@gIy87$G0-K`xip$!`%*|Sv=+AX=r?co&85dv);INCf;Up($Oz21Ad zbJ7~WE=rE0Nubr7N76Oc$(f>AdL;=JBP^0O(0WrGrr!veGshhX%^PwH>6*Q6IOSMs zRX4J2bl#Qz5A~J5{4oD0nv%U&d-t4+#JhjP-+jkTHtNN;#yC4)#a_9i;LD8rbVFX# z4OKNNNyZ^VXvYQ~e>1B|(%%x71csCVv%)Y3x)GxHbIH$f6whC1hd9UjE}T3^-)!(v zW_A%8erHghx|}ntXNH=^Y@)8ta(2yG0^eZ^c^M* zryjjB5Vu;Kn8_TK={&NF>z$;LND7|t4V$x=D#$3ukYZcw4q znwyl_G_w@DpwV^438w;uOWyW3HDi~hyrYQTRA_iGm7u_AT;VDQQPISHgQBlTW=>C^ zM^8`M()lZO=%UV&x0LQ(FTc+5tpi;P!r0PGLq&55Oy=S6@#4uY+)w$*LS9{>Z)WiI zt(eQAmDwf_O_d=J17C0|cr#R>2c(qm<)^+s03ogk0#ww9htI%%uBDi0g+Cl&KEJT)STgDI;-+-Q_- zfE|6R?pDD=-sva2x#?Z{vmEF#O)h7m5{|aco<7s!QiupTO}f=E?3_*<>fmPbC@&`lmRZzlj9ZJz-g$eqy_*lRY{iWG(uW)o#_>L#MiV z4C~oc{#@&6yp2ai^K?%NMg*oyalr#vlU(<69=j~ZFyNcBl(0*wHdE6gkxcuvb95Ge z`Md{p-Lw77WQ$@a(vZPX@9BrX$+5D?QVr1PCm`kdfDAxNG>#NuAIi0Ceo?9IbZ=?q zmy+v|`BRbFvFX2369$}EALL$q)Y55LTu@iw5KTjf!gD`nEo*bC!m6=q#>#dM8` z1VkJ*#Z~=Vftu(`HZoGn9)-h#is`Pt`KfV}?F_=1)r=|KQ;`fK{y=+ny=RUAWz~TF zQ<3vg{Z@Cm%ZHvamkoK|Y-Q%XUxyWS%)Kmj=Bi5Wnfpfh^fQZ-@3xm!PM0~cuL~L; zy>L;@u>ErAgof}|imWs+wB7pX@KOU|tE8WDfT?$`&XVDT#i_zg2q!wzvFo^_Lgo7+ zHJhJWGQQszad-7)l9CGzdWUwdN{hRoGHPM^4yPCm-gC0v|7wEq;E#e-&K9nG_Q=dN z{`95kFBr(!lFD|^-O)$0W{mM~Etl4c9GWY01ATs!HI!ShhAN)9TvE*ldd3Yf%6ek-d-S#KZGDGE zKN;Z{h?W;QWw_~3I;b(s*O-F?qK<8K>PgCwkW||(jA3h=*U?h-+m82p7dT3`k2PVp zRgBzc+RB~w7v-`E&!VV4cgvHu_<2i%lFC=nc38(d+YCP3hD!QtOn9)vSAbOlj@A_1 zI?0SfmaR3pz+AS7`(W9nZ!g|%kN2SjcOOa{P-;|NZNJ~fq3H3{k||+J%e&|~Qz(9Y zD%#Bp3x&@(y@Uql7gXY&8Zy>RR+a5iV%S_TId$hX(W8do2KUW+?AG*LY2g@)^Rs3> z;~q5|y01HZbK)z8Jo|&TGScx$C_wVRx5w*ScCSLVvdnK~lnrY+-L2Zp47=23%3dfK zJhbo7EvC7=&*#oYe&@JUjPoi(HZcz*Mp15Ej&hP4J2bbf_1yJTBVa+cS%XO!6Ry_# zd9g@Z7bVj!=ei^_v3#y1Bw@_=9*-^>#`06A&l(%ykvEBTJuKm7+LrOGI>w~w!#r%) zjOL!aZ!|cHFPk<#YdG@f(9y!()Ez0iD-{bhgrRGP@ZIWM5{H%>O7cqu3yz?9BFFPx zhNc7JcL`h2ytFlbbHf}8IbpNKj_tM`4Ef{I0@!i+`pf8o8STX}D?NsmUe zX6eaoZt1{k31MDW;=HkfnOf5x|E%<(q3m=X8kjE&cW7yOOGzEOJzZXXM7VZf>dw1{ zvc7f!Gim8BwiJ%K_JF#7gNw)D^TUxR467}McSFN2DA)6@CfnTBd5H*rNhQI6bD5c^ zy3xSC-=h)ktTVjN^JdEKmgr|BeaT)m+_%!Sa%_4(S-Qa&AGpOQ<*ZoBn&n7RQjW!g zEAji7gQIdjxGwqdh8xU4q~{KB2KVwttsHS#9K4j&I@dSb`JyZ@QPI9!$=EfSZBnq*1);lDaF{=KUR9G0{i?ZLe$zId)5* zyP<85xYB0_jNk8&CLC}6jbcZ;qu-X2+n4@(^z-iC@A!kT+X;_X&bIoc6|DYEZ3iev z_TG@Gnzt|dJm}eh@_JaQ{PUqFT2t=Ul|Iy$wK2U1pFfl0_%7uPoq5=zfgjX=Y{^HJ zl>W2Q*s5{h-sSF-8`&$Vx)RX6(6`tR`{plxm;0|^&F zuGZkf`_(SAZ;s0kheUgC3epqiqFCQz)6Y!)B+|w3pqU zt*p@(dptdW+?5R97BG$;P~!M1>eNicU`nZKn2s8+A{^b#xEfb7qtL?QMi;#zz17>plBU$#y;8@^V8^x(MRcG?^Js-6Y z3@J|wy6dxx?o~>1rOt}BLSGb3^fC7Ef5w#_67JJihBQ2y*copS+{V3CTr@kmADYt3 zbHYS9;b>ZIM~+pa(gwFg@t>63i5=Xs08V~=Si&C>%V_+8%4wX02Oc}`R+Uz^iC)t9 zR=FL^hvl0hc4HBP5uHq(NPmW6KcX0hpN&|CWp2AyQkD;PTfC_QZZ`osd=~B zpF zo@SW(jY0!+`UYf*pC9nLX*)Ej>(Qjv0|xudBJ^eH(`A1FA|+eZtd2BL-m;N`8TCx> zetVogi%M`Fk{oQ|7n^D4+=tdPL?aC&WQnCU^v1~gMX+x1=CSgpg({?TSPDk!= zx>7{uAc<*jW zN{jV`w=IHpo~!G3N05feGsh27%t$w@Q!F{~Oub}d9tNd>J@~rDKhDAtH{;EvIQOvvv932MpT4IxJ zn&fG?|2T?fjem)zY^i6P+D>mwb@4NOeS({FA6fCEjaMZ%pa%UL=E1^cxKV`kqg*Rm z=2v_(EIf#@e~!nh3*GT|x93H zxfi&Hu-<%ob!^IK(M=D>BWd69jE4s^oBM}!)YuzE5S?fT9(-c-3bpzh z-H%!OPb9d88AMIb-Rk$E8}*=@9os!2qfHtzb9472pFd;1{=O64sb}B1EIleq@N2)xJh?rsb`^47W%TNe9O47LVu4sh ziWHH^rnbG5U&^IJ-B=3^ZOk7ir#Tv2_nEaQ@9ClS&kvq@Y^&d4I%i*p&u#0;{hzUD zYw8pZ?P))X{$fjM!PA;vVfKT>dv3y-LMuDk-C=%_h~QrH>5i5O?Wl>xMs#}0Qs>Y} zhTL{r;|7-#V`$;Kj3oXEqrLuWplK}%NHUDPR=+&w2MS}DNtoWB()kWx40QUndm3-O zYedV*y(!z6bs(z38QCxXkYe5Gd5)r3xK?f65l$m!N-tDP9%V?h^-gi<`@qnHhn~3g zyN_~Qy?3rsN)K5N*fXPX8k#=3!!%*ho0v0$n0wBp77w!b;tlG@0O9+PQ>+YM9vBbFm~_l3De z=p!c&8V#n{@y*|tOz7IHd`a$Gy$=nFGt)$N|< z0iKToGGc0j${w1?&grjQ%e`RbG2YtoVUeEgzV1}VDf@R%S+fT@WPu)b@z_l{@)eE6 z?o@P_o9KNMvo%gO%ladh%h;DB*H`8*q0nyeok7v9Vpi`*GG-L+m9TQIq~7LdwkK0+ z>7IjvN_?KijEQz`Oqtj@JMVz3c7igaB6ZORG<lR_>QyhJoDMV$S4KF7@=0&{=?;We4EQ7k(`s1^p?v^lZy}E zmerUFS2fxDhfquHX|kL&O0ji$a;#COqLrRHoGvnXqT@l0$L;hZWOS%)GE$h42fkf^ z4W(J|-ryZQ3}l7F#k(xdl0c6gtE|jJw;N>{DPueGxe1#)&sNyzTMe>nNKY0c_w+*A z14Fxt^*lfJ3dMKVWE)G&EX8OG!(#t_gl0@bB~vIOc@kX`#}@3OT;3;lDt%qwQ0~1o ze;YO1%=v0ms(V6O;U?tTG}pG`y}hi^V8R%&#i`h9Y+$3(D*Jxod8>Fzb&lsUzBuRn z@{)oQZtj_s=d8lbb2|{WJI8iwS;Cgz$D2Gzro3);@l|kFauIv*9iw-@l+7)COu zW~(WGFq)}HwT(nX^QQ>)6)y}dKPEab6RHE%$qzM)}j}5$r@g0N4sNHAS zt$0VT>lUtR4?K1+3S{_8h2e+58;I3=3MXt#N0C{U{LV$wGY?;L3x-HOkzPBhnw@7a z`$=`vtG&M!u=bkSvZ#`&$gqI$r1s)_Es{PJXZ7VJ*AaeEb(dmd|NVuWM4!ts)!ep} zd{gnq*A~7z>{8?9Vr{$&NvCxddeo)G1dmyBo;Tr_dJ*s0(qXGw!F=leLV9gFl3y@+ z`t?Xr?Z_}pGjG(mVii_6hg~M3l7py0?}4$}O^y*EYAl%>X_yhy}vBy%=bX6$bCNHR&sSedjP4XIZ;XTQyHr;c4~X4amu9A}98jwi;Uhvc z9>=xGA$R2D-5u3$mn$VribQ_qs>UB@+(A88Bv_lbaUZ9nELMqC!jgu8XjxN4YE@4B zN?>2*wUTcwynoVBQ9lxk;(2aL7Q1bBfTYvYLeJCk(Q@Gn7GF8P`=^C6)boXba^LIb z+YW_h@7aU9JlFFvVUy!Y`Mq2=fu%a%$(=s=7 z!R9pm-yvGc;b&8uOd3&JMvblc+qP-^$t*Nn-sSGbu-}@uLpd_oJG4#L-e~JPo){J=(aYzTuke8rZvUkZNhT~zb@UB z<9$#EraGxupW;2|Q)T(95*JcSWPz@It-l*|Hgj*x-P+|P&x+B!y?usu7_hwR-*FvS z#|zr(ccW$170ZSFgOus#ll1uj{Vu@g@*OxxJxqJpWf3pl!>h{xs2hv0%G~xgb;d zB_Y#@EMeYuBrUWBjo5?ODod+)j&;E~_Ex#Z?I|w~&+$7+mo${uq5~l1V!eKGccA=w z@#4Pk2h$uK%1=oAJGt+NDWxHiF(0P~rF2a(<&g1O12(OoUiwXlzlZNG_qbk*E) zd)lfM#n(M6w>w`dlGR*^Uu(*2Wv6~=C(eIm8n(`|&VSm5D!y*jhO$3S8$q_1n8sS@13VC&{sHA@cabt1OK@A z<d{RqqJB;A8yrj1YVZ2}0mFJK7hC8$w7GvcyS?OdZx$6L6o z7jgT0v3Di1_=N#8=IUEN$(1sOjg^d+auOE(7<2T1>~R|EmF<6vwyeW4H#gRp?CWW+S3e+YTkOTI%N->BYbC-u{ohiS~XpUdac|h+Sjd^s8y6wN|+-7 zICmZ9376&7L?L=BVh{;o(rJ65q^Sug|9$n@3MK zTwVC94`_^R{~y@Ohwbs>yQBDZ%VWCBY~50-PoOD*s(!SBX|6t7^umfzj&I!(QNhxz zA1jY?b|E#W{!EUa#SfXBv5t7;D2{m1yk_hq$U#`|WpsIem(JNs?j^PrJe103Zbc7n zPBpIH;Q5T!Ic>3ZiR|2PCCib0eY(%053IvUTNvr3QgMsa%dw$<)J7vwrLGY>5?8U) z2_x2%nJRcNW5op7sDsJt2eNA$u^_$4imR5lxZ>E$cCyJVWwnb*+`iPZ$GnhbS&S*M zhEHzRt?05BKSL0`s8zyMEsr1=`%$S2q2P0urf;1flg}A``%7V~GS0#G8R~MY*@gC; znJMM$VxVd5EY_Vnsnss_x55trV==10QNGHvV0eL-bRXqbkNuD`X(In@V~}8&EPVX40p?cO&l4DPoqlz0y=BZp$<%!gKY0#p&E1Wz``gm_;%#Y`7 zq;)H1xU$NgBbg5EsQeB$^mQ%{7wcUfOetaw5CqlVD8BGq z|E`Io7)9qyNhkmzeZ(Be?;ARiy==LRQa!88541vP8}~u`^4Q?mU#L{GZlme!ThZ(gBtALb>AAw^QH_BTdA1ug zb}GarL*6i0d{;)T1yWd?x;VkP(@3@Rd>>}O;F|s7pqG-N8c!1B5Jdj4ps53X7^u!E z^sR3@N6GSKp59)SOh50RbjAd+gCdS`p37(s0UKymH{v$3>h{T0zMT@kS)*l-m0zI> zTmBX*>bV>dtPrb#!gwbL;Fshv0|qS9M^?Rd8Dejwc%sQIVF}y;xCS7i zPBLryh>-X8b$3kUF6Uc(c7WeGzce8G5GvPxnII8yb$$!8>8`Qk+= z?YQx5{kn%(?CrV6T@l_R>O=kUeb=!wXFTJk@X+9ioi`IgyNs-JKD&-A6Nh%0e6KIG zEJssvgKs35ZAQZvQhjBq@)*rmy9mj+S-2ZtEAEQWqLB|AW!JV=<~M z9S*Hx;)Ms3@W5fF2sG5iR8-)jSAs0+q`k6KE{=A7cavFQcB?wR@Y}XcNanc$2Gie*V^^6fe!%P25rUd0Cr52e}zw%#NWF@yLyeBe&LKW6JA`DZ9OXW*E z*-sN=ZKiD~PBgxpmL3Snx-CfE*flvD4ti4&hk$qV<`9cSn*B7JZ_DH$6wDC(}^B`xN7|K1BP%^d~ zJ#3C}@?ID$lZDO@J!6PN+tK2J3!4PjH3Aa!haN%DQ^8_sF*1e5m7%p8?UVE zOF4(K)`I@~zhMT<zQ5;#`6EPL1ZkL(dy5mw2Tz*t$OsfsBS z&3mb~D6khmooFl`izia6a$rvQVX^AgMg!hRhN4O&&`YdOfpZN-T&QPW>%#xHn5YsjHa7oKp$`o66rhve2 z3TiweQ#on8RH!Dyc9Do@mGLShab6s9?COPzar)vR_gVamIJM}L#S%!|)AOb%*Fn_s zm0PSLkvd=LwZ#<4eVM8Ys)aVGPm}-ww=IZh-WByh00ZJal!#yH%Z2TTWD(VB0*#-v zq#r+HGx>@}LO=<$#DNXHLiD4oRw_PSZ`K|Ei*fWd248+m&&>Op`XQkceu5)G8aRf< zBGnUvok7$dRSlvhK^57qH|jmGi4rn1tx`QYPquv8s5RU=myqj5HQjZps}#|^7V>!u z9QY+9eZ@?L`iQMV{D06FP98Xbxaw4ry8%4vjPOJ5z<0G|HP=# z?G6h&UUsv3DWL&TyQTGbG>AAOWOcjyGK21@$O&f$Nd$YcTq~_YaZhBu~M3OMH-@-(~r{d zo+g~1T-sBw+lB*SnN~SJ&ywo#QeXDmz!D?s2L#1!Wy)WI`k`xW(S=?&y4&`ZzVMzA zzo(~w-#`>Sn`rH9CtEq`(DtpPMpW#%AbPY}Lw)OvloB&77&-D}D;JpGGUSAIrP#Ep zVTllVEH|y^L_FD1qvrL3-JT+*-_qFjd0W<i^7emdAg@EoSnIx4vB_SfeptDhLzI268{OZ16D6HsFVknLw9C$_6W1G=fV8 zh4dhdZFXuXsh&ff?WtJbb5>*vk(U8MOztfYm>z0j50T_pOAxPx2E@gq>7qqwvGvru zBKybK7m-}T2P@Fp`4`Mi^Q7zk##Hbu!UpTVmxSPYreYY*VFp?)G=)&y@JxCq>kk(e zYnFHzKVu4h*ux;Xe*#r9DvX(svLxMY^9;_@D96n^RFaom=yQM$21nyQA?>tyG%6DL zJd7*+Hmcs?$+mNoHqW^yF`ZyWbs|u%1$6v~tPHj+znfQ#UNGgP7eyjRR7}F8SVpLR zyx54)EI3f=n3Tq97jTGZ$T`YuMK}?%(#~*z+elJ@D;tuo(g-ecagIe2k^Xo})NXvH z(MiNM)-l1sQe3BjMkJCxI>jRzNJ2278EV4XkvK&f-k%{1X3F3&FjBiUx@5D69KA7QK)iRoum;mMn~D0s2O>Vf+)N52axddaW)S{Y8~d z0K*Lj#xA@lN(&gmSma2qbXlJDg%lCd^zb8)HeDhx>~*|~DfIG{UGCpctkLIqL%FVS zA@OS5@6iB^(jJF=24%j5#9KiVfWu*ey|s$X=H4&&+ILub*(u`)e$-}=xKJ7p3GfpV z+-IiIgE$5y(nwU3p4q+6ENbCm?wJXrJ&>!!;2%ks*NVT%r!oVt`!Ya-jo z07g+f0aI9~{Y0x`YY)4PwW@2a|1%oCaj-ipYzZBNx4&p@X$h~n-y*I!zttrJ@pPB{ zMzCeLhAr_=(7>{X#ZnG(*=mVD+75?#Nj$o)*Q0L@qsr>0A`{Yw+;5$n0T1F$Jq!(1 z;h*B9%v$%SH2KSR3-1=d<3mEj_kJ(Um^wijiCFR{n$gIOXgX;~_5fgIvJ2^O;ONlh zLE_9INu`ar05OJYd*eG2J1wn_7kxLe>*x=S9nFl0H3|LYrm;7Pg$vo@*oD_8nGu?5 z9bqBN{p(Yl&_sFmZxG}GskiK$$^(Ri4ot9&7Pk9;=(B@v8_`$YJu6^+V)t)1HhE7d$oQg?(ps@Zc25Ed$F}5#W%# z$Eb-i31Sf!wg@iwVkwp%Q;rp|L;@Dx6U2R1m-=w+j%hAq!hvp_+UtORlaO7gePi;m z&&<7V!ZJi2X1bQSgKLJub%?B+^MWR~`4bvNh_wWy0YySAj3?YV1;MJ1v4mQLyDV6+ zwHNKcf0b^C(}3yI={;!4svUN$e) zHlou(_^740(1?Hb_f7e=hu{DpFm~P4U_j?nCIKcKtQw)y^9k$R>-mqS$w2)HbS36G zJkhcYdh{m7mvaaa*`f1BtRIR%I=p*|o7TfYSc zo6Pkdk3Yo1d=U?gyns*Egxhh1=v7T11R>U@l4eFd5O<>Nf{AY|4@w`Gru5d!;3foX z1j=8Jpi8iD3T7Y5W7QqCArN&CENO7Ph=?V5%v1>0V?e^)51BvKqQlgo0-cUn-10Ng zvity8-xJ*}H3Sg;c8?%vZ3rBK5vTx5bF3RYsRIv zHD_=xu>>uuy$@9^+(6X={~f{xPtu7okrEOUF#j$!HQCgudX%6$pWdBRT9aTvIjySH z8?p1*V!7fBQH(#9P$MOpo#}i6QI56c_q4{--Ni-@42L6Y!d_fe)!$YP!F>Wawoa2A zN!X09net0d>p0GeQ@&UIcrQP3bBpnYWmlU-(JD7G zj2`Dpn5TEOShL4Tf!}?i+5cY^ME|zd{g@E^SKr;!AfzQPHFOk4v|_H)g!8rd1l0Nn z!tB=?LGjwC%AS8oybPnPNb0q@34ErAYBNY#OFZU`aD7XPDSr0m9QB})5t<;+r51!*Jdu_^$0Y4m6-AL4Mo+n&USH=_N(8Oxr$(Zd~!r@1bmwL zVHfKRDtZhB%Fl6#=}(IjQ;xN8<|c*>jx-V|j;&Yp-686G9(y5$5r-GA{{!ScMNOZO zcc11dZzXA>1L@5yJ=i#U*6+!y`dVJ!qk%Febip!dz@rS{cN7h##{B7HRjO*li%f{E z*AhXjY*H=e(`29*uwsTlH7CYFNdhmSx-_)UEioEP|Dc6 z4HI%dIfU7-)Or#4SlD0@ayP|OaA6RK~Jfwz-LgyOAV_ zew@5W3LS_f|7s8+_>tTU`FpjKf@xo9JLsV&Af+Z}8h_F|mka~-dH!P2Gx+qTyA+*B zD94|$CmPA~Ko;cwBm_H9qYKH`>Ky(y@<8rldOS8@r-?L2(};>N0r?GVGcX3gqJ!(* zMxJpl0l0VMiyGG>SbXJ3&#GZexg~8VjDeu+y2p40GRR*<6<`Ne$CKT~ zB}5@WPoOyA34%ptOf+sD0^uWYl?L{*KP#}p82b(DT3hh(AyGtV{x1=#CCpCipaFhG zlG$Rxeem!R!Z~@;%h`uE&h9ixx%N}9wg~?6)DS8ar7C3Zs$DVvFH<@VZEsyVeP^c2?CKd%8o zRoatUNOK2V*c^7|v@MbOkZFa{9S}>yn|+Ca9V9Bvs96B$nUR9q0LE0<0>+-23_1}T zm<8WF#lZ?Fb;>6H3nH!DP4)(re5;Kj-9jOtZ$2Cm!hloyC9*SHNByAsQm8QXhe(~e zdz>_7V{EW!w<3{jsfF|PK9Lh41o~^pu8F8&i^ZqSfOv_4Km{yv8MH6SSxX48tRx{) z0sn93ddIkrrZ=4wO4peyCBK1m%^(mFP9j1UrxdU1vQN$?f+M{CRD02EBXjSg!-zQZ z8S>1^?Z}ixXmho*4UK~ci&T%hB@3+V=uMRyIH3nqGpw-DA`8=D3d{8+n(QHC1ii`S zUCJpVS?$aCb+o!h$t?mEzOXx>pW`LOc77z^0s-M4pzBi6A$ifQnokH)X8;G_{+mQ1 zV^0S4C}-o9$gz&H+b_8mt=#MSF{41b4*%ApOu`ilCYyjT8seBCBEbXk%{jSJznQ3N zt4oau=Q_It&iBSY^`~7JiHb_isfvjaf++Pq5DRy)&=*zQlX_ORLGbqiyUn|NCKj9u zN`dwpEUZYC!(*Ag}>X(r1C*#Pki`Q35s`kT+xNA4au% zuw{2Sf9WRMFg8I|V9;VL09ahV5d^TXG52;-V^G+^=CDpjCapp(yr0ZBqWB7iip*`Y zM3vb2R_=nx#fK1_+%YkXBtdKpC<5EC(+fA**%t|_1qPdJ9k7)j4U0prN)o;pPCsVX z-_dhRgIgGf`e80rJCov)e{kK`?M4Z2D_v?kxwZ70(V)?K#MjmOV;BdRP{D=N&T zzu!GM;Oh%Da~ML!b}|lGI)t8XE@s7g!>K&H+{nu9V5dO z)=9MQ`gz{eGs~?F199`)5bvHe)^o6O0RKdq3xTzqLGUSwVuY+7J*?jDOE_pf&H>k{ zcL+0KoSIO@n8Ew*p^C8U5re3Q3JQF^iQw)YoqwKq-45I=6!xV!19YB6c?PX81z9|( zKPd!sb_I{+z+=^@m-lci6}FpAJ|=e)C#*sTqBmhyQ%MV(VLL30*>|C--QZn@(76v> z`x?kP&4eoXlZsgcVGUgHU&ns<+bzpXsm;)8Q;n8?Zi$(|4L#%n$rOxMRQOvX+>kr^ znBH$2U%S=;jXA5eC`pZrQyUfIsLTRo3VBC!+%I=|P*$=*ry zJP;YMm=YN@plsrk*>BL$;;arF6apWVvQkMNfI6O{m*Xx z-$h!}H1Rt5^P`I2f2kOqe+f0(J*#t#;Fjk~kf>HrgR=GtmI|ZHb(gIdz}P2QC*e0v zA$dUKGUA`WW5eRoe+~Q*Hran1vpx$>L=TCTGbwcs+Em_86p0Y4h+D}Fk}rFuD)EMl zF&3xaqvoy5rOb-lxp4;~w_iruU!jsQ+D-@p8VPjr^d3?31x#9O*Z+CQi-Gd&E|NRb z2+r>@|8v}t-0zHn-={csdCu!1S-g%gXHoK7FoWr6q)W|9uJ>~dxL9~1MQxv$QS(`p zI!mN|HBGjKdFGM}W_J-&8S!tZSL_+yxP&LX=7_XGp%_g6!z3&Isx)FU&V15g0iUe` z`s84y-}D}TgsAaeOLAldi~%&FS$J!i!kBdlkm#{4!TNk#OGDo4+d^^L4&KTr(Ju1a zz#LvgymT|U2V*u>a&=oBWJIjBV#bYxjdq)aI3IRgEcDd4t#L>J4zz5tG6ax?Iggf% zNf}p2B_W_Qh^cQTkF?bB6xKR{RtN;kpMzjk8;PKEK!L_bC1<}Sv0(@!ZZM=5SL`I0B7 zA;3h8s3gu^p*}bHu6i(Gv2(X*&fTjn6zGTrJ#vyILoodI5FnHAg-O z6I*qn02vDt{#sECahJ6UAu@>o07HEYs4iAIjc|{6%db$yl6+`QIKjarLr4Jh*sf3X z>^jQTgs2H5;SAVlte3X6b0>|bUp!AoLLpDqpR{k_Yk*BGBL0emDfI9SgG?w!nz~}+ zS7u0$4T2rvPP=}=d0wOpjTv*ez8~#u-v-C%$nW;Z6_>TjH4hUhTr+jVkYW~(oWJgj zk&mxd2?L$jLmat>4z|#I!cT83kwP?Kp&tDU*8C4rfj>zm-~!zwSp2#A*nk=Az>xWX=W?9N~BeYXsn1LolllQWR;x9%U4D8TAZ|ie2LJmTS_gP}bRPuh=Ulge@+bdy_Ni_m4 z4J6VXrj$tE4y#aAX)2Nav9w36Yg~C+qq0eLV*MH22{n?>zL2tNtLgP1fKCFD#-B*a zQww+GSv$9|OA(r-Dk0?_fEHpF7z#+?2nBR?D;}m4ba+ zZs^;T>~lR3jG_>va!W%RS`zfHB}wZb3AGD!n-<+*#Z#aI@ZzZ+h1au-PbG^nCl1C0 z^-vn%3;7*YrUZB{bN7oHX=mmVGn~$N%I?x6d9YcQ5CEr>p+0Q-Gwf;CJDw1brl2BM1T_|RyAps}CqNo3ZY7pA|fIsjf#=5!%qk$QgSOD{;im0;DFZ za}_G=8H(vzote9dZGBB{YY!W7e8ywmb&Oaf#U@RYM}n6_)C@CCdd@9?sYe@JN-nBI zs6-p(2?RZnbOCmpcoj|ftiRQJx@e0YUJ6N4kxpMI&gIIJeIx=)4MafN0x&VvDvR`h;JUNHsL`7Fxaw_T`*dMX06d0PTD5tM8s_AJ<+I^Og5_wwv~4QIH5{)1->$OtmSm6>UX zrrdzhkXSj!HD2oEngd+#Om~P>LV-_DfmOu>I)70=1x)r50LQumd0-*r^-Tmx4pggf zwfv+?A4j4U6Jn z_;v2(TAEQ~fxIEZC5rn3mw!Et7#dTf4%i4P#;K<2kTwx8f{mnu5bC-q*$k#Y5!k7a z5E4v;2p1+x4r}XFoVXEBymoh2DV8V)1EME`j9F{NL;#-gCH{;_Bj(azeg|nYO#(VM zkqXWLz0U!o8Fu4q0TE=3bncU+^N_8)tuHj;z8EFPr&}xWjGD~_f1*Q#P8Lh9V^PY# zMADNwu#h?ALZXUb1F-ihr&@O?xU{@NKJ@;0rQ)HI|VGm<_2LBo*y;;Ft3IPCa%XoGA<$(#vYCoL8|LJ8ij z)AWdmOG|2cOrD}6(sNgR57dEEaoVpYCEz=rY(2!Fm83C_KPeg`xyjvz+pI9ks_WPZ5pPrfK& zjNL@DX&^^(*=l@lq0?-XJ=k1ZP=q&&PjSa7}Bd) zO-%`yfS9iX)?kl`qXU}%Qh^o*mYyO(%|W)w|DQbwD9EC=jVG|#ZyRWu{Yyngdtah%xBNj&$t$07mNr1KM$go6yig6>+exBm_>F|qpp&HCP6 z&X<-%CFlY(@^v6Vk_#q=|Ie;1{%G)@z8zA@A%uphV6#ydv(~rFs6FzS&%W2kxK(2= zC}l+Ho|ez6W0Cw%X32W1Y|d7&rUGtCepYKOVERm=!_4NGhV^wmeZrdhpVUhKYPszv z&i%=E`-rsqMR7}AoF1zjT&g-uS`5)d3t-wmu+Jyt^M5Q-$Rh82Xno6CU2Xy-{#h^C z4O;3Pq52m8jv0*E64x5#|hT&F{E|G1u);g`fkj<_=^otPdG%oR7RD|C<2B&m)sKJ1!!So32poJIVA8jU1bA>p~1#Qj{1`y8v zHCzi~^?Be@>(u8_ZV^Gj6@*z1&C?K7=$WE{A3%4M1~g4zafA@koy5)HS^^}*xR8VD z7y*7+5y6&b)ByxYJ`f-|LV)CsHb^pwn~6r^Q?JEM@H~LzlsZI4faDSZ5)T3-(1MPE zMAHQiQtdEN`LmAbkML%8TcYFMgm*pBbTM{3yA}NhU;5mkv8HuqjZk53~NO!&_+66 z$x}iSsn1~(>O;??t?H@Y*mw>sDs@@gAkq@`z5OA=jqDLL|EdhgWdBXq0}l!~mv_r; zYB3_AoFMGodaWI6JJz32PXCiO&ws2Ku?X-#<)QGP_CLVnzhdt~TC6~uoZwbLtm1Y6 z>kSqxc);;~1eDb)3DH|x|Ifl+w>rtng)U0@#dOO3r2>=$%N$5{fkPXkx={s?E(G~LskOyc2>#`zG| z6gdJJ3?rC|QCI0 zg1-ebc0ii-7&{4lDPGSGh)wY2h$+MPnv9Laa^%2BnC(^$8O%tyc2_f%i2p5NIBrv` z57`{17}{f@{yRHEW7hGY#tLLy2`PIc+>zhU;;KMgwG6)Wq`V@LBYTwBl;HaFc{QCR~<|vL~q?pO?_sg6%7qcUzfImzmPol_N zYXO_hn9z`5I?NPi1(XNX?`cnMQ z@0);8g7(NZtfm^vhLE{3n5Tp;x4Kip1vuH@*Y6U>+Cg=?fJ_0hSPgl{ageXk5))Xd zKWs3G@NC-HY|q6X+{4bGP1}&4hntqFLbQqtE)e?*#rJDHnO<@{w}T7NyFN$*J**=D zpm&7u#pv-erXY!07O$Sc8L<)aqc}Kr8^`v!^(@K^>s1gl}{8REj~ZrzJ+ zvaD*C^F}h%tWLEyYQ!uLETnw(pqgGYiL2GsEmdg)s6jAbs>mK2rl!z(?H9g=z(Hg$e*S266qgK~I(5cZed z?&^ni=>zIh58r8zhf(|Srnc^*uf<0Hu<2tr97DIroL^gw402UdiWDETN{Gq{(5P8+ zt2=fZSp-+SZY=xMts5B7))1Z;WWk6DD(VWpbhtu!5t_<3$0$Inlo|T+F$%a$@Q)Le zn?NHE5I~NW%n%R+aD|X&(2sH&LkIutpoEJaSZF(c2$>gzOfcT#N0gyJ>F%F6;#>w` zZ6Mc|Yv8C`c?*DtsbCltY$A6LRNzHq2k3+p@^cd-Z~!a%pu>ulQROqeKSBgB_zZ3s z$DpnMXOnNHilwRW;X|hvHU)#IVvO4cC6m=I!>oX9%f04cg#v$&H|Aoaps-XFQIEnl zigJa^E3qY?V%;hQT9r111Zlx+BVg5oL#Q!ox|yqWUZ^g>MspI^QiFVrDQGo%1%sUo zZ0y35{+Wy7mN8kc2^g*emP>kkK~44GT%Com$ll9}$bPjrF9# zZ14HDZzelDHBN)EN8BAoW)Ex41>-(o4npoqfG?YXZzCZys@#NI4?7HcvUVKXROJ+r z5u`|RH~ZtFN@g*(4p$a=1a~aPc?z^8o15W&DW(7fZD+h%^+59%_E+E`BAU;70Z(1& zJB{HF6v`0a*~7%tiW^=W3U|xPS5Ym!2jf6;A4V^U@3sq%UVCi*T@&YwL)z{Q0>xig zcE^f%ln0MqwNbe`z-_=Z{`0l?Z9Wt{-G=oHUyW0(BcxZ8yRZ`t+d1s#@B4ae%AE7Z z0IN)1Y6jgaV5wDKw<=_M;|RSId*i=ip@CxI(ZwxmRa;Yr|4RGO>O?s!bHl809%0S% zUmpO~g#5$9?^b%Xu(=uYRWUgTuFm#hiYns*MS8%AQspDXah8 zuH<2D{MClnP9EQny8l46;Jrk%L*Tb3L>&t|UYQ3%^5T}%x0J*EKfqLOxNxa6Qs)1C z-xhu5e#RufKDon@0r3e+Qy+JuW6Sbm)nunz^9)m7iwj#_yxNiZrk154U5`xfh<06k z7;C{;xC?IJSc3#uw0gcYs57uF98k*^$-nbb{79C5!G-i#NeCMk;xOuz)d81Kd_DUD(FA+PSPqkCTj)AbDsy3;yl7T!sf6+LGu-Hj%4 zT5ej(cdu15jtsJguxKL@jw*K(dz|V{d_}7my8G~&KI}D*zN0uc%10*Lz2dp*e7}=^ zUYB6&w?<60or!v0#joK6-HLT|U;>Vi^H4^?1b{~$$etM~u_#Wb-GRG)65xI~i{uYd zpXI`wN-KH9ukz}RZVUQ8v4i2|vXD-S)8>1B{w?~TMjJ*yy9da+;TD<|9#htwv^+Un zcK7@3hs*q~PVKZC3P3uR7ofD=8C_f9`3w*+sZ{lvEUC^Tf@=#2hDwGew_K^$FxDlw zSSW4`t-xlC_0wjTEQ85@_S`im%}1NhV^8GN7e$*Er1DUycwm@&^DHW6)%0z{WCGkc zidWna{6w_8HhX0*=gNF@-Th+j7M7TbU;OTWraQi^+QqjmkTKZ#ORJ-uDWP8>$7VT0 zB0|mP7_iiyGaq>Q8F%c0CP%wB@n)B!%Bx*6PNY@7Eqllnm)I`4hzu&L`AoUgYM7mh zx&esDw+XjP#DwRrX2ML^Ry&trz@E)Tjt=l(Z!%Z%`_dCO<`q=cN5j?OzSfq7zr5#; zIiGqreYc(b0W5Q#ScbT^{R(0JfQ*G9+aXUCSDN|Ob4QyzIDDz{<#LbE@A{=2L1v+F zHJXy^ClPg(-SLk4en-Vwx?J%GSxG1+tnm}XN)R%Gl_G8_7U;_;uOkU3Ok;0HiZ4G+UGW#DP3^Vs2gk1ma%dk^^^$l{bDfArgTfF=FR!*Hp z@9j=JOryn97PZx>wij&flWQa^5J~=?c`-2#G1JsxlYV9yJ%U>i3c~BBz{Pxun&M@a z$Vw@4(jg^V?zOo5AiawEXTwt(KY90Rl0S$R@XNR`!G{vIbDc*f1H$3LS(uw?w~tc& zmTL*OaT#uG98r4v?Q&)K4I|6eut44ls2_JSAM2QA;pkhg_JWWVgq4g>;=$`qTU|Q8 zG577uIhmVsYB*vLfAE36xFq58oG!|>0;g(Wpz_Y=Nng@OB%G%+fA^n}IuWkT{Co1o z3K3vxsY9-909*rB)8sjiVUSexP+vT3Kxjm1jq2^iGZF0utcY`zu+zd>%I5}F_sSEF z-&m2KPYOKkP8MV_9#ie_izkEr5XinAV8mI!-u`p)=aQ`v0_!szGAtwS?e<3+W{E{@u6 zldv+xa@^;slqWRh;;5DV;ey4N@v-%otwqIqjWA7y~|DQ zG4GNK68cBHkE7hHn^NMIKaSnvEoFoRen|h-W|q|UpOA@FhqiMkKI!|wvTL@-%7H8M z5QlG6hMZ={aT&DKEmYQ>1$6%n1HGOauy-A*`vTL1zCz%B9BOdI5`Q z=b~x5PUIEXp^xrF?WlIQT3vPEb>5GguX1u-Q)*X~g|wS|PgmLxmpy)uMr>@yF3}y- zjMJ&s7(L+uJcXeAHtv)ji>05l76!KZ_{MYo7`tt#w{lYcO=Pl3qH*vSY~Rrb$|q6+ zsC^^@f@}vqlBAIq9Bd1#pdf@Mb~!18@PqqUQcJ+--=SasRNAoUW?{|CuyB!&KGLvI zRP`&Ryyp13J{+-rN8QH$=kFVxUWzSXk9(H7umbW2SeXo{W(z@9_xbE>lFz&V;|0I^ zbRaA*8p|udnu>)7~dOZ#klnowc`2qcynLGtq?Om7vdGdx+L`-kwN%2 zY&&w^SiZ7sRMx2(8@RHx8rRwKD4*Mz4)1v{FNU<+vsb(?KF5}fQc>9_TT=$bVY<_A zB3=rkNi^p}p-nZK;Jv7@=1RG@k6)C%Z0t6>c2?V|Ooy)e2g^Mccioho9l@OVZ9-7- zgqfg}jROBcwhO}vfEh1)^j#Z2D*x;HVM)|oPseUcn4Ffhw4|VN@G)6h4&35H=^Jvr z_~yH)@tGGN8j6Q_XZ)@Fg3CFe!?}6DTkaE?*(}HXO4pU|i(9|3*#GVSqU+n^ne6}n zuNgC$!zgXYW^-?Z*8RErd_TYYpB~d6+jYGUufy~8d_7+_2U1?F&pV+kDfu ze7xj~GA~ZPQih6w2mh>8E1<%HJv>aZ0s|pO4%I#nb-$o34jRsl7;`lg3_G!=AW4D| zxvttc@NVxXNd6rSbFnmiodWEe>&BGVK;)%24qppV)<%imMOb<+qxgrsO!_AEV=9%M zv*2_|R;FXi-#$gZb2C=eH2KW2n5Pe*g+|3BOb5k9w3)kz@?o{$nSL|2RmO$r1(vbL zteIgEd0(Nh=?f-l+PcLVKmpk=^$@X>dP|vpSVfR${&%JAzrqb6NDcwIWfE_zEDIP$ zF~T&+>He-sH=;z7u2~GQgO_74WsxWhCyW+OxJ%1^YBo*&#PF>mMe5e&gFvN zkJ^|wXZNxbD6YM&9$3=98uSbHNG0 z_j#Vuqe*_6Vfdd~qbFH_#^AtUp4R)#le=I+v6>!BNwr6#cai5>y>^3GV(!nq;f0uB z6spp})WA~7A6n~xyp$Tf5&0uO+(9z0ki;?XJwDIDK+4i5ReLrlphHiN;x$M_Dq6_LoM zQ8*?Zb9Lb}fLfLPedN&9+Y}}88DW`FHTj#<-8I&F zXC23jvZrH|60r5z1i$`K3NI_=ih?85MbX=5HBWT+^9df7!^3YH1lv;AIuiZuD_&mV+Tfx!<0W z4n*wakl9=j8tPFzr8dijhu!bE5;-))E$oJ4jwreLu3Hm?X}@DAa9AdOwO0I_`b{l} zYOrx54^a`+A~7LYxV-&#e- zvHZG#>t@5pAj+cHaYfu*r9lSGa+grGI3?U?Um*`7i-D2&B+zz!xB#=`meEe`HdcB z1EW_>*3P@ma`NK(CF$;SB&z_YfQ0ip<^UQV;JeDfvpL`p(W=;KbSb!UCytg$M|}Bx zSzi8eVQp$lcq`A{J3vEf*5@UnE*zj0s7>yg(cW1Y$^k=H7a_MI_k0f6a8aA!m#3!a zmmXAP_lmAjBKQOBjH6IrNocqD-U9VK2W9m>ElSk0*lXw0y2IB*KFJtDu^4SpXV(t0 zR~1;11+y$)o;f zapou7l{fAp?3@=ia3LRz+ct3W7-J^`-ErN&M=5;wj97s10+Z`Wf2uvHwX03(*8HL_ zI%Xk=s7(g<4cW~`*-ngsN#(*XE_B1k9xTql+pD?bzcaS{t;V6PXn8*g)La0XE022| znGk4V%hkVap}tRNyQSnBT(amz{A=}o_X+&s)ibJ*3ok@M+4@#fkbrrxKgS?8`7bVM zetN--0s{pdPV(d$04L;cREV4>ptr0r+5SNa5V7xkAS|#BUWwyo>R(?bij&y9!*f1h z>V}QzZn%dUhdq{ZZQlM3&;K(4ha#5=1DpH>sKy9)eZmy?g~kjRJ*%s&4WcjVDOlG+ zXwi-%Wmz0Sxx9o5efjAsF+7Sub2R;R&s-J@1QX>Jf(I;wn>_vG+Vr)Mlt;^I``#T8 zE*vEuM4~HXQ6Z8cY@wyGw{Wt67M)7ixp2Fko3>>w-(E=wCJ4UI77wGKHL`TmH{Z}Q zqOk%5kP~-6&x4#SvuYI>|M?as?9VqWGT;?lm^?tcU}}5Fi|hHLl;qPfsnYBVD^Ei{ zi=aL4^2(>dWW#8izjb-P@8I{J3)H<%g*ftTRAc+ACV?88@f zp_!VW@@(&lRAqfP;@-JzpCROpsBcZ*wzAu>(2L7bZf@=Uuq3zqb<}<&n2lVb{{+2j zG`^1hMZfeF^{#7P%HO^B-f^dqxcl0(v>UAbp{o?A1m z@n?u*$3^#fuNOJ_W!yn%*H+$9Rwko$h?u;ah`h6kkp`Evnfe+END@1j4>u=lc&80j zw88=HvCGhBYJbPDP<~{x_b$SrO@@t27>4f-P-^>VA5S%6>~kU7xdlRN|wp z9zuI5enRX)%*EUI>tETg>6LeJ?z*yX6&t1kSKJ0x1`SFo;Nh*n%JdGQ=!U#*RdJ^V zeXm(tB;==Yp}?B_UIt|^U@s9FG-P?ROSSWGo9`}W#|c2CsZt4raktVbk*U5%v2gUI zjA2ZJR!Av zo>@D|eGAlQb%~*s|1{o{^q4%6P1(Jb(^w(^8g0OL$YB{^q=CgQ;DbNf6i1~O92Ev; zDZa!p&Lc?L7&&vyUqa12QIMKz#SpA^p!=UdjPB;o3Qwv6%m2U6~!#`7i%%Px)mVk`SlT!im}IL7Laf zToS*Oewrnr(!~7EUA#AI4%j86m0RkcJXw^b5fw9yI~#lDzUD2}nV4p9G@e}Ce2IrWc!e$hHAMr+cW@-A0?F_Hk1dYM z!me33sy(g4Dru=(SnfcGEBRd7HTAHYMqcW&0vhs!=$L2JjKtMBlD5&jqfnA!)x>k*f_!X^ydMr2tE;Le%Ee%?VG3v7+9GaYO;=XL zVU)m@0-|$ig?0a;$>bQ7>-r2A_1NCSc+M?ZpJf$oCjI)`bVDma`)Q~uk0pNrH?UlC zbywg+OhNM92U@~_y`R5|2ZjPg9DlV+a!Uq=^xwZu;Zy0R!`9sjChLgqCcD6264HMM(P-Jc$wwlVv#9RQ{Cc~-*@U1g*qka(f#4K*KP;s9XMDuZqi zK1xfPnkCJ~sa0TG|AA&oP1Ujwc*We?R1bwWu1<0*T#YNz@?4onn zuvKqFy{icoyhnCZwhV*&QKgaz%k?k^i7H|MlLp^r??bSq>++z3j$8zXxuw=yg~dtqwe`>FwlB|Hrf0WB#>y# zL%`W?zAFQ$T}-|7T(v!0I9qJM|N_Tu~1 zoxC~ngbUL?g=C*s4YVw9WS5TeYL{=gcaXRw#ki!-oE-X&u(wewTZyGpC$I7#)gvU3DSXfyvxCcY$Ckhf@&2V zbLx-Tj_Av%z8Q$-lH|2^Ju*0Z)e2817w%lF2wrA2W58g&Co1emi@`W`Quzz&5fx0r zYeZ8SGrHt}4o>vT@$1b`c_kUDUO!x0g~*MS*iSrs4?z)g-)RcIGehy6a*zuY3gx$F zOfy599@ZW3ql$#zRU|oxA_h|~S;jkCXJNaRA=)ZdcH2~{3Gy*B*11ahMGf9OrrJHhI>xlDm_XK?;wF%5Zf`)cISGF9Y>wOXi4)5xrg$J>7A;cDx|;zwfWElPN1tNiH`L0W`S z%mJBGWbsx!eQ~^_a<9eKGDJA4)&EG@>(!;{qc*eDRZsZ-%g9Nj!c`jlB@M@v{OqG^ zvT=6E=4k|F_QZPS>jAx%^0m5A!Qe!(z8;FW0ek~IQAn>RP#OFA3Nw7UBdfn{;IRPnF-@3w_9fj z<9J7*TX5bXg=&J2!ln8Hv|Y|u0WQ^hkvwUf3KZXcpz@yFphrQT7`L88_R+9y*bZIs ztNz{MRfA7?2mjPURwUBd7pk8Vc#FwB{+QwewC)*-&u*ql)T-F#)zI8%=01g%=SiTs z?F!;Au=sEHp%bBC^;6jLA5WCuPVc_6#u`yw`@FKAU=@=+jcNB=<4HE)(o{PR&W(!i z<2^5DqpXMz#Q%nH%T z_#&%0z#RC?ig$`SH%vQA;qv7I&E1M~anY5kj7!;TLpDF=8YUyz)6z_A!0~uy z1Ix>RZGHwz{=u5HzDwJ=3?!C?TaGVF-L_J`(TEj_Bv0NVDDOQ42dUHWxG_EOW>S8e z7I}zmZ{mZCngG{&*$sNd{6<7&es6yu1z5E|U6iS7V_E}Fk>2>C1fo54*v#{|lE#qS zM6>OdBIkr_n4QY+gfyoW#Rt~8tIOx@e5Y`5Qn9pIa)a^KwgIz8!YphbQk|~C*{e{g24k2j*>CP&1bSC zXe&l|EP9~?5F4V({6OKM>RVqvK=ptk@?3Zo4NmY#r;Q*X`?df#@zSdQJ&qnXzp-3m zbEdfy*uny`u(AGmcQSt<0(%0H8c%J<{QH|D4?Q~2Vb5w=`knq9Y=AEhu`KS|!rNyx z53bxE#2(p$@-{^XBb=>O->X!{N=Xtl>oDSsJ)R%=LNne;D&-v;N8qdC3KJ*G=~?$1 zn+s^*hzJy~CD#OJD_#o+UaL2RDf-KtAs7oO+)lK=R|Y`SYJut;F}}JpHxj}m0f^>*K1yaB7ohn5GxzW;N-)aWJyS+exgq;C`MXS z&P`&j0zM7;;vvFLa`t|oZT%CPzD^X)iC^pZC1CP&z!#*o_F^@?!23SCp-uBWuQycy!?`%?m`j%D5o)WH2D#JrRz-=gqs`Fx?I$MVr2gYAdzECoDuYZG) zTh~^_ips&dzom<7Ou?wSpGyvBVw3;EM=eLVw8aIJyD1ExR6@I^>rW~P6-0yUn?XEb zL$Rp+A+9aXJ(A5@huta|UK!|~F{q9rCDkPFiwl(4A;rAAR}zMIGPdTx^)DCJURE!9 z31%F}&+~P%nlo@bMffJy83B=;9KIC$>nc@t_Pc?Z>FxpQMP|G|N*?oD-zRse|E!Ym zS|_8kG3x=Dp?veKlyBj{$4XjOF^M(ku;zhHGyKPoW8&hnWRTx9 z_Zc~;i~_{4kwnqwJu?M zG;3^U(z}0>1O`O7)~KZH&OM}2y~Z@^GNLfFI6LV%c`_}CX!$6KJr!ueQq!i!CK+~0 zwEn6gYZfJsa?9??ZH+?XWj?6aC`!xC`|OvwLK}~qiEV0HP1aNqTwR5j@!DHyAt)X@ zCPhIYyqkK%(G4eGb zy?QV`~ z>jlVZ@GM0yn4Ukn@>~{!c7emYJMR+eti)5tXV+hqnELR$0pn=o#YB2du9jE|I$DJ_ zde>FQruB=w(jV4_t{!;v2$-H@n}CxB8w$9cKpAJw$n__I5xW%v;~q&1D`}~?GbYGw z(d2Hi9qK7B;FpCR-jhsPrwJ5@f~>StpO3}(ZOE7(?LfEb4~b`O1JI3$Wt)U?TP@yE z!@7S2qV!&1U+Uf>aI>Fk-g@HnaZpJ3XJA_{APdTKrmkWwgx`9i)WYAGD;JkFR>n>Sg^v6#&s#cnR20oI~ zTQ!*|msN<#C5t@Ro1WB$K4FW1uRtnjEBT;iDQ{~B{t!rbAyAx~2Dgu{{RM=@>jJA_ zoUW3vqLyt?V(NFo=XS1Z#E1A6Yp=F*R+x$lWYEFI#+>(nLAAr!&c~`e4iJE4Qt4qox z^_btqN9eF#7D&T3O(WsWSCr(#EwfXyjz^`?C1WYg!pYrX`_lbfGE!9qn zHu+SoI{x^vc9c`mAyoe5)g0H}6uq5fQIbGUt_}a)+8&)-+btbvEkvQl;j-9m9@_p3 z5|WK9_crPKXBBbERA?}D3W7HUpl^rpL-fg-waVLEK0BZ6GZRHHB_nny!}!@4$yk29}R=NPwj?AV|w(NEn?``MSN^n;tVMMYejiJIG$IPIuFosHGv-vqg7 z+Q_lWgxELDV|^#t_^2Z&IZvf%`SFe>clC(M!!{_VhN!b*id@tZQY2WzKtw`Oq4xs% zP4qzYOnr%YCSrfXf^@6ERGbKqA_4!P2KHHl<7nNm7FxYOaiuoB;|K9_r3rMfE`gMI zSe+<3CmS7gTYtIou#&)Ic3Yr@T=^%l zj|hGeU>X^~Ky)gKszGUDU?2(uDqd0-P_*qw(+#tvNx68bNB5iMRTc=?ACO^+xQy1T zKa?7XJ^bQ`?Ns8k1D;(t_X8IsAC7wNrUmbBWBT&k8;FiWr?f$*KEh~#Bp zb>&@lz>RJvJ1LK1x?EjQw;K~|3(*IRg!`%0owFQgPb`0a{-Qd*4N}ZsVLVFM4-!Ip zpe~M&i+A6W{u)BHu35)P#?G(br-NL=yXEB`oSGxDw1zOaR4z_vdY33dZyfYFf+brY z0GPx#@W2LOEG1=*9?-e4iBtgdx*LK5i4h(4ZmaGUfjoR^FRgNi zIDx9g>!@Ia)m=0fZ{2vREcUUtUs8({@A|`e-Imt6tw^kM*j?*h_JnI(9JWoBDXyY# zxAWZq0xzDzvmt;X+@>&uxeO+ncHqO;(0bTfve8EOxT$7Duai z#4yg&+C3m-PLfBSh|7n5ZdI5>Z~cd0*FOC86C?l6W~rAq>70xmU*L1DH!JO!pGAnx z2qz8ZgkyLOD0<{P*S6FUO%p_JN9w8dKY3RTTZkL|O#(@N2-AS9%exq;=o5%Fn#vy9 z*k2J$v5#g#dGk|#(GgzZ!LmU>&xloU@b3U49I80Li_(%HCuPbx=d4&)Mhl@sn-Tu* z7mCW5&4Fg$hEcm$TpxQL_MQgRGqu|#bc9MAKOi*t6N9@?EUchxx;MLUBP+mUm9gec zO9a{c9MAY-qHR;}TBR)-H$o7VdW=>Et<(XT(aOFE05zndY$F#LoUb@pSn%V>XE)q! z?2vV%v>R{ZU|b*nieu{a^YtE|jUbyEFh3hw!i*b1$&#tvk9kL)AsYi{{7QATBtCx5 zHVxV1^Mk1j@6WFD1HNpIDxdB%N8Cu1g2D9BfI=@HlM3*=YoG;YvBFf$1E#_Wr1fp} zol|DPE}&F+8pN0#kj*WBJ7v)tFbQ1>U=QzigdV&&+$S$ZSRX_@>dVW0!7&%N*yB(y zQH)Ewq0xzXy`{=svqFw(L9^BeU*ZInp)UNdj4b!tn2p^w%0gG@b`(sQfE=^+Q2kq3 zcEi0SZKP-cg<1G4cGvNaVOPD_&j=h7R9jHKKdbCW#W(6@ROXv5nMu+O&>tw?P%oL* z-1)=U$g!A@0rc$QxO{rteI@oHZQ zYJON>JeJ&XI9O@dQ}lZzg||`%7P`rd9W`4xGZ9gRrIN{1EHD(|x+;~=jJpFtomt>& zebicqilhr(2%qPUPZ1IE=KNn<@j|`Yi~Etn+lo9xfrgobC6+4AGU$py#GsjrmL`_v zaK;hBbDKDODd&Qurf~hr&AjzrXcylm!dLgIjJ_V=`mEHsJ^mDWrlE<& zf73z0?-v^Lx+!rt`;G$3r=o-Lu=oHwD9!J2iCa9maUB6V(+?*AQY2G_Ghtn=KP$x) z9*Hx)Ko5H^lKf!xqyHDZCYuw3r+*+LFW2+>)jR=D1BvZ=g{K4~h1Rufe*gl?qf&5% z_ko2sQ7rsJu<)|iroP~=jC;5hdJ%vGXH&anVmh=&*pws<6%EiWpy$lZ%_PNCqGT2)7P>^n|5pUhm}c558mr40`d*=hm|c|Nh; z^pJm?-af$S^Z^O(+C?P(=_mM2Esn?vK$}VoM?9*? z0C*$dk@n@TMizPr9QEhzF)&{5-08!~K@eMCXQ#5uOS~O5wa2EjUx>gwTmFAlZ z7KEor;>W;(G#ig*MA;Mr&pFSS;&M1+G!n9k$AVs`z+A;oV(M}eX_3o24etyhJ=ltFjypcH| zylMNcc@#wQv{4yPVmf1ax&pAQ^;kXs45k(Di4$Z~)h?Pd6EtS5iQ_+TY{#0XjHEvWN=hb^u_4EJh%OhRso^ImYvfoZ zdge6~U|s@up@{Dhd$lSLoS}%!9;9SJun$t#@vFb7W7z|Q$>yq?V)n4W^r>8d7=(h~ zD-a(AnzaVh+={2NfdgvfA?0eW0332s_F+NHIhg>Lb}U9$qo*}klBLQ_*uP#zZbZ(w z`sRPudbmY$5J}ADlw;K@7U9Q|1}Pgp3bvjH{#$evw>kNfs7BZEnrj*P)+F_=vcm2v z24+9}NAs5#r%gOIU$^ITRST**KtKP-L`L;(X@Ay(uN%85lzXS1@|tydsmzMy#v{}4 z)t3-sbO8uX@1NvejdZC%TgGqGCZ#_2uOy|l7SIMb8)1_}+P6zi;3-nZMf@~j*N)TJ z@*Li26^6Qe+yAS}XKvd&6QF2ywH_yzV2bvt8LcQ{{;baa+LZVpy&TIwyGofl)zEb9fO zi~rA3GtlB)8!EFmv1@X)gQO9xxU{V?Ed&6zEIaY|0E4sw5)=c5{?EnHB8@JEInp#0ORBxIIxMh)Fxh_wb328-_$|qrR3hcg!8)U*7(;|nyf;#+1 zD;DV^t5q^QJuHq$|AZvK$&cQd7wHfjLtNjtISF6EX81?Ew9?EIh&{S5Ee|9NjIF*_ zmFQHL-u5BUZT5|c9Ng+vT(BznA}fmMQ%S&X*5RY`2sh6rnx@)SKSCQEtPh-VkASKD zi)8MfR{7TGhqdG<&(lS{A@9TXV2oPLRag<}PI*R#bTPB5T(HX^Il-gbL>aOnsJwGYlY>^h*@hEa35mj zv&9-CHC?*}7?W;gL7TVxYnO0mqsiSSm$e|RBQ{Hg1Ijy(WA_AN@eA3fFX10LR7WcZ zKa%JxRmQ0pt<17GhT`bg3^OU!ca-yj!1Qz=yD0}QGyhQogHE|XJuWVhOZ??JzmXGrRPl`Jv&u= zIYq=yr=A$T2kp7GC2O^4*NjgG=!^Lktm^+Ru-t;ZO~0-M`tTTpj!xLEOa|A~ZNW$3 z;@)b-tXB_f(K~Y)PI-Tvc;r{S)96#Qfo!+9t-F3$jnZp`sSE!zQ-8D1(X{Ykc4u+| zB(jM1Q$yfUi6w5h{;dV-XJ}iFX}i%M!Da?#Yr7c0Z44)dL*wcOK%J z%0myoeBwcrup=);-%&*A^@xGTP%T^+_2*5OE?@&{X;q*kY6GB1Na1?lf{))ADx36_ zvb?wrb?>wX1YGNX#^T9y7U;(7)%Ug~gdnRJPRNVnE^O18 zE6j}8*vcC!uQ|(+?@^?W7nlseY!#+GX{K*P245|eNVJ0MnF&|IV#3Z1Eix%wMUS~l zuuLt#NtF)|i&O<-!*XgV0P5!|_aKbi<_hiD4c(62P&}UA!LDg};JzKRgAq6Zb-aU9 z+Ar}sCSCU~DK++V@ck-aM#bzU+_WAg6!g-D9(ZSv=JiwRu&3|!S%ilkGPKx6VXZeA z%?(Z%H^FZP-Pm2Td6$R(!7%0w3it6R z`KGHa@8a+{j&Y@4LmkOY`GFxHTY&)C(*s2QWhuWCF-gmIGe;vH-Br#q*R%eCLbRQQ z$v-SWg=aeEVOL~dQe8236hpq7I#{YL9!B=+|1z6?@RX)xfndJ7YNxM>Twwg|-+ccyF7Q@_pFhRuPMOC*3GoM+I*w%sV`DkhjMb)mBRB?8C3{?+f=)-FwC*)Ho zQ+xi8lR^MHy}r(WK|iZ^JEnVMrBiZw<801vjS~2(MwCs>*xoTWwF}NaSI$Rbjhwr5 zX9(BEwf5-u4?#0#Wx9~gaQu>>S;89-KKSJKug&x!YqtC;4S_7K(P6iN*$_#?Yl{)AUDrX zoFW7?Y9Skb21iSc7qT*XH?;5w&g>A-RG0A?+qHI+!<^Oq%dRHx#S7bDN=B(3yKGYK zlK+Dv{O5Ox%KSYtlKpS8Ep|?VYqPY9Cs6*Xe=LG z-N}tti=KM0bs$GgHO4$QgsG$7O{IH5>1KhlfiF%slzGdZ@K$`;SPVEVL-O!m;e`P{ z^qq|nGM;lUC4U*SxjSZGjbkFOPrghIUR|(XN{R_g3Hj3Z0b=TF?pY|SFX<+vJCIYF zm2HNWBayn}1%64+j93#2%SA`$V9Ybfmo45#3QM@zjDy#{eUf&1BS>fB6`uF{Kb{vL zeq8T6%Gzeyuj*#gZF;8&^`o?In}*<5+&FYn$}Tkh`LEHh)awS9|_yKq#;;lfocOJ37^WlR^^FQu(ARb&e!K30|zAU zeYzxYN?0qn9V=t&ZEVc_jzSHm3C>vWn)Kn-P}_kei6yEZOlMtf`B?jfJLf$~qBQNR zI-)Nv<=Ek!(|%S*R+LHjWS(%ECU8?GIbZLaoyTa0Xk_mfC$RwmVz@a2AQj&w)4MOEUdN{iQ;#?$J=LwiZ;pphcMt`7nJy#*U&uMY*<{-+$Bpz3h zylz*b?P-sQpILVdEiiqW;vsjZHflBM515?BZ@KeT{h*0+va#y2DobVZd$#!b=VS-S za++ZN%>A)EqW!LF`7O=@wKi_69_5;ywa!I^mxgG>mk|#7NzNl|qEPo%;XS6cidN0* z(;0?x&BdQr-GGdLKb1mzBMcJV2ZV+P?qU7bnvY)IU`HXewlTaj$i9ClwKTv91xm8? zf63fh)e#L}X1O|`?XvtjF>>Z9uavs5=xtKRvD)QIXM$WpXY*{|k4+%5IQFxBM$QM2 z(UWvTEfF}0O9Wv*YLAs97$)W0RRJWsX$4f-`MYvgxu94RS(;uv6sM|L@M_GXPiwIs zBJTCdO5@6V@p_xsjYlgj3k9&p-8=57IbadKV-$Q_1TemV>k@OvsrZo& z8NDOEW2*j@s`zAWr?7Tk4YyqhhZ000qg8p>i91AAb_M9WVdy0HMcF1c|03ZZ^nc22 zeZE?Hyktr#?Bs0yi2q>g$DB%KOo`HU79;v51ZY=%68l;B-xdbBNXh4%jN?9Ae^-oZ z908XsIBdbrAN=$Hvn*>h^w9`H`H&4Zy6SBt<8FUNe_noLEfhD>3ggbJ##!uXkh)i> zEHvN_oYM5#6}Ytbgd}LWQ%p(0KEI2{mz{VOh-$^o!o?C^9X<7YbDaDd{O^hE*QQ72 z!S%Se@J4ou6BQhV{QYDO(pX=#wy<%h&8I%U8NihUy`^#5>!ZFZS!Bh47W8w^ZyaP=Rqo9p7Cq=)3c78o-f0j0rzUV0Ec-2z2no@HM z^_R%mkRyRGq5Q2@lyTbunjfcZ82Fd}k6+sfDoc0ACTO*~N|JND?oM*$yE7um1;}^O z`0fzx*-t*G{Owj3h{*>Hh>dQOPLQRA)XQ_Q>zBS+)xwurGaBr{-ng4^X65e-Zy!y+ zV*G@cjp2uPz*mUP8O@*F+u~jg!JtjHQp&w_WM5v;GY~*4_@Cd+Jpr;Vql7(YpmbMR zz-K*Kz&o1QAk^nv@#L;AlM82hJ1EdWyZjJ-d2Iu41!Dt6+LyM5kq}zCBwL)2>0V4igiJ5r zKEX`;g|T%rqqXNTH~*N5D14AOl|E?V*;QiqzFGOk*I0lm9r8gK03Xrfa6`-wt@iwz#He;YyVqnOT zBJQl$K3Ki$EF6Uq>vlkii>H&DBbW)cq~iZpyxU z@hp@R1ZS>pf6702rl@yBs?N))-C}j&mWAEtwVeyc zJ`%_%c;HR-9J?)diy~S5PEsC>=>a*lqkvVjMTha59a@)<+Wym-O|i z9(>4k0S59?jo~Go+fiCJhGDx1?=Vn);v)|hfrkxoIyZD}fVR`risZ%aweKZ3yeEeC z-l4Q0o&0n6V}yB0BK8%Td$dvXw2U^CodcI)+M6@L*cZNnyubpt=UdDok9+IwNGBd= zz;1%am&&h*(yD(ykKI2^$b6iT&zoEel|@35Rh%<3^)IKA%Z}pLYH|2_F`uwI0EagK zdV&6cq~xAxvd;aY(F9mO2OV;pcE)h3MpzQIo^?Nav9(S!uP#)-ikN&wgG5#hGhs!% zAHW9AHMmg}TXyK5Eo((1`n$%Y6|+~ux1p{Tam!3s`>woz4QVBW?S{@A;HMMQjsP?2 zaea*T7NPlq-<>T9e{bD~+Y@X8=#IBv&JaQ_YFd1(=ayms8G6#Nk;6E?ir%Cg(+bz? z$zqiM&5?sS68BOVzYJh{Ox6U@yJZCTnuUKn9kp?V^G@{FL{trdjE%bAX$a2j`m1W6 z1^I1FAKSM$y0393D(may8X*$Dsp^iQ9e+;+=(}l%nqvp2*Sz)@ns> zF=|9`URd?MF%aqx`ozDXVGDAv8K&TS6ImmWYS$HT_u7$r2h`E zLm^at@H;N(!9eA=8Q-I-?m243D%;eoA0d6fbkkrIuF`9G0^KOC?_4pHUbHhk7{J|M zEM;%jL`q$@Ru?e>a%~TZ;?H30kc{^J(9iG{hoe>*I8$Ydne>xoy|GE}t`eO3|8EuX zpBw-Rskvw?f&*-(#%#umD{AqZ4Q8`m!|vYDo~u-5*yp^RvxM?L5Vy{YP8Peo8zh2O zls13;$(%RaR|j+aHRztd_kC10LQ;3Z^9%F`wUZ3S30-jn5AE6d2!ay^*8R&gV+sjJ z<$Di8vH6Q*Twz*84IK_xiDv&>0I~y3@ARzfY=XxCJ+r=zXXaCOP{XrUZUz;9-U^3xx}F{fl^)x@%1(Ec~yjG-5)=38t{ zOtkC%A?D6c?9k#B7ewnaA-E)M)^+BD-7}a_-<%`u|2J6lD7ep|0aLUn0Bcw75CHra zJWX5MZu@N3*swwVidD*G%vR#(dD z{>5FAwmU%oL|a2`&`PAaCTQkfdr8H%+cL(lW(}wO?O53WwLI6{v>gCEd11%(+&J7> zWU^YYeJ_mxWJv%lU)H+le*s)ji^%s+_@jA-aL^uV+$`{LEs|=~!^N?IC_@c)%rxfg z7~!D}e+?X!1)i#xIpm`Eb>ru_OEB&zF7U4zGZr8Q{5IVeE2g`t8{Jr#iLhVLLhmn{ zOt<&~lgB?d8K&TWgQ>w7&JPBB2Qv0SoqnIsszlRCt%I(FGp+w}&*k%PZ8AKDP|W?B z-M_-cdbH?)4>WIJL9XqbA;dTGiq@uei)(F{rPZq|uT;}kfj6J4koL@M^qW6Z-`o#x zbjGmkB2uUtXDs_``!>kZBO+BDB{)92d?2JF(|DYaw>xfldF2sdriMwVFd2s9r;$>V zXnTnCWR9)HR0NbCzg;kp-h-)3aFpP4K>1f%h5wHYddB2JTg;iMbgzWiO$6vRzMj{7 zSG>S3@UtpTbl6;bJ$~~MGEA+k42RR3O=an~PR--^` zAjT)!G-!<(lCiVOD4*R(BO~Sg7Z2$!oS=n+;P1pC9^C!~CHR-X4p3s?m>m^#-wo1{ z*PyFjC98C_t&5va4M26jga#`*xvdqp$coeU$oHUO{8SveXNU1Ky60~4%0ZgEyaxmuO_+TGLg zH3V~8f2!gZ$4YO0tFZmUZ1~$I9R|&77n8!B3gX}dQ&nO4jJrMtbgNCl?jtC1#7uf? zQhe4YLf*CsLK{12DLsts-9A;{s=4s%MwS$=XOFpJ=+>$?1RkIIjOqpEsC*-pZW|j^ z=>b+d$3EZ-3JzGN3j7@=H&O4x>(xkxJ9=Xt;mmybyVxSV`(yV2=pbV3DL4NKz-zq3 zz;ZGb95JPTpdz5z4y=<3J$!m&_oZC;DyXjjl#d*GmvFmpnsBX1uuRjwj}~fx?di-r zyq93TukT6S5YxuFPy`-4Hq~6|1$siCIyRG2DB*>xjD@4}>sFDM7<7zr%u$%1t(nW- z#)e6rui`DHhkds0*Vq`7m78diy%EOx&LC6BfkFRf&QV}qlmRx}6L?1r@qEB#Z^muj z^+lQ%g34;;b_=-0rUP8g-ZX5(8dK`H%yk~2a=*57U_ISwny`(E41KJ#Q=?#w&j8~3 z&%`C7%bb)Z$NjGNHew#~ipI4Lj&KFnc(BRTAZ=N2RN|88ezy&Kq78GzeqZ$7h>>4l zhqM^b|D$7caR7bfan<>HUeS7BQO$Vxg#uj2Fby!Sb}D=6ooVG}d9g80er0VS2ehS) zPEM)rB1``5=Hiv$lsCxU9iIr#4`q#bc&txVYja2vG+I~ret}EMWpG}_bf2G}@fe|e z{}W#83dugF3xLH^QSp}B-8cn199F^L`Y{fE9--YVWoS zdVoOhOu2N3dM-#PIu@wY)0SXUoF&Yz7J}FT&*N5}8&Hl1SNHm&omAg6C%}phe5NH8bw0_z!iXZF3y@to*x7YLEt&ptnt65#?p8+ zM{-DxYiZrSE$BX-Xm8U8x>fVP==~A^<(HsC#sV_tAD*QZI;R9{2Fr`R0|>GmQ0|&Z z?fxuz6ig5Gy7adC!y<;^NQmc;0*_cNwcV`Gtcn!8&?&JlSPas=yMNIxzWKUwUkjmU zznj5ieGt-D>Uz?DoQMovN;qT$Dj;?|?$xOJe>sD46sn{VnXBefIm$3YdRvPS+g7@1 z{F-nODf|l|8+fTUs&%d&gm1r(@tOL(j>_E$j_0t~KvlIX6y>7H6gMM?xHR}0wpmad z6*<2{x!X*L{rN(P|KxzMr%I` zL_hS4wzI~^@$xoWjHjZG_Fdgrp73D9Vtb#&E@cGgI_lkC^o3AQToKp{)9QSQfqAk_ z1GIJ;s4Z%fQ$7HyJcky&{$y--8|@hEUr`%%tzI7>q%2a6j!qGvYVVKn{Tkz!s0aKq zaI9<5Mr62T98cUXZdu?oir+L%;aEls0Cv`EA>(?iisfG2tMqT1`v7cilM|Fbq7w2H zSgAPa`$YRz;s|AOl=jO$!n5oI4qh|`RXWY)oWuiP>FFGqVnwp0;?)`8=OWRrqXYXryELrI!2*n>s~bs*B;v0K~r2*Me|1);MV;eVmio~n!tV)?w9hK z+0*HRAK~8Sqo(1=TcdqkzJA8NX+m3XFunX8&D+&*2e=K_YSY^Y;vrO7(l9q1*pjWz zHhV|Q!r(3Dr$N4amLgUnWFkryoedP@#?5{Q`e4hmkTCnGN9Fy=8l+>7=zaq)+o<;< zsEwW1a(h9`?{(P)yB6X6WiU zMmvZoMApRpcW|Qz9C3V<@QbC@Lw>U=lZd5|_B%F}k&=;?c1B%I)n93hXDs^2huyD1Mj;KH2hfiW+5ii8#`dpYj94FF?`;o0sOp4*>s+g za=*%8(rU6dp_e8|3r4oR*Fg4YLPqu^Rnr2i22M?jz;v}qZ=FscaVh=Xe(gPrj@iTR zLn?hN>s}96*-Rje`Xznc#00Xd3L2C0#G3Q z?U3*rJA`$Aa`Pjh1dYv)mG#_PCJ5!{)7pTQZJr0G7yYPt5aSED58|MNuZh_G2}V0w z2=6@t-vQ7fUzt2YyS)X0xmp8b+~Q%%sTiD8M*4kxWAWX%#{}iKAybZY1Ap5y>v)MNU7In@F zaCdM~S;&y*A{zrS+MpLsw;6iMlO)+6GCp9XV~?331oWPj;-=GgyyWT(%+lUJ(C#*= zJX?tyy$X6t>m5fONHvY4`)c`Jfaz>)%{h2UWwq%-))F_vL%jqeKe+hiucH7!;rY+U zFcsM1tN%V`t(WyN9`pk$U$|r1r)suOI>3X0z7^>Oi4=N>aiEW&*sn}pb z;PKJ`yoL9!%*ofwg72Qq_aHwbHE61pa>v>|yzd&`z@=N3c^E(Zg^@4Qk^BnBn7I}| zsz%Pxo-t|1?DEH9t@_AbxZV57zvMI&ZGc@I+?9hkH~*d*A9O|kIRh6b(kFpb%nKEN zJG!xkgP*RFpuJ88ig2?5rEBNyXZU;)iBO`%j(f6=k9^7e)ZQeagg2d(p+_q3X|2t&CThT7xGuHv@FdfY+ML+o z2+7kut0yC;?XD^BrRtrTU$FAwdV!$$%Zh?8@Kvv01}6dH38)hf;rxBb;v4YS^gE7| zv}cmmf2*4UiVqYvfa(7gu1pT5o_j2fFdwx0A(#MJriPPk*rXhQ54r!Z zy>pFf>dNByO)iE+6EuLB6p;&8Wl+KJ5Gf)F7(_7{bdb2tnmBb}8Xu#AzS` zmZA7U$)dObm&6!hs;dE`zz9klOtmnQSQa9R;*6G-M(%7t24~Ic_xaF#%Eyy)&)NC! zz5n}n6QKwxP#^io5G^Vu3}A1&yyQ5MZ(|Ho#5jV9LiG(7vgQK>x8x(r)*pe$_g`M= z>3H4+$7b|lfX1=HSBTqRxj{`8yI;$5>p{$n&;nKQ+m=ToijdRINJ@j-D7>!uW5L5Q zcZ!-BUzaQj)ncuEL-B@y2Kn;)tj*zr1b#8^O2cgTV+bnve3Z-V6jK)08efDZ@nW~p z(mciZI41@p^OU)^RQ&NpL>rhp_)cYHNc5(YiI}&{yoeuAHnC%RWQsTR=!2t`3-Yxa zY7gJL%4H3+r9p6Ew#>d)hENteTZT7wc$3h`O=fQ0s-NeAdE=Et5?@JsLQC)0t<-qu zF6CU%jk9G3DdYGfM(UEAx6J$Yl-!@yD|*5%UuFrA9?B1H)vrUOSd_%K<;fW)ZV#D9 z4oj9vVVwv<2x>ZIyeh+O5)ne@O@)GKOf@XlJST@}d}@OgdI{*OiPnKR+Kk0MyU6A{ zIp*zpHg7pL;b!jnLJ2~ab(zuQ=T5Vyr}qzdqPi4{hBhx;%CM;$enB+W9}_mWgTrmF zn}XT*2IOmW)w81q*zFt2%A@l<(1Nd&tj&2&d9u}&v&iUq@OwQ!2cfBO(i&0S{l3ir z&ctRWnSlCSn^>HjwXTp2FKqtAZ@`yh`fzrhEBme_&mYV5Gir=o^D+TPSkV z%yZMNuuY2j_>hoW(cZ?8b_4_^tZ}YKd7`18R6)^q<4@@WF&PB`3#)Zh!3s<*T0PPn$FA1(> zFA{I4W?q4Un91?>EqSZm5sK*u8I9b+`a3?6jzRPEm5=#HW-!Z5$B~}e8fq7r6=;s( zRA$&0yg;z$(n+<2Of4_tgXMYJjQIc5r8aj4Qq<=U_d6}d?b5VIdF7=D%$N&DI4w~f z%7f1kZ1oshQYZ;N!?30mEL=g*)~`0%A;kkX86IbIl3h?;+G`>o_+~YK<*cRBMEy2- zPN(RsGdTnYEaNQU3xt>Znp@&MC9-Cw=%yFa7KSu6+a^|BB^$drSRu(zn#6CpK`p-Z zz*Y}1q@E&B$|BZ=13-h$_V+7p+KHZJwu^$ReJ(^5a_x$H3?mtwv+}T%x4zh_qi#BD zYXaM(@U1x1DDbD`f8qHFCuThS&zYiIvU4qL`sL__Vw*)SN+HuWGoUx7oK8tzYh#6p zv>FG`DcL+T*fAZ#MkZ8NXdl5s^?Nn+hfz67)`qp(gy&pkMnKoXwqyjDSGX>RAcXY- zt<%T*@05_Xu~CJ}>?4QrqkISfE+1-HN_Z?OBdP+%ES-BO-P>PftDU?IS&d#<6?faJ zeI!>3NU00#Qkb|xb$N{GPJJ~jiRVc9^U$HLkm^j9OvJR>uJnTjjw#$!#NIo(*1`8L z%KJdE4npn$CZ@nD=;FXxAL2A>uM-YBrMO%X2W4QdluA>-+U_dQ&4X zX6zyRM4+Sd4vH(TtY7Ox#ZR;XMRp7FIoNQpxO0t_5#IQO82Ej?7k~qmTF-miki@9yZrR| z^P*gl9e)8DIkr}_LeqmK_b&}WBM+P-W$qzA-p6~sNOIdlZEP1FIKk-)p}UXesGbW&zW>>CHnTd+PK9@fBLy{U1EA z0(f9`o=WhjZaY?O|8j?*yXrQo1vmtTybY!!1Y^#6U~ST2Bi!S$cmLVEf2;L zu?t+7L>y~fLY}){pafdaOTdxnHd4`|voyo(ev?;1FfcE1T})QTKwv_xOMU1)9zPLD zaz(zydI2N$^-hsz@bP?7RV=jdU?yI77d%g}-!Kx_k4-*0-m9rt-!v2J-R6@4-<5VX z#qtDxjVr=pmB$ir9|?NasUId_HS|Cb1m;HlI`>SL`EN3sd-#e=XXl#QT7fBkGG4wa zBh3fXN%r;mNuH;h?c;buQI%gEe^yKgb0Q)&&Dt{(xqiOY;{xbz&&J6=!09||MhgG- l?LPwex6S$gIt*PNHb{sz{i#(Qn}Wb6V*N(`r7%hEzX5F?Q(pi8 literal 0 HcmV?d00001 diff --git a/MCDV/radar.txt b/MCDV/radar.txt new file mode 100644 index 0000000..bc58cb9 --- /dev/null +++ b/MCDV/radar.txt @@ -0,0 +1,8 @@ +// TAVR - AUTO RADAR. v 2.0.0 +de_tavr_test +{ + "material" "overviews/de_tavr_test" + "posx" "-2304.000000" + "posy" "3584.000000" + "scale" "4.630000" +} diff --git a/MCDV/render.png b/MCDV/render.png index 3d37b5d1e8e08645a965075d3af6cc66a18b08fa..1eef385684d53c5c637c5afc503f07cee41c5765 100644 GIT binary patch literal 32269 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 LT)beQG4=d^NG7gH literal 87773 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 qRfNNJEo;ra;{P9C`;2t} diff --git a/MCDV/shaders/depth.fs b/MCDV/shaders/depth.fs index 24fc069..90890a5 100644 --- a/MCDV/shaders/depth.fs +++ b/MCDV/shaders/depth.fs @@ -11,9 +11,15 @@ in vec3 FragPos; in float Depth; in float Alpha; +// Simple remap from-to range. +float remap(float value, float low1, float high1, float low2, float high2) +{ + return low2 + (value - low1) * (high2 - low2) / (high1 - low1); +} void main() { - float height = pow((Depth - HEIGHT_MIN) / HEIGHT_MAX, 2.2); - FragColor = vec4(height, height, height, Alpha); + float height = pow(remap(FragPos.y, HEIGHT_MIN, HEIGHT_MAX, 0, 1), 2.2); + + FragColor = vec4(0, height, 1, 1.0); } \ No newline at end of file diff --git a/MCDV/unlit.vs b/MCDV/unlit.vs index 3119a41..44c9f6a 100644 --- a/MCDV/unlit.vs +++ b/MCDV/unlit.vs @@ -1,12 +1,11 @@ #version 330 core layout (location = 0) in vec3 aPos; +layout (location = 1) in vec3 aNorm; uniform mat4 model; uniform mat4 view; uniform mat4 projection; -out vec3 Normal; - void main() { gl_Position = projection * view * model * vec4(aPos, 1.0); diff --git a/MCDV/vdf.hpp b/MCDV/vdf.hpp index cf49a1a..bcbb1f7 100644 --- a/MCDV/vdf.hpp +++ b/MCDV/vdf.hpp @@ -64,13 +64,41 @@ namespace kv } if (strings.size() == 2) { - this->Values.insert({ strings[0], strings[1] }); + // Fix for multiply defined key-values (THANKS VALVE APPRECIATE THAT) + std::string keyname = strings[0]; + int i = -1; + while (this->Values.count(keyname + std::to_string(++i))); + + this->Values.insert({ i > 0 ? keyname + std::to_string(i) : keyname, strings[1] }); } prev = line; } } + void Serialize(std::ofstream& stream, int depth = 0) + { + //Build indentation levels + std::string indenta = ""; + for (int i = 0; i < depth; i++) + indenta += "\t"; + std::string indentb = indenta + "\t"; + + if (depth >= 0) + stream << indenta << this->name << std::endl << indenta << "{" << std::endl; + + //Write kvs + for (auto const& x : this->Values) + stream << indentb << "\"" << x.first << "\" \"" << x.second << "\"" << std::endl; + + //Write subdata recursively + for (int i = 0; i < this->SubBlocks.size(); i++) + this->SubBlocks[i].Serialize(stream, depth + 1); + + if (depth >= 0) + stream << indenta << "}" << std::endl; + } + //Scan for sub block with name DataBlock* GetFirstByName(std::string _name) { for (int i = 0; i < this->SubBlocks.size(); i++) { diff --git a/MCDV/vmf.hpp b/MCDV/vmf.hpp new file mode 100644 index 0000000..003accd --- /dev/null +++ b/MCDV/vmf.hpp @@ -0,0 +1,732 @@ +#pragma once +#include +#include +#include +#include +#include + +#include +#include +#include +#include + +#include "Util.h" +#include "vdf.hpp" +#include "plane.h" +#include "Mesh.hpp" +#include "convexPolytope.h" +#include "fuzzy_select.h" +#include "interpolation.h" + +#include + +#include + +namespace vmf_parse { + //Pass Vector3 + bool Vector3f(std::string str, glm::vec3* vec) + { + str = sutil::removeChar(str, '('); + str = sutil::removeChar(str, ')'); + + std::vector elems = split(str, ' '); + std::vector pelems; + + for (int i = 0; i < elems.size(); i++) { + std::string f = sutil::trim(elems[i]); + + //TODO: error check against invalid values here + float e = ::atof(f.c_str()); + pelems.push_back(e); + } + + if (pelems.size() == 3) { + *vec = glm::vec3(pelems[0], pelems[1], pelems[2]); + return true; + } + + return false; + } + + //Parse Vector 3 with square barackets. Thanks again, valve + bool Vector3fS(std::string str, glm::vec3* vec) + { + str = sutil::removeChar(str, '['); + str = sutil::removeChar(str, ']'); + + std::vector elems = split(str, ' '); + std::vector pelems; + + for (int i = 0; i < elems.size(); i++) { + std::string f = sutil::trim(elems[i]); + + //TODO: error check against invalid values here + float e = ::atof(f.c_str()); + pelems.push_back(e); + } + + if (pelems.size() == 3) { + *vec = glm::vec3(pelems[0], pelems[1], pelems[2]); + return true; + } + + return false; + } + + //Parse plane from standard 3 point notation (ax, ay, az) (bx, by, bz) ... + bool plane(std::string str, Plane* plane) + { + std::vector points = split(str, '('); + + if (points.size() != 4) { return false; } + + glm::vec3 A, B, C; + + if (!(Vector3f(points[1], &A) && Vector3f(points[2], &B) && Vector3f(points[3], &C))) { + return false; + } + + *plane = Plane(A, B, C); + + return true; + } +} + + +namespace vmf { + struct BoundingBox { + glm::vec3 NWU; + glm::vec3 SEL; + }; + + struct DispInfo { + int power; + glm::vec3 startposition; + + std::vector> normals; + std::vector> distances; + + // OpenGL generated mesh + Mesh* glMesh; + }; + + struct Side { + int ID; + std::string texture; + Plane plane; + + DispInfo* displacement = NULL; + }; + + struct Solid { + int fileorder_id; + int ID; + bool containsDisplacements = false; + std::vector faces; + glm::vec3 color; + glm::vec3 origin; + bool hidden = false; + + std::vector visgroupids; + + BoundingBox bounds; + + Mesh* mesh; + }; + + struct BuyZone { + int teamNum; + Mesh* mesh; + }; + + struct Entity { + int ID; + std::string classname; + glm::vec3 origin; + + std::map keyValues; + std::vector internal_solids; + + bool hidden = false; + }; + + class vmf { + private: + public: + kv::FileData internal; + std::vector meshes; + std::vector solids; + std::vector entities; + + std::map visgroups; + + vmf(std::string path) + { + std::ifstream ifs(path); + if (!ifs) { + std::cout << "Could not open file... " << path << std::endl; + throw std::exception("File read error"); + } + + std::string str((std::istreambuf_iterator(ifs)), std::istreambuf_iterator()); + + kv::FileData data(str); + + this->internal = data; + +#pragma region Solids + std::cout << "Processing solids\n"; + + //Process solids list + std::vector SolidList = data.headNode.GetFirstByName("world")->GetAllByName("solid"); + int total = SolidList.size(); + + for (int i = 0; i < SolidList.size(); i++){ + std::cout << "Solid " << i + 1 << "/" << total << "\r"; + + kv::DataBlock cBlock = SolidList[i]; + + Solid solid; + bool valid = true; + + std::vector Sides = cBlock.GetAllByName("side"); + for (int j = 0; j < Sides.size(); j++) + { + kv::DataBlock cSide = Sides[j]; + + Side side; + side.ID = ::atof(cSide.Values["id"].c_str()); + side.texture = cSide.Values["material"]; + + Plane plane; + if (!vmf_parse::plane(cSide.Values["plane"], &plane)) + { + valid = false; break; + } + + side.plane = plane; + + // Deal with displacement info. Oh no + +#pragma region displacements + + DispInfo* dispInfo = new DispInfo; + + kv::DataBlock* dblockInfo = cSide.GetFirstByName("dispinfo"); + + if (dblockInfo != NULL){ + solid.containsDisplacements = true; // Mark we have displacements here + + kv::DataBlock* dblockNormals = dblockInfo->GetFirstByName("normals"); + kv::DataBlock* dblockDistances = dblockInfo->GetFirstByName("distances"); + dispInfo->power = std::stoi(dblockInfo->Values["power"]); + vmf_parse::Vector3fS(dblockInfo->Values["startposition"], &dispInfo->startposition); + + int i_target = glm::pow(2, dispInfo->power) + 1; + + for (int x = 0; x < i_target; x++) { //Row + dispInfo->normals.push_back(std::vector()); //Create row container + dispInfo->distances.push_back(std::vector()); //Create distances container + + //Parse in the normals + std::vector values = split(dblockNormals->Values["row" + std::to_string(x)]); + std::vector list; + for (auto && v : values) list.push_back(::atof(v.c_str())); + + //Parse in the distances + std::vector _values = split(dblockDistances->Values["row" + std::to_string(x)]); + for (auto && v : _values) dispInfo->distances[x].push_back(std::stof(v.c_str())); + + for (int xx = 0; xx < i_target; xx++) { //Column + dispInfo->normals[x].push_back( + glm::vec3(list[xx * 3 + 0], + list[xx * 3 + 1], + list[xx * 3 + 2])); + } + } + + side.displacement = dispInfo; + } +#pragma endregion + + solid.faces.push_back(side); + } + + kv::DataBlock* editorValues = cBlock.GetFirstByName("editor"); + + //Gather up the visgroups + int viscount = -1; + while (editorValues->Values.count("visgroupid" + (++viscount > 0 ? std::to_string(viscount) : ""))) + solid.visgroupids.push_back(std::stoi(editorValues->Values["visgroupid" + (viscount > 0 ? std::to_string(viscount) : "")])); + + glm::vec3 color; + if (vmf_parse::Vector3f(editorValues->Values["color"], &color)) + solid.color = glm::vec3(color.x / 255.0f, color.y / 255.0f, color.z / 255.0f); + else + solid.color = glm::vec3(1, 0, 0); + + this->solids.push_back(solid); + } + + std::cout << "\n"; + +#pragma endregion Solids + + std::cout << "Processing entites\n"; + + //Process entities list + std::vector EntitiesList = data.headNode.GetAllByName("entity"); + for (auto && block : EntitiesList) { + + //if (block.Values["classname"] != "prop_static") continue; //Skip anything else than prop static for now + + //Check wether origin can be resolved for entity + if ((block.GetFirstByName("solid") == NULL) && (block.Values.count("origin") == 0)) { + std::cout << "Origin could not be resolved for entity with ID " << block.Values["id"]; continue; + } + + Entity ent; + ent.classname = block.Values["classname"]; + ent.ID = (int)::atof(block.Values["id"].c_str()); + ent.keyValues = block.Values; + + glm::vec3 loc = glm::vec3(); + if (block.Values.count("origin")) { //Start with hammer origin + vmf_parse::Vector3f(block.Values["origin"], &loc); + ent.origin = glm::vec3(-loc.x, loc.z, loc.y); + } + else if (block.GetFirstByName("solid") != NULL) { //Try to process it from solid + //Get all solids + std::vector _solids = block.GetAllByName("solid"); + //std::vector _solids_ent; + for (int i = 0; i < _solids.size(); i++) + { + kv::DataBlock cBlock = _solids[i]; + + Solid solid; + bool valid = true; + + std::vector Sides = cBlock.GetAllByName("side"); + for (int j = 0; j < Sides.size(); j++) + { + kv::DataBlock cSide = Sides[j]; + + Side side; + side.ID = ::atof(cSide.Values["id"].c_str()); + side.texture = cSide.Values["material"]; + + Plane plane; + if (!vmf_parse::plane(cSide.Values["plane"], &plane)) + { + valid = false; break; + } + + side.plane = plane; + + solid.faces.push_back(side); + } + + kv::DataBlock* editorValues = cBlock.GetFirstByName("editor"); + + //Gather up the visgroups + int viscount = -1; + while (editorValues->Values.count("visgroupid" + (++viscount > 0 ? std::to_string(viscount) : ""))) + solid.visgroupids.push_back(std::stoi(editorValues->Values["visgroupid" + (viscount > 0 ? std::to_string(viscount) : "")])); + + glm::vec3 color; + if (vmf_parse::Vector3f(editorValues->Values["color"], &color)) + solid.color = glm::vec3(color.x / 255.0f, color.y / 255.0f, color.z / 255.0f); + else + solid.color = glm::vec3(1, 0, 0); + + ent.internal_solids.push_back(solid); + } + + //Process convex polytopes & calculate origin + + std::vector polytopes; + + for (auto && iSolid : ent.internal_solids) { + std::vector planes; + for (auto f : iSolid.faces) planes.push_back(f.plane); + + polytopes.push_back(Polytope(planes, false)); + } + + glm::vec3 NWU = polytopes[0].NWU; + glm::vec3 SEL = polytopes[0].SEL; + + for (auto && iPoly : polytopes) { + if (iPoly.NWU.z > NWU.z) NWU.z = iPoly.NWU.z; + if (iPoly.NWU.y > NWU.y) NWU.y = iPoly.NWU.y; + if (iPoly.NWU.x > NWU.x) NWU.x = iPoly.NWU.x; + + if (iPoly.SEL.z < SEL.z) SEL.z = iPoly.SEL.z; + if (iPoly.SEL.y < SEL.y) SEL.y = iPoly.SEL.y; + if (iPoly.SEL.x < SEL.x) SEL.x = iPoly.SEL.x; + } + + ent.origin = (NWU + SEL) * 0.5f; + } + + this->entities.push_back(ent); + } + + std::cout << "Processing visgroups\n"; + + //Process Visgroups + std::vector VisList = data.headNode.GetFirstByName("visgroups")->GetAllByName("visgroup"); + for (auto v : VisList) { + this->visgroups.insert({ std::stoi(v.Values["visgroupid"]), v.Values["name"] }); + + std::cout << "Visgroup {" << std::stoi(v.Values["visgroupid"]) << "} = '" << v.Values["name"] << "'\n"; + } + } + + std::vector getSolidsInVisGroup(std::string visgroup) { + std::vector list; + for (auto && v : this->solids) { + for (auto && vid : v.visgroupids) { + if (this->visgroups[vid] == visgroup) { + list.push_back(&v); + } + } + } + + return list; + } + + std::vector getAllBrushesInVisGroup(std::string visgroup) { + std::vector list; + + // All solids + for (auto && v : this->solids) { + for (auto && vid : v.visgroupids) { + if (this->visgroups[vid] == visgroup) { + list.push_back(&v); + } + } + } + + // All entity brush solids + for (auto && e : this->entities) { + for (auto && es : e.internal_solids) { + for (auto && esvid : es.visgroupids) { + if (this->visgroups[esvid] == visgroup) { + list.push_back(&es); + } + } + } + } + + return list; + } + + std::vector getAllBrushesByClassName(std::string classname) { + std::vector list; + for (auto && ent : this->entities) { + if (ent.classname == classname) { + for (auto && s : ent.internal_solids) { + list.push_back(&s); + } + } + } + return list; + } + + void ComputeGLMeshes() { + auto start = std::chrono::high_resolution_clock::now(); + + std::cout << "Processing solid meshes... "; + for (int i = 0; i < this->solids.size(); i++) { + std::vector sidePlanes; + for (int j = 0; j < this->solids[i].faces.size(); j++) + sidePlanes.push_back(this->solids[i].faces[j].plane); + + Polytope p = Polytope(sidePlanes); + this->solids[i].mesh = p.GeneratedMesh; + this->solids[i].origin = (p.NWU + p.SEL) * 0.5f; + this->solids[i].bounds.NWU = p.NWU; + this->solids[i].bounds.SEL = p.SEL; + } + std::cout << "done\n"; + + std::cout << "Processing entity solid meshes... "; + for (auto && ent : this->entities) { + for (auto && _solid : ent.internal_solids) { + std::vector sidePlanes; + for (auto f : _solid.faces) + sidePlanes.push_back(f.plane); + + Polytope p = Polytope(sidePlanes); + _solid.mesh = p.GeneratedMesh; + _solid.origin = (p.NWU + p.SEL) * 0.5f; + _solid.bounds.NWU = p.NWU; + _solid.bounds.SEL = p.SEL; + } + } + std::cout << "done\n"; + + auto elapsed = std::chrono::high_resolution_clock::now() - start; + long long milliseconds = std::chrono::duration_cast(elapsed).count(); + + std::cout << "GL mesh computation: " << milliseconds << "ms" << std::endl; + } + + void ComputeDisplacements() { + auto start = std::chrono::high_resolution_clock::now(); + + std::cout << "Computing displacements...\n"; + + for (auto && v :this->solids) { + if (v.containsDisplacements) { + + std::vector planes; + for (auto && face : v.faces) planes.push_back(face.plane); + + Polytope polyTope = Polytope(planes, true, false); // Generate polytope so we can look at the individual ngon points + + for (auto && side :v.faces) { + if (side.displacement != NULL) { + DispInfo* info = side.displacement; + + BrushPolygon* bpoly = NULL; + + std::map normalCorrelations; + + //Sort planes by their similarity to the face's normal direction + for (auto && fuck : polyTope.ngons) + normalCorrelations.insert({ glm::distance(fuck.plane.normal, side.plane.normal), &fuck }); + + bpoly = normalCorrelations.begin()->second; + + if (bpoly->vertices.size() != 4) { + std::cout << "Displacement info matched to face with {" << bpoly->vertices.size() << "} vertices!!!\n"; continue; + } + + // Match the 'starting point' of dispinfo + std::map distancesToStart; + for (auto && point : bpoly->vertices) + distancesToStart.insert({ glm::distance(info->startposition, point), &point }); + + // The corners of the displacement + glm::vec3* SW = distancesToStart.begin()->second; + + // Find what point in the vector it was + int pos = 0; + for (auto && point : bpoly->vertices) + if (&point == SW) break; else pos++; + + // Get the rest of the points, in clockwise order (they should already be sorted by polytope generation) + glm::vec3* NW = &bpoly->vertices[(pos + 1) % 4]; + glm::vec3* NE = &bpoly->vertices[(pos + 2) % 4]; + glm::vec3* SE = &bpoly->vertices[(pos + 3) % 4]; + + int points = glm::pow(2, info->power) + 1; // calculate the point count (5, 9, 17) + + // Initialize list for floats + std::vector meshPoints; + + std::vector finalPoints; + + glm::vec3* NWU = &v.bounds.NWU; + glm::vec3* SEL = &v.bounds.SEL; + + for (int row = 0; row < points; row++) { + for (int col = 0; col < points; col++) { + //Generate original base points + + float dx = (float)col / (float)(points-1); //Time values for linear interpolation + float dy = (float)row / (float)(points-1); + + glm::vec3 LWR = lerp(*SW, *SE, dx); + glm::vec3 UPR = lerp(*NW, *NE, dx); + glm::vec3 P = lerp(LWR, UPR, dy); // Original point location + + glm::vec3 offset = info->normals[col][row] * info->distances[col][row]; // Calculate offset + P = P + offset; //Add offset to P + + finalPoints.push_back(P); + + //Recompute bounds while we are at it + NWU->x = glm::max(-P.x, NWU->x); + NWU->y = glm::max(P.z, NWU->y); + NWU->z = glm::max(P.y, NWU->z); + + SEL->x = glm::min(-P.x, SEL->x); + SEL->y = glm::min(P.z, SEL->y); + SEL->z = glm::min(P.y, SEL->z); + + continue; + + /* TESTING TRIANGLES */ + meshPoints.push_back(-P.x); + meshPoints.push_back(P.z); + meshPoints.push_back(P.y); + meshPoints.push_back(0); + meshPoints.push_back(0); + meshPoints.push_back(1); + + meshPoints.push_back(-P.x); + meshPoints.push_back(P.z); + meshPoints.push_back(P.y + 8.0f); + meshPoints.push_back(0); + meshPoints.push_back(0); + meshPoints.push_back(1); + + + meshPoints.push_back(-P.x + 8.0f); + meshPoints.push_back(P.z); + meshPoints.push_back(P.y + 8.0f); + meshPoints.push_back(0); + meshPoints.push_back(0); + meshPoints.push_back(1); + } + } + + int i_condition = 0; + for (int row = 0; row < points - 1; row++) { + for (int col = 0; col < points - 1; col++) { + + // Gather point pointers + // hehe :( + glm::vec3* SW = &finalPoints[((row + 0) * points) + (col + 0)]; + glm::vec3* SE = &finalPoints[((row + 0) * points) + (col + 1)]; + + glm::vec3* NW = &finalPoints[((row + 1) * points) + (col + 0)]; + glm::vec3* NE = &finalPoints[((row + 1) * points) + (col + 1)]; + + if (i_condition++ % 2 == 0) {//Condition 0 + meshPoints.push_back(-SW->x); + meshPoints.push_back(SW->z); + meshPoints.push_back(SW->y); + meshPoints.push_back(0); + meshPoints.push_back(0); + meshPoints.push_back(1); + meshPoints.push_back(-NW->x); + meshPoints.push_back(NW->z); + meshPoints.push_back(NW->y); + meshPoints.push_back(0); + meshPoints.push_back(0); + meshPoints.push_back(1); + meshPoints.push_back(-NE->x); + meshPoints.push_back(NE->z); + meshPoints.push_back(NE->y); + meshPoints.push_back(0); + meshPoints.push_back(0); + meshPoints.push_back(1); + + meshPoints.push_back(-SW->x); + meshPoints.push_back(SW->z); + meshPoints.push_back(SW->y); + meshPoints.push_back(0); + meshPoints.push_back(0); + meshPoints.push_back(1); + meshPoints.push_back(-NE->x); + meshPoints.push_back(NE->z); + meshPoints.push_back(NE->y); + meshPoints.push_back(0); + meshPoints.push_back(0); + meshPoints.push_back(1); + meshPoints.push_back(-SE->x); + meshPoints.push_back(SE->z); + meshPoints.push_back(SE->y); + meshPoints.push_back(0); + meshPoints.push_back(0); + meshPoints.push_back(1); + } + else { //Condition 1 + meshPoints.push_back(-SW->x); + meshPoints.push_back(SW->z); + meshPoints.push_back(SW->y); + meshPoints.push_back(0); + meshPoints.push_back(0); + meshPoints.push_back(1); + meshPoints.push_back(-NW->x); + meshPoints.push_back(NW->z); + meshPoints.push_back(NW->y); + meshPoints.push_back(0); + meshPoints.push_back(0); + meshPoints.push_back(1); + meshPoints.push_back(-SE->x); + meshPoints.push_back(SE->z); + meshPoints.push_back(SE->y); + meshPoints.push_back(0); + meshPoints.push_back(0); + meshPoints.push_back(1); + + meshPoints.push_back(-NW->x); + meshPoints.push_back(NW->z); + meshPoints.push_back(NW->y); + meshPoints.push_back(0); + meshPoints.push_back(0); + meshPoints.push_back(1); + meshPoints.push_back(-NE->x); + meshPoints.push_back(NE->z); + meshPoints.push_back(NE->y); + meshPoints.push_back(0); + meshPoints.push_back(0); + meshPoints.push_back(1); + meshPoints.push_back(-SE->x); + meshPoints.push_back(SE->z); + meshPoints.push_back(SE->y); + meshPoints.push_back(0); + meshPoints.push_back(0); + meshPoints.push_back(1); + } + } + i_condition++; + } + + Mesh* _glMesh = new Mesh(meshPoints); + info->glMesh = _glMesh; + } + } + } + } + + auto elapsed = std::chrono::high_resolution_clock::now() - start; + long long milliseconds = std::chrono::duration_cast(elapsed).count(); + + std::cout << "Displacement computation: " << milliseconds << "ms" << std::endl; + } + + void clean() { + for (int i = 0; i < this->solids.size(); i++) { + delete this->solids[i].mesh; + this->solids[i].mesh = NULL; + } + + for (auto i : this->entities) { + for (auto m : i.internal_solids) { + delete m.mesh; + m.mesh = NULL; + } + } + } + + ~vmf() { + + } + }; + + BoundingBox getSolidListBounds(std::vector list) { + if (list.size() <= 0) return BoundingBox(); + + BoundingBox bounds; + bounds.NWU = list[0]->bounds.NWU; + bounds.SEL = list[0]->bounds.SEL; + + for (auto && iSolid : list) { + if (iSolid->bounds.NWU.z > bounds.NWU.z) bounds.NWU.z = iSolid->bounds.NWU.z; + if (iSolid->bounds.NWU.y > bounds.NWU.y) bounds.NWU.y = iSolid->bounds.NWU.y; + if (iSolid->bounds.NWU.x > bounds.NWU.x) bounds.NWU.x = iSolid->bounds.NWU.x; + + if (iSolid->bounds.SEL.z < bounds.SEL.z) bounds.SEL.z = iSolid->bounds.SEL.z; + if (iSolid->bounds.SEL.y < bounds.SEL.y) bounds.SEL.y = iSolid->bounds.SEL.y; + if (iSolid->bounds.SEL.x < bounds.SEL.x) bounds.SEL.x = iSolid->bounds.SEL.x; + } + + return bounds; + } +} \ No newline at end of file -- 2.25.1